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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
class SubscriptionsController < BillingBaseController
before_filter :require_login
before_filter :confirm_cancel_subscription, :only => [:destroy]
def index
@subscriptions = Braintree::Plan.all
end
def show
@subscriptions = Braintree::Plan.all
@subscriptions = Braintree::Plan.all.find params[:subscription_id]
end
def search
@subscription = Braintree::Subscription.search params[:status]
end
def new
if current_user.braintree_customer_id
@client_token = Braintree::ClientToken.generate(customer_id: current_user.braintree_customer_id)
else
@client_token = Braintree::ClientToken.generate
end
@subscriptions = Braintree::Plan.all
end
def create
@result = Braintree::Subscription.create(
payment_method_token: braintree_customer.payment_methods.first.token,
plan_id: params[:plan_id],
)
if @result.success?
flash[:success] = "Congratulations! Your transaction has been successfully!"
else
flash[:error] = "Something went wrong while processing your donation. Please try again!"
end
redirect_to action: :new, locale: params[:locale]
end
def braintree_customer
if current_user.braintree_customer_id
Braintree::Customer.find current_user.braintree_customer_id
else
customer = Braintree::Customer.create(payment_method_nonce: params[:payment_method_nonce]).customer
current_user.update_attributes braintree_customer_id: customer.id
customer
end
end
def confirm
@result = Braintree::Subscription.sale(
payment_method_token: params[:payment_method_nonce],
plan_id: params[:plan_id],
)
end
def _confirm
make_subscription
if @result.success?
flash[:success] = "Congratulations! Your transaction has been successfully!"
else
flash[:error] = "Something went wrong while processing your donation. Please try again!"
end
redirect_to action: :new, locale: params[:locale]
end
private
def make_subscription
unless current_user.has_payment_info?
subs_with_user_info
else
subs_without_user_info
end
end
def subs_with_user_info
# don't show link to subscribe if they are already subscribed?
@result = Braintree::Subscription.sale(
payment_method_token: params[:payment_method_nonce],
plans_id: Braintree::Plan.all,
customer: {
first_name: params[:first_name],
last_name: params[:last_name],
company: params[:company],
email: current_user.email,
phone: params[:phone]
},
options: {
store_in_vault: true
})
current_user.update_attributes(braintree_customer_id: @result.transaction.customer_details.id) if @result.success?
end
def subs_without_user_info
@result = Braintree::Subscription.sale(
payment_method_token: params[:payment_method_nonce],
plans_id: Braintree::Plan.all
)
end
def destroy
@subscriptions = Braintree::Subscription.cancel params[:id]
end
end
|