-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathualabis.php
executable file
·380 lines (339 loc) · 13.1 KB
/
ualabis.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
144
145
146
147
148
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
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<?php
/**
* UalaBis Gateway.
* Checkout API
* Docs. https://developers.ualabis.com.ar/api-checkout
*/
class Ualabis extends NonmerchantGateway
{
/**
* @var array An array of meta data for this gateway
*/
private $meta;
/**
* Construct a new non-merchant gateway.
*/
public function __construct()
{
$this->loadConfig(dirname(__FILE__) . DS . 'config.json');
// Load components required by this gateway
Loader::loadComponents($this, ['Input']);
// Load the language required by this gateway
Language::loadLang(
'ualabis',
null,
dirname(__FILE__) . DS . 'language' . DS
);
}
/**
* Sets the currency code to be used for all subsequent payments.
*
* @param string $currency The ISO 4217 currency code to be used for subsequent payments
*/
public function setCurrency($currency)
{
$this->currency = $currency;
}
/**
* Create and return the view content required to modify the settings of this gateway.
*
* @param array $meta An array of meta (settings) data belonging to this gateway
* @return string HTML content containing the fields to update the meta data for this gateway
*/
public function getSettings(array $meta = null)
{
$this->view = $this->makeView(
'settings',
'default',
str_replace(ROOTWEBDIR, '', dirname(__FILE__) . DS)
);
// Load the helpers required for this view
Loader::loadHelpers($this, ['Form', 'Html']);
$this->view->set('meta', $meta);
return $this->view->fetch();
}
/**
* Validates the given meta (settings) data to be updated for this gateway.
*
* @param array $meta An array of meta (settings) data to be updated for this gateway
* @return array The meta data to be updated in the database for this gateway, or reset into the form on failure
*/
public function editSettings(array $meta)
{
// Verify meta data is valid
$rules = [
'user_name' => [
'valid' => [
'rule' => 'isEmpty',
'negate' => true,
'message' => Language::_('Ualabis.!error.user_name.empty', true)
]
],
'client_id' => [
'valid' => [
'rule' => 'isEmpty',
'negate' => true,
'message' => Language::_('Ualabis.!error.client_id.empty', true)
]
],
'client_secret_id' => [
'valid' => [
'rule' => 'isEmpty',
'negate' => true,
'message' => Language::_('Ualabis.!error.client_secret_id.empty', true)
]
],
'grant_type' => [
'valid' => [
'rule' => 'isEmpty',
'negate' => true,
'message' => Language::_('Ualabis.!error.grant_type.empty', true)
]
]
];
$this->Input->setRules($rules);
// Validate the given meta data to ensure it meets the requirements
$this->Input->validates($meta);
// Return the meta data, no changes required regardless of success or failure for this gateway
return $meta;
}
/**
* Returns an array of all fields to encrypt when storing in the database.
*
* @return array An array of the field names to encrypt when storing in the database
*/
public function encryptableFields()
{
return ['user_name','client_id', 'client_secret_id', 'grant_type'];
}
/**
* Sets the meta data for this particular gateway.
*
* @param array $meta An array of meta data to set for this gateway
*/
public function setMeta(array $meta = null)
{
$this->meta = $meta;
}
/**
* Returns all HTML markup required to render an authorization and capture payment form.
*
* @param array $contact_info An array of contact info including:
* - id The contact ID
* - client_id The ID of the client this contact belongs to
* - user_id The user ID this contact belongs to (if any)
* - contact_type The type of contact
* - contact_type_id The ID of the contact type
* - first_name The first name on the contact
* - last_name The last name on the contact
* - title The title of the contact
* - company The company name of the contact
* - address1 The address 1 line of the contact
* - address2 The address 2 line of the contact
* - city The city of the contact
* - state An array of state info including:
* - code The 2 or 3-character state code
* - name The local name of the country
* - country An array of country info including:
* - alpha2 The 2-character country code
* - alpha3 The 3-cahracter country code
* - name The english name of the country
* - alt_name The local name of the country
* - zip The zip/postal code of the contact
* @param float $amount The amount to charge this contact
* @param array $invoice_amounts An array of invoices, each containing:
* - id The ID of the invoice being processed
* - amount The amount being processed for this invoice (which is included in $amount)
* @param array $options An array of options including:
* - description The Description of the charge
* - return_url The URL to redirect users to after a successful payment
* - recur An array of recurring info including:
* - start_date The date/time in UTC that the recurring payment begins
* - amount The amount to recur
* - term The term to recur
* - period The recurring period (day, week, month, year, onetime) used in
* conjunction with term in order to determine the next recurring payment
* @return mixed A string of HTML markup required to render an authorization and
* capture payment form, or an array of HTML markup
*/
public function buildProcess(array $contact_info, $amount, array $invoice_amounts = null, array $options = null)
{
$api = $this->getApi($this->meta['user_name'], $this->meta['client_id'], $this->meta['client_secret_id'], $this->meta['grant_type']);
// Set redirect url
$redirect_url = ($options['return_url'] ?? null);
$query = parse_url($redirect_url, PHP_URL_QUERY);
$invoices = $this->serializeInvoices($invoice_amounts);
if ($query) {
$redirect_url .= '&';
} else {
$redirect_url .= '?';
}
$redirect_url .= 'amount=' . $amount . '&invoices=' . $invoices;
$params = [
'amount' => (string)$amount,
'description' => $options['description'] ?? null,
'userName' => $this->meta['user_name'],
'callback_fail' => $redirect_url,
'callback_success' => $redirect_url,
'notification_url' => Configure::get('Blesta.gw_callback_url') . Configure::get('Blesta.company_id') .
'/ualabis/?client_id=' . ($contact_info['client_id'] ?? ''),
];
$tokenize = $api->buildToken();
$token = $tokenize->data();
// Get the url to redirect the client to
$result = $api->buildPayment($params, $token->access_token);
$data = $result->data();
$ualabis_url = $data->links->checkoutLink ?? '';
return $this->buildForm($ualabis_url);
}
/**
* Builds the HTML form.
*
* @return string The HTML form
*/
private function buildForm($post_to)
{
$this->view = $this->makeView(
'process',
'default',
str_replace(ROOTWEBDIR, '', dirname(__FILE__) . DS)
);
// Load the helpers required for this view
Loader::loadHelpers($this, ['Form', 'Html']);
$this->view->set('post_to', $post_to);
return $this->view->fetch();
}
/**
* Validates the incoming POST/GET response from the gateway to ensure it is
* legitimate and can be trusted.
*
* @param array $get The GET data for this request
* @param array $post The POST data for this request
* @return array An array of transaction data, sets any errors using Input if the data fails to validate
* - client_id The ID of the client that attempted the payment
* - amount The amount of the payment
* - currency The currency of the payment
* - invoices An array of invoices and the amount the payment should be applied to (if any) including:
* - id The ID of the invoice to apply to
* - amount The amount to apply to the invoice
* - status The status of the transaction (approved, declined, void, pending, reconciled, refunded, returned)
* - reference_id The reference ID for gateway-only use with this transaction (optional)
* - transaction_id The ID returned by the gateway to identify this transaction
* - parent_transaction_id The ID returned by the gateway to identify this transaction's
* original transaction (in the case of refunds)
*/
public function validate(array $get, array $post)
{
$api = $this->getApi($this->meta['user_name'], $this->meta['client_id'], $this->meta['client_secret_id'], $this->meta['grant_type']);
$callback_data = json_decode(@file_get_contents('php://input'));
// Log request received
$this->log(
isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : null,
json_encode(
$callback_data,
JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT
),
'output',
true
);
// Log data sent for validation
$this->log(
'validate',
json_encode(
['order_id' => $callback_data->uuid],
JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT
),
'output',
true
);
$tokenize = $api->buildToken();
$token = $tokenize->data();
$result = $api->checkPayment($callback_data->uuid, $token->access_token);
$data = $result->data();
// Log post-back sent
$this->log(
'validate',
json_encode($data, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT),
'input',
true
);
$status = 'error';
switch ($data->status ?? null) {
case 'APPROVED':
$status = 'approved';
break;
case 'PENDING':
$status = 'pending';
break;
case 'PROCESSED':
$status = 'approved';
break;
case 'REJECTED':
$status = 'declined';
break;
}
return [
'client_id' => $get['client_id'] ?? null,
'amount' => $data->amount ?? 0,
'currency' => 'ARS',
'status' => $status,
'reference_id' => null,
'transaction_id' => $data->order_id ?? null,
'invoices' => $this->unserializeInvoices($get['invoices']) ?? null
];
}
public function success(array $get, array $post)
{
return [
'client_id' => $get['client_id'] ?? null,
'amount' => $get['amount'] ?? 0,
'currency' => 'ARS',
'status' => 'approved',
'reference_id' => null,
'transaction_id' => null,
'invoices' => $this->unserializeInvoices($get['invoices']) ?? null
];
}
private function serializeInvoices(array $invoices)
{
$str = '';
foreach ($invoices as $i => $invoice) {
$str .=
($i > 0 ? '|' : '') . $invoice['id'] . '=' . $invoice['amount'];
}
return $str;
}
/**
* Unserializes a string of invoice info into an array.
*
* @param string A serialized string of invoice info in the format of key1=value1|key2=value2
* @param mixed $str
* @return array A numerically indexed array invoices info including:
* - id The ID of the invoice
* - amount The amount relating to the invoice
*/
private function unserializeInvoices($str)
{
$invoices = [];
$temp = explode('|', $str);
foreach ($temp as $pair) {
$pairs = explode('=', $pair, 2);
if (count($pairs) != 2) {
continue;
}
$invoices[] = ['id' => $pairs[0], 'amount' => $pairs[1]];
}
return $invoices;
}
/**
* Initializes the UalaBis API and returns an instance of that object with the given account information set.
*
* @return UalabisApi A UalaBis instance
*/
private function getApi($user_name, $client_id, $client_secret_id, $grant_type)
{
// Load library methods
Loader::load(dirname(__FILE__) . DS . 'lib' . DS . 'ualabis_api.php');
return new UalabisApi($user_name, $client_id, $client_secret_id, $grant_type);
}
}