summaryrefslogtreecommitdiff
path: root/billing/app/controllers/payments_controller.rb
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-03-21 13:51:58 -0700
committerAzul <azul@leap.se>2013-07-17 10:46:26 +0200
commit04288c2a2179d7aa71a2fa21267e6f02fb0400e2 (patch)
treecf760c8a4ee578071ee24f613d07f62ef28b55fa /billing/app/controllers/payments_controller.rb
parenta1837914b8f989e2c45fb7b78fc648f0d3f957d6 (diff)
Unauthenticated users can make single payments (like donations), but payments from authenticated users will be as a Braintree Customer stored in the braintree vault.
Diffstat (limited to 'billing/app/controllers/payments_controller.rb')
-rw-r--r--billing/app/controllers/payments_controller.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/billing/app/controllers/payments_controller.rb b/billing/app/controllers/payments_controller.rb
index 2a76bb1..79a6433 100644
--- a/billing/app/controllers/payments_controller.rb
+++ b/billing/app/controllers/payments_controller.rb
@@ -1,6 +1,21 @@
class PaymentsController < ApplicationController
def new
@amount = calculate_amount
+ if current_user
+ 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", :amount => @amount, :customer_id => @customer.braintree_customer_id, :options => {:submit_for_settlement => true } })
+ 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", :amount => @amount, :options => {:submit_for_settlement => true } })
+ end
+
end
def confirm