diff options
author | jessib <jessib@leap.se> | 2013-03-28 11:49:32 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:12 +0200 |
commit | c436fce774573d090ab77617dbf55b25b2da4ea2 (patch) | |
tree | 81a46daf9ffdf6c86d14d716f9f1c7cc98a52396 /billing/app/controllers/payments_controller.rb | |
parent | 95ec46beac867e1b7df17ba8a72367bbe0b140a9 (diff) |
Some refactoring
Diffstat (limited to 'billing/app/controllers/payments_controller.rb')
-rw-r--r-- | billing/app/controllers/payments_controller.rb | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/billing/app/controllers/payments_controller.rb b/billing/app/controllers/payments_controller.rb index bd01fea..965e417 100644 --- a/billing/app/controllers/payments_controller.rb +++ b/billing/app/controllers/payments_controller.rb @@ -4,15 +4,13 @@ class PaymentsController < ApplicationController if @customer = Customer.find_by_user_id(current_user.id) @braintree_data = Braintree::Customer.find(@customer.braintree_customer_id) @default_cc = @braintree_data.credit_cards.find { |cc| cc.default? } - @tr_data = Braintree::TransparentRedirect.transaction_data(:redirect_url => confirm_payment_url, - :transaction => {:type => "sale", :customer_id => @customer.braintree_customer_id, :options => {:submit_for_settlement => true } }) + @tr_data = transparent_redirect(@customer.braintree_customer_id) else redirect_to new_customer_path end else # anonymous payment not attributed to any user (ie, donation) - @tr_data = Braintree::TransparentRedirect.transaction_data(:redirect_url => confirm_payment_url, - :transaction => {:type => "sale", :options => {:submit_for_settlement => true } }) + @tr_data = transparent_redirect end end @@ -26,4 +24,13 @@ class PaymentsController < ApplicationController end end + protected + + def transparent_redirect(braintree_customer_id = nil) + Braintree::TransparentRedirect.transaction_data(:redirect_url => confirm_payment_url, + :transaction => {:type => "sale", :customer_id => braintree_customer_id, :options => {:submit_for_settlement => true } }) + + end + + end |