Class: ProcessOut::AuthorizationRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Initializes the AuthorizationRequest object Params:

client

ProcessOut client instance

data

data that can be used to fill the object



128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/processout/authorization_request.rb', line 128

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

  self.id = data.fetch(:id, nil)
  self.project = data.fetch(:project, nil)
  self.project_id = data.fetch(:project_id, nil)
  self.customer = data.fetch(:customer, nil)
  self.customer_id = data.fetch(:customer_id, nil)
  self.token = data.fetch(:token, nil)
  self.token_id = data.fetch(:token_id, nil)
  self.name = data.fetch(:name, nil)
  self.currency = data.fetch(:currency, nil)
  self.return_url = data.fetch(:return_url, nil)
  self.cancel_url = data.fetch(:cancel_url, nil)
  self.authorized = data.fetch(:authorized, nil)
  self.sandbox = data.fetch(:sandbox, nil)
  self.url = data.fetch(:url, 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/authorization_request.rb', line 21

def authorized
  @authorized
end

#cancel_urlObject

Returns the value of attribute cancel_url.



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

def cancel_url
  @cancel_url
end

#created_atObject

Returns the value of attribute created_at.



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

def created_at
  @created_at
end

#currencyObject

Returns the value of attribute currency.



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

def currency
  @currency
end

#customerObject

Returns the value of attribute customer.



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

def customer
  @customer
end

#customer_idObject

Returns the value of attribute customer_id.



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

def customer_id
  @customer_id
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#projectObject

Returns the value of attribute project.



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

def project
  @project
end

#project_idObject

Returns the value of attribute project_id.



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

def project_id
  @project_id
end

#return_urlObject

Returns the value of attribute return_url.



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

def return_url
  @return_url
end

#sandboxObject

Returns the value of attribute sandbox.



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

def sandbox
  @sandbox
end

#tokenObject

Returns the value of attribute token.



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

def token
  @token
end

#token_idObject

Returns the value of attribute token_id.



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

def token_id
  @token_id
end

#urlObject

Returns the value of attribute url.



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

def url
  @url
end

Instance Method Details

#create(options = {}) ⇒ Object

Create a new authorization request for the given customer ID. Params:

options

Hash of options



263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
# File 'lib/processout/authorization_request.rb', line 263

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

  request = Request.new(@client)
  path    = "/authorization-requests"
  data    = {
    "customer_id" => @customer_id, 
    "name" => @name, 
    "currency" => @currency, 
    "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["authorization_request"]
  
  
  return_values.push(self.fill_with_data(body))
  

  
  return_values[0]
end

#fetch_customer(options = {}) ⇒ Object

Get the customer linked to the authorization request. Params:

options

Hash of options



239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/processout/authorization_request.rb', line 239

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

  request = Request.new(@client)
  path    = "/authorization-requests/" + CGI.escape(@id) + "/customers"
  data    = {

  }

  response = Response.new(request.get(path, data, options))
  return_values = Array.new
  
  body = response.body
  body = body["customer"]
  customer = Customer.new(@client)
  return_values.push(customer.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



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

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? "project_id"
    self.project_id = data["project_id"]
  end
  if data.include? "customer"
    self.customer = data["customer"]
  end
  if data.include? "customer_id"
    self.customer_id = data["customer_id"]
  end
  if data.include? "token"
    self.token = data["token"]
  end
  if data.include? "token_id"
    self.token_id = data["token_id"]
  end
  if data.include? "name"
    self.name = data["name"]
  end
  if data.include? "currency"
    self.currency = data["currency"]
  end
  if data.include? "return_url"
    self.return_url = data["return_url"]
  end
  if data.include? "cancel_url"
    self.cancel_url = data["cancel_url"]
  end
  if data.include? "authorized"
    self.authorized = data["authorized"]
  end
  if data.include? "sandbox"
    self.sandbox = data["sandbox"]
  end
  if data.include? "url"
    self.url = data["url"]
  end
  if data.include? "created_at"
    self.created_at = data["created_at"]
  end
  
  self
end

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

Find an authorization request by its ID. Params:

authorization_request_id

ID of the authorization request

options

Hash of options



294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# File 'lib/processout/authorization_request.rb', line 294

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

  request = Request.new(@client)
  path    = "/authorization-requests/" + CGI.escape(authorization_request_id) + ""
  data    = {

  }

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

  
  return_values[0]
end

#new(data = {}) ⇒ Object

Create a new AuthorizationRequest using the current client



150
151
152
# File 'lib/processout/authorization_request.rb', line 150

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

#prefill(data) ⇒ Object

Prefills the object with the data passed as parameters Params:

data

Hash of data



213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/processout/authorization_request.rb', line 213

def prefill(data)
  if data.nil?
    return self
  end
  self.id = data.fetch(:id, self.id)
  self.project = data.fetch(:project, self.project)
  self.project_id = data.fetch(:project_id, self.project_id)
  self.customer = data.fetch(:customer, self.customer)
  self.customer_id = data.fetch(:customer_id, self.customer_id)
  self.token = data.fetch(:token, self.token)
  self.token_id = data.fetch(:token_id, self.token_id)
  self.name = data.fetch(:name, self.name)
  self.currency = data.fetch(:currency, self.currency)
  self.return_url = data.fetch(:return_url, self.return_url)
  self.cancel_url = data.fetch(:cancel_url, self.cancel_url)
  self.authorized = data.fetch(:authorized, self.authorized)
  self.sandbox = data.fetch(:sandbox, self.sandbox)
  self.url = data.fetch(:url, self.url)
  self.created_at = data.fetch(:created_at, self.created_at)
  
  self
end