forked from stripe-ruby-mock/stripe-ruby-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscriptions.rb
279 lines (216 loc) · 10.9 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
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
subscription_plans = get_subscription_plans_from_params(params)
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 = resolve_subscription_changes(subscription, subscription_plans, customer, params)
# Ensure customer has card to charge if plan has no trial and is not free
# Note: needs updating for subscriptions with multiple plans
verify_card_present(customer, subscription_plans.first, 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', http_status: 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
subscription_plans = get_subscription_plans_from_params(params)
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 subscription_plans && customer
subscription_plans.each do |plan|
unless customer[:currency].to_s == plan[:currency].to_s
raise Stripe::InvalidRequestError.new("Customer's currency of #{customer[:currency]} does not match plan's currency of #{plan[:currency]}", 'currency', http_status: 400)
end
end
end
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
allowed_params = %w(customer application_fee_percent coupon items metadata plan quantity source tax_percent trial_end trial_period_days current_period_start created prorate billing_cycle_anchor)
unknown_params = params.keys - allowed_params.map(&:to_sym)
if unknown_params.length > 0
raise Stripe::InvalidRequestError.new("Received unknown parameter: #{unknown_params.join}", unknown_params.first.to_s, http_status: 400)
end
subscription = Data.mock_subscription({ id: (params[:id] || new_id('su')) })
subscription = resolve_subscription_changes(subscription, subscription_plans, customer, params)
# Ensure customer has card to charge if plan has no trial and is not free
# Note: needs updating for subscriptions with multiple plans
verify_card_present(customer, subscription_plans.first, 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', http_status: 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
subscription_plans = get_subscription_plans_from_params(params)
# subscription plans are not being updated but load them for the response
if subscription_plans.empty?
subscription_plans = subscription[:items][:data].map { |item| item[:plan] }
end
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', http_status: 400)
end
end
verify_card_present(customer, subscription_plans.first, 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 = resolve_subscription_changes(subscription, subscription_plans, 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 get_subscription_plans_from_params(params)
plan_ids = if params[:plan]
[params[:plan].to_s]
elsif params[:items]
items = params[:items]
items = items.values if items.respond_to?(:values)
items.map { |item| item[:plan].to_s if item[:plan] }
else
[]
end
plan_ids.each do |plan_id|
assert_existence :plan, plan_id, plans[plan_id]
end
plan_ids.map { |plan_id| plans[plan_id] }
end
def verify_card_present(customer, plan, subscription, params={})
if customer[:default_source].nil? && customer[:trial_end].nil? &&
(plan.nil? ||
((plan[:trial_period_days] || 0) == 0 &&
plan[:amount] != 0 &&
plan[:trial_end].nil?)) &&
params[:trial_end].nil? &&
(subscription.nil? || subscription[:trial_end].nil? || subscription[:trial_end] == 'now')
if subscription[:items]
trial = subscription[:items][:data].none? do |item|
plan = item[:plan]
(plan[:trial_period_days].nil? || plan[:trial_period_days] == 0) &&
(plan[:trial_end].nil? || plan[:trial_end] == 'now')
end
return if trial
end
raise Stripe::InvalidRequestError.new('You must supply a valid card xoxo', nil, http_status: 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', http_status: 404)
end
end
end
end
end