Class: ProcessOut::Transaction

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, data = {}) ⇒ Transaction

Initializes the Transaction object Params:

client

ProcessOut client instance

data

data that can be used to fill the object



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/processout/transaction.rb', line 137

def initialize(client, data = {})
  @client = client

  self.id = data.fetch(:id, nil)
  self.project = data.fetch(:project, nil)
  self.customer = data.fetch(:customer, nil)
  self.subscription = data.fetch(:subscription, nil)
  self.token = data.fetch(:token, nil)
  self.card = data.fetch(:card, nil)
  self.name = data.fetch(:name, nil)
  self.authorized_amount = data.fetch(:authorized_amount, nil)
  self.captured_amount = data.fetch(:captured_amount, nil)
  self.currency = data.fetch(:currency, nil)
  self.status = data.fetch(:status, nil)
  self.authorized = data.fetch(:authorized, nil)
  self.captured = data.fetch(:captured, nil)
  self.processout_fee = data.fetch(:processout_fee, nil)
  self. = data.fetch(:metadata, nil)
  self.sandbox = data.fetch(:sandbox, nil)
  self.created_at = data.fetch(:created_at, nil)
  
end

Instance Attribute Details

#authorizedObject

Returns the value of attribute authorized.



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

def authorized
  @authorized
end

#authorized_amountObject

Returns the value of attribute authorized_amount.



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

def authorized_amount
  @authorized_amount
end

#capturedObject

Returns the value of attribute captured.



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

def captured
  @captured
end

#captured_amountObject

Returns the value of attribute captured_amount.



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

def captured_amount
  @captured_amount
end

#cardObject

Returns the value of attribute card.



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

def card
  @card
end

#created_atObject

Returns the value of attribute created_at.



26
27
28
# File 'lib/processout/transaction.rb', line 26

def created_at
  @created_at
end

#currencyObject

Returns the value of attribute currency.



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

def currency
  @currency
end

#customerObject

Returns the value of attribute customer.



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

def customer
  @customer
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#metadataObject

Returns the value of attribute metadata.



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

def 
  @metadata
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#processout_feeObject

Returns the value of attribute processout_fee.



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

def processout_fee
  @processout_fee
end

#projectObject

Returns the value of attribute project.



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

def project
  @project
end

#sandboxObject

Returns the value of attribute sandbox.



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

def sandbox
  @sandbox
end

#statusObject

Returns the value of attribute status.



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

def status
  @status
end

#subscriptionObject

Returns the value of attribute subscription.



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

def subscription
  @subscription
end

#tokenObject

Returns the value of attribute token.



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

def token
  @token
end

Instance Method Details

#all(options = {}) ⇒ Object

Get all the transactions. Params:

options

Hash of options



313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/processout/transaction.rb', line 313

def all(options = {})
  self.prefill(options)

  request = Request.new(@client)
  path    = "/transactions"
  data    = {

  }

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

  return_values.push(a)
  

  
  return_values[0]
end

#fetch_refunds(options = {}) ⇒ Object

Get the transaction’s refunds. Params:

options

Hash of options



258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/processout/transaction.rb', line 258

def fetch_refunds(options = {})
  self.prefill(options)

  request = Request.new(@client)
  path    = "/transactions/" + CGI.escape(@id) + "/refunds"
  data    = {

  }

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

  return_values.push(a)
  

  
  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



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

def fill_with_data(data)
  if data.nil?
    return self
  end
  if data.include? "id"
    self.id = data["id"]
  end
  if data.include? "project"
    self.project = data["project"]
  end
  if data.include? "customer"
    self.customer = data["customer"]
  end
  if data.include? "subscription"
    self.subscription = data["subscription"]
  end
  if data.include? "token"
    self.token = data["token"]
  end
  if data.include? "card"
    self.card = data["card"]
  end
  if data.include? "name"
    self.name = data["name"]
  end
  if data.include? "authorized_amount"
    self.authorized_amount = data["authorized_amount"]
  end
  if data.include? "captured_amount"
    self.captured_amount = data["captured_amount"]
  end
  if data.include? "currency"
    self.currency = data["currency"]
  end
  if data.include? "status"
    self.status = data["status"]
  end
  if data.include? "authorized"
    self.authorized = data["authorized"]
  end
  if data.include? "captured"
    self.captured = data["captured"]
  end
  if data.include? "processout_fee"
    self.processout_fee = data["processout_fee"]
  end
  if data.include? "metadata"
    self. = data["metadata"]
  end
  if data.include? "sandbox"
    self.sandbox = data["sandbox"]
  end
  if data.include? "created_at"
    self.created_at = data["created_at"]
  end
  
  self
end

#find(transaction_id, options = {}) ⇒ Object

Find a transaction by its ID. Params:

transaction_id

ID of the transaction

options

Hash of options



344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/processout/transaction.rb', line 344

def find(transaction_id, options = {})
  self.prefill(options)

  request = Request.new(@client)
  path    = "/transactions/" + CGI.escape(transaction_id) + ""
  data    = {

  }

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

  
  return_values[0]
end

#find_refund(refund_id, options = {}) ⇒ Object

Find a transaction’s refund by its ID. Params:

refund_id

ID of the refund

options

Hash of options



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/processout/transaction.rb', line 289

def find_refund(refund_id, options = {})
  self.prefill(options)

  request = Request.new(@client)
  path    = "/transactions/" + CGI.escape(@id) + "/refunds/" + CGI.escape(refund_id) + ""
  data    = {

  }

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

  
  return_values[0]
end

#new(data = {}) ⇒ Object

Create a new Transaction using the current client



161
162
163
# File 'lib/processout/transaction.rb', line 161

def new(data = {})
  Transaction.new(@client, data)
end

#prefill(data) ⇒ Object

Prefills the object with the data passed as parameters Params:

data

Hash of data



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# File 'lib/processout/transaction.rb', line 230

def prefill(data)
  if data.nil?
    return self
  end
  self.id = data.fetch(:id, self.id)
  self.project = data.fetch(:project, self.project)
  self.customer = data.fetch(:customer, self.customer)
  self.subscription = data.fetch(:subscription, self.subscription)
  self.token = data.fetch(:token, self.token)
  self.card = data.fetch(:card, self.card)
  self.name = data.fetch(:name, self.name)
  self.authorized_amount = data.fetch(:authorized_amount, self.authorized_amount)
  self.captured_amount = data.fetch(:captured_amount, self.captured_amount)
  self.currency = data.fetch(:currency, self.currency)
  self.status = data.fetch(:status, self.status)
  self.authorized = data.fetch(:authorized, self.authorized)
  self.captured = data.fetch(:captured, self.captured)
  self.processout_fee = data.fetch(:processout_fee, self.processout_fee)
  self. = data.fetch(:metadata, self.)
  self.sandbox = data.fetch(:sandbox, self.sandbox)
  self.created_at = data.fetch(:created_at, self.created_at)
  
  self
end