I am working on my own shopping cart to learn Ruby (continuation of a rails book) and I am working on the checkout.
Validating a customer order is way more complicate that it seems.
Constraints are :
- Preventing user to checkout if no stock is available
- Removing items from stock when the customer start payment with third party (paypal) to prevent two customers being billed at the same time for the last article.
- Keeping track of a customer aborting payment on credit card number page (still paypal) by closing his browser.
I have not been able to meet those criteria without having an exterior batch process scanning for "lost in paypal customers". However i downloaded a few online cart (oscommerce, zen shoip and open cart) and none of them seems to need at install to configure a process handling the "lost customers"
How do they handle this particular use case? Where can i find infos about there transaction algorithms ? Is there any books or doc about general theory behind online cart (and i mean a complete one, with stock)?
