Overrides the default Spree checkout process and uses offsite payment processing via PayPal's Website Payment Standard (WPS).
You'll want to test this using a paypal sandbox account first. Once you have a business account, you'll want to turn on Instant Payment Notification (IPN). This is how your application will be notified when a transaction is complete. Certain transactions aren't completed immediately. Because of this we use IPN for your application to get notified when the transaction is complete. IPN means that our application gets an incoming request from Paypal when the transaction goes through.
IMPORTANT
Older versions of this extension mentioned configuring your notify url in the PP profile. This no longer seems to be necessary, and in fact, if you have previously configured your URL as one that ends in notify
then you are using an outdated return URL. Just clear it out. The notify URL is now being posted with the checkout form and should be sufficient.
Regarding Taxes and shipping, we assumed you'd want to use Paypal's system for this, which can also be configured through the "profile" page. Taxes have been tested (sales tax), but not shipping, so you may want to give that a test run on the sandbox.
You may want to implement your own custom logic by adding state_machine
hooks. Just add these hooks in your site extension (don't change the pp_website_standard
extension.) Here's an example of how to add the hooks to your site extension.
# Setting hooks for pp_payment_standard extension fsm = Order.state_machines['state'] fsm.after_transition :to => 'paid', :do => :after_payment fsm.after_transition :to => 'payment_pending', :do => :after_pending fsm.after_transition :to => 'payment_failure', :do => :after_failure Order.class_eval do def after_payment # email user and tell them we received their payment OrderNotifier.deliver_payment(self) end def after_pending OrderNotifier.deliver_pending(self) end def after_failure OrderNotifier.deliver_failure(self) end end Admin::OrdersController.class_eval do def setpaid @order = Order.find_by_number(params[:id]) @order.update_attribute("state", "paid") OrderNotifier.deliver_payment(@order) flash[:notice] = 'Order Paid, sent email notification to user' redirect_to :back end
Be sure to configure the following configuration parameters.
Example
Spree::Paypal::Config[:account] = "[email protected]" Spree::Paypal::Config[:ipn_notify_host] = "http://123.456.78:3000" Spree::Paypal::Config[:success_url] = "http://localhost:3000/checkout/success"
Or even better, you can configure these in a migration for your site extension.
class AddPaypalStandardConfigurations < ActiveRecord::Migration def self.up Spree::Paypal::Config.set(:account => "[email protected]") Spree::Paypal::Config.set(:ipn_notify_host => "http://123.456.78:3000") Spree::Paypal::Config.set(:success_url => "http://localhost:3000/checkout/success") end def self.down end end
script/extension install git://github.com/Gregg/spree-pp-website-standard.git
Real world testing indicates that IPN can be very slow. If you are wanting to test the IPN piece Paypal now has an IPN tool on their developer site. Just use the correct URL from the hidden field on your Spree checkout screen. In the IPN tool, change the transaction type to cart checkout
and change the mc_gross
variable to match your order total.
- TODO: Taxes
- TODO: Shipping
- TODO: Refunds