forked from stripe-ruby-mock/stripe-ruby-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscriptions.rb
236 lines (176 loc) · 8.79 KB
/
subscriptions.rb
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
module StripeMock
module RequestHandlers
module Subscriptions
def Subscriptions.included(klass)
klass.add_handler 'get /v1/subscriptions', :retrieve_subscriptions
klass.add_handler 'post /v1/subscriptions', :create_subscription
klass.add_handler 'get /v1/subscriptions/(.*)', :retrieve_subscription
klass.add_handler 'post /v1/subscriptions/(.*)', :update_subscription
klass.add_handler 'delete /v1/subscriptions/(.*)', :cancel_subscription
klass.add_handler 'post /v1/customers/(.*)/subscription(?:s)?', :create_customer_subscription
klass.add_handler 'get /v1/customers/(.*)/subscription(?:s)?/(.*)', :retrieve_customer_subscription
klass.add_handler 'get /v1/customers/(.*)/subscription(?:s)?', :retrieve_customer_subscriptions
klass.add_handler 'post /v1/customers/(.*)subscription(?:s)?/(.*)', :update_subscription
klass.add_handler 'delete /v1/customers/(.*)/subscription(?:s)?/(.*)', :cancel_subscription
end
def retrieve_customer_subscription(route, method_url, params, headers)
route =~ method_url
customer = assert_existence :customer, $1, customers[$1]
subscription = get_customer_subscription(customer, $2)
assert_existence :subscription, $2, subscription
end
def retrieve_customer_subscriptions(route, method_url, params, headers)
route =~ method_url
customer = assert_existence :customer, $1, customers[$1]
customer[:subscriptions]
end
def create_customer_subscription(route, method_url, params, headers)
route =~ method_url
plan_id = params[:plan].to_s
plan = assert_existence :plan, plan_id, plans[plan_id]
customer = assert_existence :customer, $1, customers[$1]
if params[:source]
new_card = get_card_by_token(params.delete(:source))
add_card_to_object(:customer, new_card, customer)
customer[:default_source] = new_card[:id]
end
subscription = Data.mock_subscription({ id: (params[:id] || new_id('su')) })
subscription.merge!(custom_subscription_params(plan, customer, params))
# Ensure customer has card to charge if plan has no trial and is not free
verify_card_present(customer, plan, subscription, params)
if params[:coupon]
coupon_id = params[:coupon]
# assert_existence returns 404 error code but Stripe returns 400
# coupon = assert_existence :coupon, coupon_id, coupons[coupon_id]
coupon = coupons[coupon_id]
if coupon
subscription[:discount] = Stripe::Util.convert_to_stripe_object({ coupon: coupon }, {})
else
raise Stripe::InvalidRequestError.new("No such coupon: #{coupon_id}", 'coupon', 400)
end
end
subscriptions[subscription[:id]] = subscription
add_subscription_to_customer(customer, subscription)
subscriptions[subscription[:id]]
end
def create_subscription(route, method_url, params, headers)
route =~ method_url
plan_id = params[:plan].to_s
plan = assert_existence :plan, plan_id, plans[plan_id]
customer = params[:customer]
customer_id = customer.is_a?(Stripe::Customer) ? customer[:id] : customer.to_s
customer = assert_existence :customer, customer_id, customers[customer_id]
if params[:source]
new_card = get_card_by_token(params.delete(:source))
add_card_to_object(:customer, new_card, customer)
customer[:default_source] = new_card[:id]
end
subscription = Data.mock_subscription({ id: (params[:id] || new_id('su')) })
subscription.merge!(custom_subscription_params(plan, customer, params))
# Ensure customer has card to charge if plan has no trial and is not free
verify_card_present(customer, plan, subscription, params)
if params[:coupon]
coupon_id = params[:coupon]
# assert_existence returns 404 error code but Stripe returns 400
# coupon = assert_existence :coupon, coupon_id, coupons[coupon_id]
coupon = coupons[coupon_id]
if coupon
subscription[:discount] = Stripe::Util.convert_to_stripe_object({ coupon: coupon }, {})
else
raise Stripe::InvalidRequestError.new("No such coupon: #{coupon_id}", 'coupon', 400)
end
end
subscriptions[subscription[:id]] = subscription
add_subscription_to_customer(customer, subscription)
subscriptions[subscription[:id]]
end
def retrieve_subscription(route, method_url, params, headers)
route =~ method_url
assert_existence :subscription, $1, subscriptions[$1]
end
def retrieve_subscriptions(route, method_url, params, headers)
route =~ method_url
Data.mock_list_object(subscriptions.values, params)
#customer = assert_existence :customer, $1, customers[$1]
#customer[:subscriptions]
end
def update_subscription(route, method_url, params, headers)
route =~ method_url
subscription_id = $2 ? $2 : $1
subscription = assert_existence :subscription, subscription_id, subscriptions[subscription_id]
verify_active_status(subscription)
customer_id = subscription[:customer]
customer = assert_existence :customer, customer_id, customers[customer_id]
if params[:source]
new_card = get_card_by_token(params.delete(:source))
add_card_to_object(:customer, new_card, customer)
customer[:default_source] = new_card[:id]
end
# expand the plan for addition to the customer object
plan_name =
params[:plan].is_a?(String) ? params[:plan] : subscription[:plan][:id]
plan = plans[plan_name]
if params[:coupon]
coupon_id = params[:coupon]
# assert_existence returns 404 error code but Stripe returns 400
# coupon = assert_existence :coupon, coupon_id, coupons[coupon_id]
coupon = coupons[coupon_id]
if coupon
subscription[:discount] = Stripe::Util.convert_to_stripe_object({ coupon: coupon }, {})
elsif coupon_id == ""
subscription[:discount] = Stripe::Util.convert_to_stripe_object(nil, {})
else
raise Stripe::InvalidRequestError.new("No such coupon: #{coupon_id}", 'coupon', 400)
end
end
assert_existence :plan, plan_name, plan
params[:plan] = plan if params[:plan]
verify_card_present(customer, plan, subscription)
if subscription[:cancel_at_period_end]
subscription[:cancel_at_period_end] = false
subscription[:canceled_at] = nil
end
params[:current_period_start] = subscription[:current_period_start]
subscription.merge!(custom_subscription_params(plan, customer, params))
# delete the old subscription, replace with the new subscription
customer[:subscriptions][:data].reject! { |sub| sub[:id] == subscription[:id] }
customer[:subscriptions][:data] << subscription
subscription
end
def cancel_subscription(route, method_url, params, headers)
route =~ method_url
subscription_id = $2 ? $2 : $1
subscription = assert_existence :subscription, subscription_id, subscriptions[subscription_id]
customer_id = subscription[:customer]
customer = assert_existence :customer, customer_id, customers[customer_id]
cancel_params = { canceled_at: Time.now.utc.to_i }
cancelled_at_period_end = (params[:at_period_end] == true)
if cancelled_at_period_end
cancel_params[:cancel_at_period_end] = true
else
cancel_params[:status] = 'canceled'
cancel_params[:cancel_at_period_end] = false
cancel_params[:ended_at] = Time.now.utc.to_i
end
subscription.merge!(cancel_params)
unless cancelled_at_period_end
delete_subscription_from_customer customer, subscription
end
subscription
end
private
def verify_card_present(customer, plan, subscription, params={})
if customer[:default_source].nil? && customer[:trial_end].nil? && plan[:trial_period_days].nil? && plan[:amount] != 0 && plan[:trial_end].nil? && params[:trial_end].nil? && (subscription.nil? || subscription[:trial_end].nil? || subscription[:trial_end] == 'now')
raise Stripe::InvalidRequestError.new('You must supply a valid card xoxo', nil, 400)
end
end
def verify_active_status(subscription)
id, status = subscription.values_at(:id, :status)
if status == 'canceled'
message = "No such subscription: #{id}"
raise Stripe::InvalidRequestError.new(message, 'subscription', 404)
end
end
end
end
end