Module: StripeMock::RequestHandlers::Subscriptions

Included in:
Instance
Defined in:
lib/stripe_mock/request_handlers/subscriptions.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/stripe_mock/request_handlers/subscriptions.rb', line 5

def Subscriptions.included(klass)
  klass.add_handler 'get /v1/customers/(.*)/subscriptions', :retrieve_subscriptions
  klass.add_handler 'post /v1/customers/(.*)/subscriptions', :create_subscription
  klass.add_handler 'get /v1/customers/(.*)/subscriptions/(.*)', :retrieve_subscription
  klass.add_handler 'post /v1/customers/(.*)/subscriptions/(.*)', :update_subscription
  klass.add_handler 'delete /v1/customers/(.*)/subscriptions/(.*)', :cancel_subscription
end

Instance Method Details

#cancel_subscription(route, method_url, params, headers) ⇒ Object



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
# File 'lib/stripe_mock/request_handlers/subscriptions.rb', line 85

def cancel_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

  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

#create_subscription(route, method_url, params, headers) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/stripe_mock/request_handlers/subscriptions.rb', line 13

def create_subscription(route, method_url, params, headers)
  route =~ method_url
  customer = assert_existence :customer, $1, customers[$1]

  plan_id = params[:plan]
  plan = assert_existence :plan, plan_id, plans[plan_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

  # Ensure customer has card to charge if plan has no trial and is not free
  verify_card_present(customer, plan, params)

  subscription = Data.mock_subscription({ id: (params[:id] || new_id('su')) })
  subscription.merge!(custom_subscription_params(plan, customer, params))
  add_subscription_to_customer(customer, subscription)

  subscription
end

#retrieve_subscription(route, method_url, params, headers) ⇒ Object



36
37
38
39
40
41
# File 'lib/stripe_mock/request_handlers/subscriptions.rb', line 36

def retrieve_subscription(route, method_url, params, headers)
  route =~ method_url

  customer = assert_existence :customer, $1, customers[$1]
  assert_existence :subscription, $2, get_customer_subscription(customer, $2)
end

#retrieve_subscriptions(route, method_url, params, headers) ⇒ Object



43
44
45
46
47
48
# File 'lib/stripe_mock/request_handlers/subscriptions.rb', line 43

def retrieve_subscriptions(route, method_url, params, headers)
  route =~ method_url

  customer = assert_existence :customer, $1, customers[$1]
  customer[:subscriptions]
end

#update_subscription(route, method_url, params, headers) ⇒ Object



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
# File 'lib/stripe_mock/request_handlers/subscriptions.rb', line 50

def update_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

  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] || subscription[:plan][:id]
  plan = plans[plan_name]

  assert_existence :plan, plan_name, plan
  params[:plan] = plan if params[:plan]
  verify_card_present(customer, plan)

  if subscription[:cancel_at_period_end]
    subscription[:cancel_at_period_end] = false
    subscription[:canceled_at] = nil
  end

  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