Class: ProcessOut::Invoice

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Invoice

Initializes the Invoice object Params:

client

ProcessOut client instance



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/processout/invoice.rb', line 124

def initialize(client)
  @client = client

  @id = ""
  @project = nil
  @transaction = nil
  @customer = nil
  @subscription = nil
  @url = ""
  @name = ""
  @amount = ""
  @currency = ""
   = Hash.new
  @request_email = false
  @request_shipping = false
  @return_url = ""
  @cancel_url = ""
  @sandbox = false
  @created_at = ""
  
end

Instance Attribute Details

#amountObject

Returns the value of attribute amount.



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

def amount
  @amount
end

#cancel_urlObject

Returns the value of attribute cancel_url.



23
24
25
# File 'lib/processout/invoice.rb', line 23

def cancel_url
  @cancel_url
end

#created_atObject

Returns the value of attribute created_at.



25
26
27
# File 'lib/processout/invoice.rb', line 25

def created_at
  @created_at
end

#currencyObject

Returns the value of attribute currency.



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

def currency
  @currency
end

#customer(options = nil) ⇒ Object

Get the customer linked to the invoice. Params:

options

Hash of options



251
252
253
# File 'lib/processout/invoice.rb', line 251

def customer
  @customer
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#metadataObject

Returns the value of attribute metadata.



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

def 
  
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#projectObject

Returns the value of attribute project.



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

def project
  @project
end

#request_emailObject

Returns the value of attribute request_email.



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

def request_email
  @request_email
end

#request_shippingObject

Returns the value of attribute request_shipping.



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

def request_shipping
  @request_shipping
end

#return_urlObject

Returns the value of attribute return_url.



22
23
24
# File 'lib/processout/invoice.rb', line 22

def return_url
  @return_url
end

#sandboxObject

Returns the value of attribute sandbox.



24
25
26
# File 'lib/processout/invoice.rb', line 24

def sandbox
  @sandbox
end

#subscriptionObject

Returns the value of attribute subscription.



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

def subscription
  @subscription
end

#transaction(options = nil) ⇒ Object

Get the transaction of the invoice. Params:

options

Hash of options



296
297
298
# File 'lib/processout/invoice.rb', line 296

def transaction
  @transaction
end

#urlObject

Returns the value of attribute url.



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

def url
  @url
end

Instance Method Details

#all(options = nil) ⇒ Object

Get all the invoices. Params:

options

Hash of options



340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/processout/invoice.rb', line 340

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

  }

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

  return_values.push(a)
  

  
  return_values[0]
end

#assign_customer(customer_id, options = nil) ⇒ Object

Assign a customer to the invoice. Params:

customer_id

ID of the customer to be linked to the invoice

options

Hash of options



274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/processout/invoice.rb', line 274

def assign_customer(customer_id, options = nil)
  request = Request.new(@client)
  path    = "/invoices/" + CGI.escape(@id) + "/customers"
  data    = {
    'customer_id': customer_id
  }

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

  
  return_values[0]
end

#authorize(source, options = nil) ⇒ Object

Authorize the invoice using the given source (customer or token) Params:

source

Source used to authorization the payment. Can be a card, a token or a gateway request

options

Hash of options



206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'lib/processout/invoice.rb', line 206

def authorize(source, options = nil)
  request = Request.new(@client)
  path    = "/invoices/" + CGI.escape(@id) + "/authorize"
  data    = {
    'source': source
  }

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

  
  return_values[0]
end

#capture(source, options = nil) ⇒ Object

Capture the invoice using the given source (customer or token) Params:

source

Source used to authorization the payment. Can be a card, a token or a gateway request

options

Hash of options



229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/processout/invoice.rb', line 229

def capture(source, options = nil)
  request = Request.new(@client)
  path    = "/invoices/" + CGI.escape(@id) + "/capture"
  data    = {
    'source': source
  }

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

  
  return_values[0]
end

#create(options = nil) ⇒ Object

Create a new invoice. Params:

options

Hash of options



368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
# File 'lib/processout/invoice.rb', line 368

def create(options = nil)
  request = Request.new(@client)
  path    = "/invoices"
  data    = {
    "name": @name, 
    "amount": @amount, 
    "currency": @currency, 
    "metadata": , 
    "request_email": @request_email, 
    "request_shipping": @request_shipping, 
    "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["invoice"]
  
  
  return_values.push(self.fill_with_data(body))
  

  
  return_values[0]
end

#create_for_customer(customer_id, options = nil) ⇒ Object

Create a new invoice for the given customer ID. Params:

customer_id

ID of the customer

options

Hash of options



400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
# File 'lib/processout/invoice.rb', line 400

def create_for_customer(customer_id, options = nil)
  request = Request.new(@client)
  path    = "/invoices"
  data    = {
    "name": @name, 
    "amount": @amount, 
    "currency": @currency, 
    "metadata": , 
    "request_email": @request_email, 
    "request_shipping": @request_shipping, 
    "return_url": @return_url, 
    "cancel_url": @cancel_url, 
    'customer_id': customer_id
  }

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

  
  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



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

def fill_with_data(data)
  if data.include? "id"
    @id = data["id"]
  end
  if data.include? "project"
    @project = data["project"]
  end
  if data.include? "transaction"
    @transaction = data["transaction"]
  end
  if data.include? "customer"
    @customer = data["customer"]
  end
  if data.include? "subscription"
    @subscription = data["subscription"]
  end
  if data.include? "url"
    @url = data["url"]
  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"
     = data["metadata"]
  end
  if data.include? "request_email"
    @request_email = data["request_email"]
  end
  if data.include? "request_shipping"
    @request_shipping = data["request_shipping"]
  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(invoice_id, options = nil) ⇒ Object

Find an invoice by its ID. Params:

invoice_id

ID of the invoice

options

Hash of options



433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'lib/processout/invoice.rb', line 433

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

  }

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

  
  return_values[0]
end

#void(options = nil) ⇒ Object

Void the invoice Params:

options

Hash of options



318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# File 'lib/processout/invoice.rb', line 318

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

  }

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

  
  return_values[0]
end