Class: ProcessOut::AuthorizationRequest
- Inherits:
-
Object
- Object
- ProcessOut::AuthorizationRequest
- Defined in:
- lib/processout/authorization_request.rb
Instance Attribute Summary collapse
-
#authorized ⇒ Object
Returns the value of attribute authorized.
-
#cancel_url ⇒ Object
Returns the value of attribute cancel_url.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#customer ⇒ Object
Returns the value of attribute customer.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#project ⇒ Object
Returns the value of attribute project.
-
#return_url ⇒ Object
Returns the value of attribute return_url.
-
#sandbox ⇒ Object
Returns the value of attribute sandbox.
-
#token ⇒ Object
Returns the value of attribute token.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#create(customer_id, options = {}) ⇒ Object
Create a new authorization request for the given customer ID.
-
#fetch_customer(options = {}) ⇒ Object
Get the customer linked to the authorization request.
-
#fill_with_data(data) ⇒ Object
- Fills the object with data coming from the API Params:
data -
Hashof data coming from the API.
- Fills the object with data coming from the API Params:
-
#find(authorization_request_id, options = {}) ⇒ Object
Find an authorization request by its ID.
-
#initialize(client, data = {}) ⇒ AuthorizationRequest
constructor
- Initializes the AuthorizationRequest object Params:
client ProcessOutclient instancedata-
data that can be used to fill the object.
- Initializes the AuthorizationRequest object Params:
-
#new(data = {}) ⇒ Object
Create a new AuthorizationRequest using the current client.
-
#prefill(data) ⇒ Object
- Prefills the object with the data passed as parameters Params:
data -
Hashof data.
- Prefills the object with the data passed as parameters Params:
Constructor Details
#initialize(client, data = {}) ⇒ AuthorizationRequest
Initializes the AuthorizationRequest object Params:
client-
ProcessOutclient instance data-
data that can be used to fill the object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/processout/authorization_request.rb', line 98 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.token = data.fetch(:token, nil) self.url = data.fetch(:url, nil) self. = data.fetch(:authorized, 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.sandbox = data.fetch(:sandbox, nil) self.created_at = data.fetch(:created_at, nil) end |
Instance Attribute Details
#authorized ⇒ Object
Returns the value of attribute authorized.
15 16 17 |
# File 'lib/processout/authorization_request.rb', line 15 def @authorized end |
#cancel_url ⇒ Object
Returns the value of attribute cancel_url.
19 20 21 |
# File 'lib/processout/authorization_request.rb', line 19 def cancel_url @cancel_url end |
#created_at ⇒ Object
Returns the value of attribute created_at.
21 22 23 |
# File 'lib/processout/authorization_request.rb', line 21 def created_at @created_at end |
#currency ⇒ Object
Returns the value of attribute currency.
17 18 19 |
# File 'lib/processout/authorization_request.rb', line 17 def currency @currency end |
#customer ⇒ Object
Returns the value of attribute customer.
12 13 14 |
# File 'lib/processout/authorization_request.rb', line 12 def customer @customer end |
#id ⇒ Object
Returns the value of attribute id.
10 11 12 |
# File 'lib/processout/authorization_request.rb', line 10 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
16 17 18 |
# File 'lib/processout/authorization_request.rb', line 16 def name @name end |
#project ⇒ Object
Returns the value of attribute project.
11 12 13 |
# File 'lib/processout/authorization_request.rb', line 11 def project @project end |
#return_url ⇒ Object
Returns the value of attribute return_url.
18 19 20 |
# File 'lib/processout/authorization_request.rb', line 18 def return_url @return_url end |
#sandbox ⇒ Object
Returns the value of attribute sandbox.
20 21 22 |
# File 'lib/processout/authorization_request.rb', line 20 def sandbox @sandbox end |
#token ⇒ Object
Returns the value of attribute token.
13 14 15 |
# File 'lib/processout/authorization_request.rb', line 13 def token @token end |
#url ⇒ Object
Returns the value of attribute url.
14 15 16 |
# File 'lib/processout/authorization_request.rb', line 14 def url @url end |
Instance Method Details
#create(customer_id, options = {}) ⇒ Object
Create a new authorization request for the given customer ID. Params:
customer_id-
ID of the customer
options-
Hashof options
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/processout/authorization_request.rb', line 219 def create(customer_id, = {}) self.prefill() request = Request.new(@client) path = "/authorization-requests" data = { "name" => @name, "currency" => @currency, "return_url" => @return_url, "cancel_url" => @cancel_url, "customer_id" => customer_id } response = Response.new(request.post(path, data, )) 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-
Hashof options
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/processout/authorization_request.rb', line 194 def fetch_customer( = {}) self.prefill() request = Request.new(@client) path = "/authorization-requests/" + CGI.escape(@id) + "/customers" data = { } response = Response.new(request.get(path, data, )) 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-
Hashof data coming from the API
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/processout/authorization_request.rb', line 124 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? "token" self.token = data["token"] end if data.include? "url" self.url = data["url"] end if data.include? "authorized" self. = data["authorized"] 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? "sandbox" self.sandbox = data["sandbox"] 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-
Hashof options
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/processout/authorization_request.rb', line 250 def find(, = {}) self.prefill() request = Request.new(@client) path = "/authorization-requests/" + CGI.escape() + "" data = { } response = Response.new(request.get(path, data, )) 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
117 118 119 |
# File 'lib/processout/authorization_request.rb', line 117 def new(data = {}) AuthorizationRequest.new(@client, data) end |
#prefill(data) ⇒ Object
Prefills the object with the data passed as parameters Params:
data-
Hashof data
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'lib/processout/authorization_request.rb', line 171 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.token = data.fetch(:token, self.token) self.url = data.fetch(:url, self.url) self. = data.fetch(:authorized, self.) 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.sandbox = data.fetch(:sandbox, self.sandbox) self.created_at = data.fetch(:created_at, self.created_at) self end |