Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Catalyst: Users

Catalyst & E-Commerce

 

 

Catalyst users RSS feed   Index | Next | Previous | View Threaded


pavel at yepcorp

Nov 10, 2009, 2:11 PM

Post #1 of 5 (1152 views)
Permalink
Catalyst & E-Commerce

Hello,

After looking around I've found Handel and built on top of it Mango.
Is there any other e-commerce modules/solutions/etc based on Catalyst?
Who uses Mango&Handel in their own project - can comment anything?
Both projects seems to be non actively developed. Is it means dead-end
or perfect solution? =) Well, anything on e-commerce and catalyst is
very appreciated!


Regards,
Pavel

_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/


proudd at gmail

Nov 16, 2009, 11:09 PM

Post #2 of 5 (1019 views)
Permalink
Re: Catalyst & E-Commerce [In reply to]

I asked this exact same question a couple of weeks ago:
http://www.mail-archive.com/catalyst [at] lists/msg08108.html. I am
still hoping to glean some wisdom from more seasoned catalyst users on this
list! It would be wonderful to get some ideas/guidance on
e-commerce+catalyst.

On Tue, Nov 10, 2009 at 5:11 PM, Pavel O. Korovkin <pavel [at] yepcorp>wrote:

> Hello,
>
> After looking around I've found Handel and built on top of it Mango.
> Is there any other e-commerce modules/solutions/etc based on Catalyst?
> Who uses Mango&Handel in their own project - can comment anything?
> Both projects seems to be non actively developed. Is it means dead-end
> or perfect solution? =) Well, anything on e-commerce and catalyst is
> very appreciated!
>
>
> Regards,
> Pavel
>
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive:
> http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/
>


jshirley at gmail

Nov 17, 2009, 7:03 AM

Post #3 of 5 (991 views)
Permalink
Re: Catalyst & E-Commerce [In reply to]

On Mon, Nov 16, 2009 at 11:09 PM, proudd [at] gmail <proudd [at] gmail> wrote:

> I asked this exact same question a couple of weeks ago:
> http://www.mail-archive.com/catalyst [at] lists/msg08108.html. I am
> still hoping to glean some wisdom from more seasoned catalyst users on this
> list! It would be wonderful to get some ideas/guidance on
> e-commerce+catalyst.
>
>
> On Tue, Nov 10, 2009 at 5:11 PM, Pavel O. Korovkin <pavel [at] yepcorp>wrote:
>
>> Hello,
>>
>> After looking around I've found Handel and built on top of it Mango.
>> Is there any other e-commerce modules/solutions/etc based on Catalyst?
>> Who uses Mango&Handel in their own project - can comment anything?
>> Both projects seems to be non actively developed. Is it means dead-end
>> or perfect solution? =) Well, anything on e-commerce and catalyst is
>> very appreciated!
>>
>>
>> Regards,
>> Pavel
>>
>>
I've never used Handel, or really looked into it (nor Mango). I can tell
you that most people will just roll their own ecommerce implementation, and
there are plenty of CPAN modules to make it very easy to do so.

I think the general philosophy here, or at least one that I hold, is that it
is just as easy to build your own ecommerce site with the available tools
than it would be to customize a framework-based system. If you don't need
customization there are also plenty of tools out there to build up a
store-front.

If you do opt to go the DIY route, here are some tips for building it:
* Use Catalyst::Action::REST for CRUD, simplifying your code by delegating
to _POST actions
* DBIx::Class for the ORM
* DBIx::Class::EncodedColumn for encrypting your credit card fields

Myself and gphat are working on Business::Payment, a Moose-y role based
implementation for processing credit cards. I've written an Authorize.NET
handler that works quite well. You can snag this from github at:

http://github.com/gphat/Business-Payment/
http://github.com/jshirley/Business-Payment-AuthorizeNet

-J


devel at helektra

Nov 18, 2009, 12:55 AM

Post #4 of 5 (977 views)
Permalink
Re: Catalyst & E-Commerce [In reply to]

Hi,

just have a look at Interchange (http://www.icdevgroup.org/i/dev).
I worked for some projects with this fantastic program and it has a very helpfull
community - well its perl ;).
Maybe it would be possible for some perl gurus to link these projects together?

A marriage between Interchange and Catalyst would be very helpfull for perl !

Regards

Götz





Am 17.11.2009 um 16:03 schrieb J. Shirley:

> On Mon, Nov 16, 2009 at 11:09 PM, proudd [at] gmail <proudd [at] gmail> wrote:
> I asked this exact same question a couple of weeks ago: http://www.mail-archive.com/catalyst [at] lists/msg08108.html. I am still hoping to glean some wisdom from more seasoned catalyst users on this list! It would be wonderful to get some ideas/guidance on e-commerce+catalyst.
>
>
> On Tue, Nov 10, 2009 at 5:11 PM, Pavel O. Korovkin <pavel [at] yepcorp> wrote:
> Hello,
>
> After looking around I've found Handel and built on top of it Mango.
> Is there any other e-commerce modules/solutions/etc based on Catalyst?
> Who uses Mango&Handel in their own project - can comment anything?
> Both projects seems to be non actively developed. Is it means dead-end
> or perfect solution? =) Well, anything on e-commerce and catalyst is
> very appreciated!
>
>
> Regards,
> Pavel
>
>
> I've never used Handel, or really looked into it (nor Mango). I can tell you that most people will just roll their own ecommerce implementation, and there are plenty of CPAN modules to make it very easy to do so.
>
> I think the general philosophy here, or at least one that I hold, is that it is just as easy to build your own ecommerce site with the available tools than it would be to customize a framework-based system. If you don't need customization there are also plenty of tools out there to build up a store-front.
>
> If you do opt to go the DIY route, here are some tips for building it:
> * Use Catalyst::Action::REST for CRUD, simplifying your code by delegating to _POST actions
> * DBIx::Class for the ORM
> * DBIx::Class::EncodedColumn for encrypting your credit card fields
>
> Myself and gphat are working on Business::Payment, a Moose-y role based implementation for processing credit cards. I've written an Authorize.NET handler that works quite well. You can snag this from github at:
>
> http://github.com/gphat/Business-Payment/
> http://github.com/jshirley/Business-Payment-AuthorizeNet
>
> -J
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/


bobtfish at bobtfish

Nov 18, 2009, 5:22 AM

Post #5 of 5 (980 views)
Permalink
Re: Catalyst & E-Commerce [In reply to]

goetz wrote:
> A marriage between Interchange and Catalyst would be very helpfull for
> perl !

Well volunteered.

Cheers
t0m

_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/

Catalyst users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.