blob: bd01fea17fd3508c416206fde9fc416187bea49e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
class PaymentsController < ApplicationController
def new
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", :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", :options => {:submit_for_settlement => true } })
end
end
def confirm
@result = Braintree::TransparentRedirect.confirm(request.query_string)
if @result.success?
render :action => "confirm"
else
render :action => "new"
end
end
end
|