From c436fce774573d090ab77617dbf55b25b2da4ea2 Mon Sep 17 00:00:00 2001 From: jessib Date: Thu, 28 Mar 2013 11:49:32 -0700 Subject: Some refactoring --- billing/app/controllers/payments_controller.rb | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'billing/app/controllers/payments_controller.rb') 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 -- cgit v1.2.3