SlideShare a Scribd company logo
1 of 25
Download to read offline
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Interchange 6 - Open Source Shop Machine
Stefan Hornburg (Racke)
racke@linuxia.de
16. Deutscher Perl-Workshop, Hannover, 28. März 2013
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Shopsoftware
Magento
Shopware
Oxid
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
PHP Cauldron
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Standard Stack
DBIx::Class
Moo
Dancer
Template::Flute
Solr
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Custom Stack
DBIx::Class
Moo
Dancer Web::Simple
Template::Flute Template Toolkit
Solr Elastic Search
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Status Quo
Interchange6::Schema (Businesslogik)
Dancer::Plugin::Interchange6
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Interchange6::Schema
Produkte, Attribute, Preise, Bestand
Benutzer, Adressen
Warenkorb, Sitzungen
Bestellungen, Zahlungen
Steuern, Versand (in Arbeit)
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Payment Module
Ablauf
Payment Module
Business::OnlinePayment
unterstützt viele Anbieter
nicht sehr modern
3D secure, Redirect
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Payment Module
Ablauf
Alternativen
AnyMerchant
https://metacpan.org/pod/AnyMerchant
keine Entwicklung
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Payment Module
Ablauf
Payment Module
Business::OnlinePayment::IPayment (1&1)
Silent CGI
Business::OnlinePayment::FirstData
Connect (in Arbeit)
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Payment Module
Ablauf
PaymentOrder erzeugen
$payment_order = $schema−>r e s u l t s e t ( ’ PaymentOrder ’ )
−>create (%payment_data ) ;
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Payment Module
Ablauf
Zahlung erfolgreich
Status und Transaktionscode aktualisieren
$payment_order−>update ( {
status => ’ success ’ ,
auth_code => $bop_object−>authorization ,
} ) ;
Bestellung abschließen
Email(s) versenden
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Payment Module
Ablauf
Zahlung fehlgeschlagen
Status aktualisieren
$payment_order−>update ( {
status => ’ f a i l u r e ’ ,
} ) ;
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Dancer::Plugin::Interchange6
Keywords
Routes
Configuration
Hooks
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Keywords
shop_schema
shop_product, shop_address, ...
$product = shop_product(’F0001’);
shop_cart
shop_charge
shop_setup_routes
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Routes
Produkt
Navigation
Warenkorb
Checkout
Konto
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Produkt
Produkt “Dancer und DBIx::Class”
sku 978-0815-0815
uri Dancer-DBIx-Class
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Navigation
Kategorien
http://www.cart.pm/Programming/Perl/Dancer
Produktfilter
http://www.cart.pm/Programming/Perl/Dancer/
Author/racke/Sort/price
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Fallback Routes
any qr { . ∗ } => sub {
# check f o r matching product
. . .
# check f o r matching navigation
. . .
# display not_found page
status ’ not_found ’ ;
forward 404;
} ;
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Routes Configuration
Interchange6 : : Routes :
cart :
template : checkout−g i f t i n f o
u r i : warenkorb
navigation :
template : l i s t i n g
records : 20
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Keywords
Routes
Configuration
Hooks
Hooks
hook ’ before_navigation_display ’ => sub {
my $nav_tokens = shift ;
# load l i s t of brands
my $brands = shop_navigation−>search (
{ type => ’ manufacturer ’ ,
active => 1 } ) ;
$nav_tokens−>{brands } = [ $brands−>a l l ] ;
} ;
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Demo Shop
Wireframes https://github.com/interchange/
Interchange6-Demo-Shop
HTML (in Arbeit)
Flowers hacking shop
https://github.com/interchange/Flowers
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Administration
ERP
API
OpenERP
Magento kompatibel
TableEditor
https://github.com/interchange/TableEditor
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Mitarbeit
kleines Entwicklerteam
Github
IRC
#interchange freenode
#dancer
racke Interchange 6 - Open Source Shop Machine
Übersicht
Interchange6 Stack
Status Quo
DBIx::Class
Payment
Dancer Plugin
Demo && Administration
Infos
Slides: http://www.linuxia.de/talks/pws2014/
interchange6-de-beamer.pdf
racke Interchange 6 - Open Source Shop Machine

More Related Content

Viewers also liked (6)

WebAPI::DBIC - Automated RESTful API's
WebAPI::DBIC - Automated RESTful API'sWebAPI::DBIC - Automated RESTful API's
WebAPI::DBIC - Automated RESTful API's
 
Introduction to DBIx::Class
Introduction to DBIx::ClassIntroduction to DBIx::Class
Introduction to DBIx::Class
 
Database Programming with Perl and DBIx::Class
Database Programming with Perl and DBIx::ClassDatabase Programming with Perl and DBIx::Class
Database Programming with Perl and DBIx::Class
 
Dancer und DBIx::Class
Dancer und DBIx::ClassDancer und DBIx::Class
Dancer und DBIx::Class
 
Perl Tools for Productivity
Perl Tools for ProductivityPerl Tools for Productivity
Perl Tools for Productivity
 
DBIx::Class walkthrough @ bangalore pm
DBIx::Class walkthrough @ bangalore pmDBIx::Class walkthrough @ bangalore pm
DBIx::Class walkthrough @ bangalore pm
 

Similar to Interchange 6 - Open Source Shop Machine

RichFaces: rich:* component library
RichFaces: rich:* component libraryRichFaces: rich:* component library
RichFaces: rich:* component library
Max Katz
 
Ruby on Rails For Java Programmers
Ruby on Rails For Java ProgrammersRuby on Rails For Java Programmers
Ruby on Rails For Java Programmers
elliando dias
 
Developing web applications
Developing web applicationsDeveloping web applications
Developing web applications
salissal
 
Apex behind the scenes
Apex behind the scenesApex behind the scenes
Apex behind the scenes
Enkitec
 

Similar to Interchange 6 - Open Source Shop Machine (20)

Developing eCommerce Apps with the Shopify API
Developing eCommerce Apps with the Shopify APIDeveloping eCommerce Apps with the Shopify API
Developing eCommerce Apps with the Shopify API
 
Laravel tips-2019-04
Laravel tips-2019-04Laravel tips-2019-04
Laravel tips-2019-04
 
Rails MVC by Sergiy Koshovyi
Rails MVC by Sergiy KoshovyiRails MVC by Sergiy Koshovyi
Rails MVC by Sergiy Koshovyi
 
Razorpay payment gateway integration in laravel and vue js 2
Razorpay payment gateway integration in laravel and vue js 2Razorpay payment gateway integration in laravel and vue js 2
Razorpay payment gateway integration in laravel and vue js 2
 
Staying railsy - while scaling complexity or Ruby on Rails in Enterprise Soft...
Staying railsy - while scaling complexity or Ruby on Rails in Enterprise Soft...Staying railsy - while scaling complexity or Ruby on Rails in Enterprise Soft...
Staying railsy - while scaling complexity or Ruby on Rails in Enterprise Soft...
 
Apostrophe (improved Paris edition)
Apostrophe (improved Paris edition)Apostrophe (improved Paris edition)
Apostrophe (improved Paris edition)
 
How to switch stack without downtime
How to switch stack without downtimeHow to switch stack without downtime
How to switch stack without downtime
 
Rails 6 frontend frameworks
Rails 6 frontend frameworksRails 6 frontend frameworks
Rails 6 frontend frameworks
 
Sibelius Seraphini - Relay Modern
Sibelius Seraphini - Relay ModernSibelius Seraphini - Relay Modern
Sibelius Seraphini - Relay Modern
 
Portfolio
PortfolioPortfolio
Portfolio
 
10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales
 
RESTful API 제대로 만들기
RESTful API 제대로 만들기RESTful API 제대로 만들기
RESTful API 제대로 만들기
 
RichFaces: rich:* component library
RichFaces: rich:* component libraryRichFaces: rich:* component library
RichFaces: rich:* component library
 
Payments On Rails
Payments On RailsPayments On Rails
Payments On Rails
 
Ruby on Rails For Java Programmers
Ruby on Rails For Java ProgrammersRuby on Rails For Java Programmers
Ruby on Rails For Java Programmers
 
Best Laravel Eloquent Tips and Tricks
Best Laravel Eloquent Tips and TricksBest Laravel Eloquent Tips and Tricks
Best Laravel Eloquent Tips and Tricks
 
Developing web applications
Developing web applicationsDeveloping web applications
Developing web applications
 
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Laravel development (Laravel History, Environment Setup & Laravel Installatio...Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
 
Apex behind the scenes
Apex behind the scenesApex behind the scenes
Apex behind the scenes
 
Salesforce and sap integration
Salesforce and sap integrationSalesforce and sap integration
Salesforce and sap integration
 

Recently uploaded

Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 

Recently uploaded (20)

WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 

Interchange 6 - Open Source Shop Machine