blob: 7c2b2d39707a728588cff5f9ca7f6591b33b56a8 (
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
30
31
32
33
34
35
36
37
38
|
class PaymentsController < BillingBaseController
before_filter :require_login, :only => [:index]
def new
@client_token = Braintree::ClientToken.generate
end
def confirm
@result = Braintree::Transaction.sale(
amount: params[:amount],
payment_method_nonce: params[:payment_method_nonce],
)
if @result.success? == true
redirect_to action: :new, notice: "Congraulations! Your transaction has been successfully!"
else
flash[:alert] = "Something went wrong while processing your donation. Please try again!"
redirect_to action: :new
end
end
def index
access_denied unless admin? or (@user == current_user)
customer = Customer.find_by_user_id(@user.id)
braintree_data = Braintree::Customer.find(customer.braintree_customer_id)
# these will be ordered by created_at descending, per http://stackoverflow.com/questions/16425475/
@transactions = braintree_data.transactions
end
protected
def fetch_transparent_redirect
@tr_data = Braintree::TransparentRedirect.transaction_data redirect_url: confirm_payment_url,
transaction: { type: "sale", options: {submit_for_settlement: true } }
end
end
|