Namespace PaypalExpressCallbacksController inside Spree

This commit is contained in:
Ryan Bigg 2011-12-17 10:35:56 +11:00
parent 5ff0bbe4e0
commit 062297a446
2 changed files with 44 additions and 42 deletions

View File

@ -1,42 +0,0 @@
class PaypalExpressCallbacksController < Spree::BaseController
include ActiveMerchant::Billing::Integrations
skip_before_filter :verify_authenticity_token
ssl_required
def notify
retrieve_details #need to retreive details first to ensure ActiveMerchant gets configured correctly.
@notification = Paypal::Notification.new(request.raw_post)
# we only care about eChecks (for now?)
if @notification.params["payment_type"] == "echeck" && @notification.acknowledge && @payment && @order.total >= @payment.amount
@payment.started_processing!
@payment.log_entries.create(:details => @notification.to_yaml)
case @notification.params["payment_status"]
when "Denied"
@payment.fail!
when "Completed"
@payment.complete!
end
end
render :nothing => true
end
private
def retrieve_details
@order = Spree::Order.find_by_number(params["invoice"])
if @order
@payment = @order.payments.where(:state => "pending", :source_type => "PaypalAccount").try(:first)
@payment.try(:payment_method).try(:provider) #configures ActiveMerchant
end
end
end

View File

@ -0,0 +1,44 @@
module Spree
class PaypalExpressCallbacksController < Spree::BaseController
include ActiveMerchant::Billing::Integrations
skip_before_filter :verify_authenticity_token
ssl_required
def notify
retrieve_details #need to retreive details first to ensure ActiveMerchant gets configured correctly.
@notification = Paypal::Notification.new(request.raw_post)
# we only care about eChecks (for now?)
if @notification.params["payment_type"] == "echeck" && @notification.acknowledge && @payment && @order.total >= @payment.amount
@payment.started_processing!
@payment.log_entries.create(:details => @notification.to_yaml)
case @notification.params["payment_status"]
when "Denied"
@payment.fail!
when "Completed"
@payment.complete!
end
end
render :nothing => true
end
private
def retrieve_details
@order = Spree::Order.find_by_number(params["invoice"])
if @order
@payment = @order.payments.where(:state => "pending", :source_type => "PaypalAccount").try(:first)
@payment.try(:payment_method).try(:provider) #configures ActiveMerchant
end
end
end
end