Class: ProcessOut::Plan

Inherits:
Object
  • Object
show all
Defined in:
lib/processout/plan.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Plan

Initializes the Plan object Params:

client

ProcessOut client instance



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/processout/plan.rb', line 83

def initialize(client)
  @client = client

  @id = ""
  @project = nil
  @name = ""
  @amount = ""
  @currency = ""
  @metadata = Hash.new
  @interval = ""
  @trial_period = "0d"
  @return_url = ""
  @cancel_url = ""
  @sandbox = false
  @created_at = ""
  
end

Instance Attribute Details

#amountObject

Returns the value of attribute amount.



13
14
15
# File 'lib/processout/plan.rb', line 13

def amount
  @amount
end

#cancel_urlObject

Returns the value of attribute cancel_url.



19
20
21
# File 'lib/processout/plan.rb', line 19

def cancel_url
  @cancel_url
end

#created_atObject

Returns the value of attribute created_at.



21
22
23
# File 'lib/processout/plan.rb', line 21

def created_at
  @created_at
end

#currencyObject

Returns the value of attribute currency.



14
15
16
# File 'lib/processout/plan.rb', line 14

def currency
  @currency
end

#idObject

Returns the value of attribute id.



10
11
12
# File 'lib/processout/plan.rb', line 10

def id
  @id
end

#intervalObject

Returns the value of attribute interval.



16
17
18
# File 'lib/processout/plan.rb', line 16

def interval
  @interval
end

#metadataObject

Returns the value of attribute metadata.



15
16
17
# File 'lib/processout/plan.rb', line 15

def 
  @metadata
end

#nameObject

Returns the value of attribute name.



12
13
14
# File 'lib/processout/plan.rb', line 12

def name
  @name
end

#projectObject

Returns the value of attribute project.



11
12
13
# File 'lib/processout/plan.rb', line 11

def project
  @project
end

#return_urlObject

Returns the value of attribute return_url.



18
19
20
# File 'lib/processout/plan.rb', line 18

def return_url
  @return_url
end

#sandboxObject

Returns the value of attribute sandbox.



20
21
22
# File 'lib/processout/plan.rb', line 20

def sandbox
  @sandbox
end

#trial_periodObject

Returns the value of attribute trial_period.



17
18
19
# File 'lib/processout/plan.rb', line 17

def trial_period
  @trial_period
end

Instance Method Details

#all(options = nil) ⇒ Object

Get all the plans. Params:

options

Hash of options



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/processout/plan.rb', line 148

def all(options = nil)
  request = Request.new(@client)
  path    = "/plans"
  data    = {

  }

  response = Response.new(request.get(path, data, options))
  return_values = Array.new
  
  a    = Array.new
  body = response.body
  for v in body['plans']
    tmp = Plan(@client)
    tmp.fill_with_data(v)
    a.push(tmp)
  end

  return_values.push(a)
  

  
  return_values[0]
end

#create(options = nil) ⇒ Object

Create a new plan. Params:

options

Hash of options



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
# File 'lib/processout/plan.rb', line 176

def create(options = nil)
  request = Request.new(@client)
  path    = "/plans"
  data    = {
    "id": @id, 
    "name": @name, 
    "amount": @amount, 
    "currency": @currency, 
    "interval": @interval, 
    "trial_period": @trial_period, 
    "metadata": @metadata, 
    "return_url": @return_url, 
    "cancel_url": @cancel_url
  }

  response = Response.new(request.post(path, data, options))
  return_values = Array.new
  
  body = response.body
  body = body["plan"]
  
  
  return_values.push(self.fill_with_data(body))
  

  
  return_values[0]
end

#end(options = nil) ⇒ Object

Delete a plan. Subscriptions linked to this plan won’t be affected. Params:

options

Hash of options



262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/processout/plan.rb', line 262

def end(options = nil)
  request = Request.new(@client)
  path    = "/plans/" + CGI.escape(@id) + ""
  data    = {

  }

  response = Response.new(request.delete(path, data, options))
  return_values = Array.new
  
  return_values.push(response.success)

  
  return_values[0]
end

#fill_with_data(data) ⇒ Object

Fills the object with data coming from the API Params:

data

Hash of data coming from the API



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
# File 'lib/processout/plan.rb', line 104

def fill_with_data(data)
  if data.include? "id"
    @id = data["id"]
  end
  if data.include? "project"
    @project = data["project"]
  end
  if data.include? "name"
    @name = data["name"]
  end
  if data.include? "amount"
    @amount = data["amount"]
  end
  if data.include? "currency"
    @currency = data["currency"]
  end
  if data.include? "metadata"
    @metadata = data["metadata"]
  end
  if data.include? "interval"
    @interval = data["interval"]
  end
  if data.include? "trial_period"
    @trial_period = data["trial_period"]
  end
  if data.include? "return_url"
    @return_url = data["return_url"]
  end
  if data.include? "cancel_url"
    @cancel_url = data["cancel_url"]
  end
  if data.include? "sandbox"
    @sandbox = data["sandbox"]
  end
  if data.include? "created_at"
    @created_at = data["created_at"]
  end
  
  self
end

#find(plan_id, options = nil) ⇒ Object

Find a plan by its ID. Params:

plan_id

ID of the plan

options

Hash of options



209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/processout/plan.rb', line 209

def find(plan_id, options = nil)
  request = Request.new(@client)
  path    = "/plans/" + CGI.escape(plan_id) + ""
  data    = {

  }

  response = Response.new(request.get(path, data, options))
  return_values = Array.new
  
  body = response.body
  body = body["plan"]
  
  
  obj = Plan.new(@client)
  return_values.push(obj.fill_with_data(body))
  

  
  return_values[0]
end

#update(options = nil) ⇒ Object

Update the plan. This action won’t affect subscriptions already linked to this plan. Params:

options

Hash of options



234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/processout/plan.rb', line 234

def update(options = nil)
  request = Request.new(@client)
  path    = "/plans/" + CGI.escape(@id) + ""
  data    = {
    "name": @name, 
    "trial_period": @trial_period, 
    "metadata": @metadata, 
    "return_url": @return_url, 
    "cancel_url": @cancel_url
  }

  response = Response.new(request.put(path, data, options))
  return_values = Array.new
  
  body = response.body
  body = body["plan"]
  
  
  return_values.push(self.fill_with_data(body))
  

  
  return_values[0]
end