-
Notifications
You must be signed in to change notification settings - Fork 0
/
class-wc-gateway-epos-expresspay.php
576 lines (468 loc) · 26.6 KB
/
class-wc-gateway-epos-expresspay.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
<?php
/*
Plugin Name: «Экспресс Платежи: EPOS» для WooCommerce
Plugin URI: https://express-pay.by/cms-extensions/wordpress
Description: «Экспресс Платежи» - плагин для интеграции с сервисом «Экспресс Платежи» (express-pay.by) через API. Плагин позволяет выставить счет в системе EPOS, получить и обработать уведомление о платеже в системе EPOS, выставлять счета для оплаты банковскими картами, получать и обрабатывать уведомления о платеже по банковской карте. Описание плагина доступно по адресу: <a target="blank" href="https://express-pay.by/cms-extensions/wordpress">https://express-pay.by/cms-extensions/wordpress</a>
Version: 1.0.0
Author: ООО «ТриИнком»
Author URI: https://express-pay.by/
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 4.0
WC tested up to: 4.3
*/
if(!defined('ABSPATH')) exit;
define("EPOS_EXPRESSPAY_VERSION", "1.0.0");
add_action('plugins_loaded', 'init_epos_gateway', 0);
function add_wordpress_epos_expresspay($methods) {
$methods[] = 'wordpress_epos_expresspay';
return $methods;
}
function init_epos_gateway() {
if(!class_exists('WC_Payment_Gateway') or class_exists('Wordpress_epos_Expresspay') )
return;
add_filter('woocommerce_payment_gateways', 'add_wordpress_epos_expresspay');
load_plugin_textdomain("wordpress_epos_expresspay", false, dirname( plugin_basename( __FILE__ ) ) . '/languages');
class Wordpress_epos_Expresspay extends WC_Payment_Gateway {
private $plugin_dir;
public function __construct() {
$this->id = "expresspay_epos";
$this->method_title = __('Экспресс Платежи: EPOS', 'wordpress_epos_expresspay');
$this->method_description = __('Прием платежей в системе EPOS сервис «Экспресс Платежи»','wordpress_epos_expresspay');
$this->plugin_dir = plugin_dir_url(__FILE__);
$this->init_form_fields();
$this->init_settings();
$this->title = __("Экспресс Платежи: EPOS", 'wordpress_epos_expresspay');
$this->service_id = $this->get_option('service_id');
$this->service_provider_epos_code =$this->get_option('service_provider_epos_code');
$this->secret_word = $this->get_option('secret_key');
$this->secret_key_notify = $this->get_option('secret_key_notify');
$this->token = $this->get_option('token');
$this->url = ( $this->get_option('test_mode') != 'yes' ) ? $this->get_option('url_api') : $this->get_option('url_sandbox_api');
$this->url .= "/v1/web_invoices";
$this->name_editable = ( $this->get_option('name_editable') == 'yes' ) ? 1 : 0;
$this->address_editable = ( $this->get_option('address_editable') == 'yes' ) ? 1 : 0;
$this->amount_editable = ( $this->get_option('amount_editable') == 'yes' ) ? 1 : 0;
$this->test_mode = ( $this->get_option('test_mode') == 'yes' ) ? 1 : 0;
$this->send_client_email = ( $this->get_option('send_client_email') == 'yes' ) ? 1 : 0;
$this->is_use_signature_notify = ( $this->get_option('is_use_signature_notify') == 'yes' ) ? 1 : 0;
$this->url_qr_code = ( $this->get_option('test_mode') != 'yes' ) ? $this->get_option('url_api') : $this->get_option('url_sandbox_api');
$this->url_qr_code .= '/v1/qrcode/getqrcode/';
add_action('woocommerce_receipt_' . $this->id, array($this, 'receipt_page'));
add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
add_action('woocommerce_api_wordpress_epos_expresspay', array($this, 'check_ipn_response'));
}
public function admin_options() {
?>
<h3><?php _e('«Экспресс Платежи: EPOS»', 'wordpress_epos_expresspay'); ?></h3>
<div style="float: left; display: inline-block;">
<a target="_blank" href="https://express-pay.by"><img src="<?php echo $this->plugin_dir; ?>assets/images/epos_expresspay_big.png" width="270" height="91" alt="exspress-pay.by" title="express-pay.by"></a>
</div>
<div style="margin-left: 6px; margin-top: 15px; display: inline-block;">
<?php _e('«Экспресс Платежи: EPOS» - плагин для интеграции с сервисом «Экспресс Платежи» (express-pay.by) через API.
<br/>Плагин позволяет выставить счет в системе EPOS, получить и обработать уведомление о платеже в системе EPOS.
<br/>Описание плагина доступно по адресу: ', 'wordpress_epos_expresspay'); ?><a target="blank" href="https://express-pay.by/cms-extensions/wordpress#woocommerce_4_x">https://express-pay.by/cms-extensions/wordpress#woocommerce_4_x</a>
</div>
<table class="form-table">
<?php
$this->generate_settings_html();
?>
</table>
<div class="copyright" style="text-align: center;">
<?php _e("© Все права защищены | ООО «ТриИнком»,", 'wordpress_epos_expresspay'); ?> 2013-<?php echo date("Y"); ?><br/>
<?php echo __('Версия', 'wordpress_epos_expresspay') . " " . EPOS_EXPRESSPAY_VERSION ?>
</div>
<?php
}
function init_form_fields() {
$this->form_fields = array(
'enabled' => array(
'title' => __('Включить/Выключить', 'wordpress_epos_expresspay'),
'type' => 'checkbox',
'default' => 'no'
),
'token' => array(
'title' => __('Токен', 'wordpress_epos_expresspay'),
'type' => 'text',
'description' => __('Генерирутся в панели express-pay.by', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'service_id' => array(
'title' => __('Номер услуги', 'wordpress_epos_expresspay'),
'type' => 'text',
'description' => __('Номер услуги в express-pay.by', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'service_provider_epos_code' => array(
'title' => __('Код в EPOS ', 'wordpress_epos_expresspay'),
'type' => 'text',
'description' => __('Код в EPOS указанный в личном кабинете', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'handler_url' => array(
'title' => __('Адрес для уведомлений', 'wordpress_epos_expresspay'),
'type' => 'text',
'css' => 'display: none;',
'description' => get_site_url() . '/?wc-api=wordpress_epos_expresspay&action=notify'
),
'secret_key' => array(
'title' => __('Секретное слово для подписи счетов', 'wordpress_epos_expresspay'),
'type' => 'text',
'description' => __('Секретного слово, которое известно только серверу и клиенту. Используется для формирования цифровой подписи. Задается в панели express-pay.by', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'is_use_signature_notify' => array(
'title' => __('Использовать цифровую подпись для уведомлений', 'wordpress_epos_expresspay'),
'type' => 'checkbox',
'description' => __('Использовать цифровую подпись для уведомлений', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'secret_key_norify' => array(
'title' => __('Секретное слово для подписи уведомлений', 'wordpress_epos_expresspay'),
'type' => 'text',
'description' => __('Секретного слово, которое известно только серверу и клиенту. Используется для формирования цифровой подписи. Задается в панели express-pay.by', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'name_editable' => array(
'title' => __('Разрешено изменять ФИО плательщика', 'wordpress_epos_expresspay'),
'type' => 'checkbox',
'description' => __('Разрешается при оплате счета изменять ФИО плательщика', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'address_editable' => array(
'title' => __('Разрешено изменять адрес плательщика', 'wordpress_epos_expresspay'),
'type' => 'checkbox',
'description' => __('Разрешается при оплате счета изменять адрес плательщика', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'amount_editable' => array(
'title' => __('Разрешено изменять сумму оплаты', 'wordpress_epos_expresspay'),
'type' => 'checkbox',
'description' => __('Разрешается при оплате счета изменять сумму платежа', 'wordpress_epos_expresspay'),
'desc_tip' => true
),
'send_client_email' => array(
'title' => __('Отправлять email-уведомление клиенту', 'wordpress_epos_expresspay'),
'type' => 'checkbox'
),
'test_mode' => array(
'title' => __('Использовать тестовый режим', 'wordpress_epos_expresspay'),
'type' => 'checkbox'
),
'url_api' => array(
'title' => __('Адрес API', 'wordpress_epos_expresspay'),
'type' => 'text',
'default' => 'https://api.express-pay.by'
),
'url_sandbox_api' => array(
'title' => __('Адрес тестового API', 'wordpress_epos_expresspay'),
'type' => 'text',
'default' => 'https://sandbox-api.express-pay.by'
),
);
}
function process_payment($order_id) {
$order = new WC_Order($order_id);
return array(
'result' => 'success',
'redirect' => add_query_arg('order-pay', $order->get_order_number( ), add_query_arg('key', $order->get_order_key(), get_permalink(wc_get_page_id('pay'))))
);
}
function receipt_page($order_id) {
$this->log_info('receipt_page', 'Initialization request for add invoice');
$order = new WC_Order($order_id);
$price = preg_replace('#[^\d.]#', '', $order->get_total());
$price = str_replace('.', ',', $price);
$client_email = "";
//$price = floatval($price);
if($this->send_client_email){
$client_email = $order->get_billing_email();
}
$currency = (date('y') > 16 || (date('y') <= 16 && date('n') >= 7)) ? '933' : '974';
$request_params = array(
"ServiceId" => $this->service_id ,
"AccountNo" => $order_id,
"Amount" => $price,
"Currency" => $currency,
"Surname" => $order->get_billing_last_name(),
"FirstName" => $order->get_billing_first_name(),
"City" => $order->get_billing_city(),
"IsNameEditable" => $this->name_editable,
"IsAddressEditable" => $this->address_editable,
"IsAmountEditable" => $this->amount_editable,
"EmailNotification" => $client_email,
"ReturnType" => "json"
);
$request_params['Signature'] = $this->compute_signature($request_params, $this->secret_word, 'add_invoice');
$request_params = http_build_query($request_params);
$this->log_info('receipt_page', 'Send POST request; ORDER ID - ' . $order_id . '; URL - ' . $this->url . '; REQUEST - ' . $request_params);
$response = "";
try {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request_params);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);
} catch (Exception $e) {
$this->log_error_exception('receipt_page', 'Get response; ORDER ID - ' . $order_id . '; RESPONSE - ' . $response, $e);
$this->fail($order_id);
}
$this->log_info('receipt_page', 'Get response; ORDER ID - ' . $order_id . '; RESPONSE - ' . $response);
try {
$response = json_decode($response);
} catch (Exception $e) {
$this->log_error_exception('receipt_page', 'Get response; ORDER ID - ' . $order_id . '; RESPONSE - ' . $response, $e);
$this->fail($order_id);
}
if(isset($response->ExpressPayInvoiceNo))
$this->success($order_id, $response->ExpressPayInvoiceNo);
else
$this->fail($order_id);
}
private function success($order_id, $invoiceId) {
global $woocommerce;
$order = new WC_Order($order_id);
$this->log_info('receipt_page', 'End request for add invoice');
$this->log_info('success', 'Initialization render success page; ORDER ID - ' . $order->get_order_number());
$woocommerce->cart->empty_cart();
$order->update_status($this->status_after_add_invoice, __('Счет успешно выставлен и ожидает оплаты', 'wordpress_epos_expresspay'));
wc_get_template(
'order/order-details.php',
array(
'order_id' => $order_id,
)
);
//if($this->show_qr_code){
$request_params = array(
'Token' => $this->token,
'InvoiceId' => $invoiceId,
'ViewType' => 'base64'
);
$request_params["Signature"] = $this->compute_signature($request_params, $this->secret_word, 'get_qr_code');
$request_params = http_build_query($request_params);
$this->log_info('success', 'Send POST request; INVOICE ID - ' . $invoiceId . '; URL - ' . $this->url_qr_code . '; REQUEST - ' . $request_params);
$response = "";
$url = $this->url_qr_code . '?' . $request_params;
try {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);
} catch (Exception $e) {
$this->log_error_exception('success', 'Get response; INVOICE ID - ' . $invoiceId . '; RESPONSE - ' . $response, $e);
return;
}
$this->log_info('success', 'Get response; INVOICE ID - ' . $invoiceId . '; RESPONSE - ' . $response);
try {
$response = json_decode($response);
} catch (Exception $e) {
$this->log_error_exception('receipt_page', 'Get response; ORDER ID - ' . $order_id . '; RESPONSE - ' . $response, $e);
return;
}
if(isset($response->QrCodeBody))
{
$qr_code = $response->QrCodeBody;
$message_success = '<h2>Счет добавлен в систему EPOS для оплаты </h2><h3>Ваш номер заказа: ##epos_code##</h3><table style="width: 100%;text-align: left;"><tbody><tr><td valign="top" style="text-align:left;">Вам необходимо произвести платеж в любой системе, позволяющей проводить оплату через ЕРИП (пункты банковского обслуживания, банкоматы, платежные терминалы, системы интернет-банкинга, клиент-банкинга и т.п.).<br /> 1. Для этого в перечне услуг ЕРИП перейдите в раздел:<b>Система "Расчет" (ЕРИП)->Сервис E-POS->E-POS - оплата товаров и услуг</b><br />2. В поле "Код" введите <b>##epos_code##</b> и нажмите "Продолжить"<br />3. Проверить корректность информации<br />4. Совершить платеж.</td><td style="text-align: center;padding: 40px 20px 0 0;vertical-align: middle"><p>##qr_code##</p><p><b>Отсканируйте QR-код для оплаты</b></p></td></tr></tbody></table>';
$epos_code = $this->service_provider_epos_code ."-";
$epos_code .= "1-";
$epos_code .= $order->get_order_number();
$message_success = str_replace("##qr_code##",'<img src="data:image/jpeg;base64,' . $qr_code . '" />', nl2br($message_success, true ));
$message_success = str_replace("##epos_code##", $epos_code, nl2br($message_success, true));
echo $message_success;
}
//}
echo '<br/><br/><p class="return-to-shop"><a class="button wc-backward" href="' . get_permalink( wc_get_page_id( "shop" ) ) . '">' . __('Продолжить', 'wordpress_epos_expresspay') . '</a></p>';
$signature_success = $signature_cancel = "";
if($this->is_use_signature_notify) {
$signature_success = $this->compute_signature_from_json('{"CmdType": 1, "AccountNo": ' . $order->get_order_number() . '}', $this->secret_key_notify);
$signature_cancel = $this->compute_signature_from_json('{"CmdType": 2, "AccountNo": ' . $order->get_order_number() . '}', $this->secret_key_notify);
}
if($this->test_mode) : ?>
<div class="test_mode">
<?php _e('Тестовый режим:', 'wordpress_erip_expresspay'); ?> <br/>
<input type="button" style="margin: 6px 0;" class="button" id="send_notify_success" value="<?php _e('Отправить уведомление об успешной оплате', 'wordpress_erip_expresspay'); ?>" />
<input type="button" class="button" style="margin: 6px 0;" id="send_notify_cancel" class="btn btn-primary" value="<?php _e('Отправить уведомление об отмене оплаты', 'wordpress_erip_expresspay'); ?>" />
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#send_notify_success').click(function() {
send_notify(1, '<?php echo $signature_success; ?>');
});
jQuery('#send_notify_cancel').click(function() {
send_notify(2, '<?php echo $signature_cancel; ?>');
});
function send_notify(type, signature) {
jQuery.post('<?php echo get_site_url() . "/?wc-api=wordpress_erip_expresspay&action=notify" ?>', 'Data={"CmdType": ' + type + ', "AccountNo": <?php echo $order->get_order_number(); ?>}&Signature=' + signature, function(data) {alert(data);})
.fail(function(data) {
alert(data.responseText);
});
}
});
</script>
</div>
<?php
endif;
$this->log_info('success', 'End render success page; ORDER ID - ' . $order->get_order_number());
}
private function fail($order_id) {
global $woocommerce;
$order = new WC_Order($order_id);
$this->log_info('receipt_page', 'End request for add invoice');
$this->log_info('fail', 'Initialization render fail page; ORDER ID - ' . $order->get_order_number());
$order->update_status('failed', __('Счет не был выставлен', 'wordpress_erip_expresspay'));
echo '<h2>' . __('Ошибка выставления счета в системе ЕРИП', 'wordpress_erip_expresspay') . '</h2>';
echo __("При выполнении запроса произошла непредвиденная ошибка. Пожалуйста, повторите запрос позже или обратитесь в службу технической поддержки магазина", 'wordpress_erip_expresspay');
echo '<br/><br/><p class="return-to-shop"><a class="button wc-backward" href="' . wc_get_checkout_url() . '">' . __('Попробовать заново', 'wordpress_erip_expresspay') . '</a></p>';
$this->log_info('fail', 'End render fail page; ORDER ID - ' . $order->get_order_number());
die();
}
function check_ipn_response() {
$this->log_info('check_ipn_response', 'Get notify from server; REQUEST METHOD - ' . $_SERVER['REQUEST_METHOD']);
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_REQUEST['action']) && $_REQUEST['action'] == 'notify') {
$data = ( isset($_REQUEST['Data']) ) ? htmlspecialchars_decode($_REQUEST['Data']) : '';
$data = stripcslashes($data);
$signature = ( isset($_REQUEST['Signature']) ) ? $_REQUEST['Signature'] : '';
if($this->is_use_signature_notify) {
if($signature == $this->compute_signature_from_json($data, $this->secret_key_notify))
$this->notify_success($data);
else
$this->notify_fail($data, $signature, $this->compute_signature_from_json($data, $this->secret_key_notify), $this->secret_key_notify);
} else
$this->notify_success($data);
}
$this->log_info('check_ipn_response', 'End (Get notify from server); REQUEST METHOD - ' . $_SERVER['REQUEST_METHOD']);
die();
}
private function notify_success($dataJSON) {
global $woocommerce;
try {
$data = json_decode($dataJSON);
} catch(Exception $e) {
$this->log_error('notify_success', "Fail to parse the server response; RESPONSE - " . $dataJSON);
$this->notify_fail($dataJSON);
}
$order = new WC_Order($data->AccountNo);
if(isset($data->CmdType)) {
switch ($data->CmdType) {
case '1':
$order->update_status('pending_payment', __('Счет ожидает оплаты', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Счет ожидает оплаты; RESPONSE - ' . $dataJSON);
break;
case '2':
$order->update_status('cancelled', __('Платеж отменён', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Платеж отменён; RESPONSE - '. $dataJSON);
break;
case '3':
if($data->Status == '1'){
$order->update_status('pending_payment', __('Счет ожидает оплаты', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Счет ожидает оплаты; RESPONSE - '. $dataJSON);
}
elseif($data->Status == '2'){
$order->update_status('cancelled', __('Счет просрочен', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Счет просрочен; RESPONSE - '. $dataJSON);
}
elseif($data->Status == '3'){
$order->update_status('processing', __('Счет оплачен', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Счет оплачен; RESPONSE - '. $dataJSON);
}
elseif($data->Status == '5'){
$order->update_status('cancelled', __('Счет отменен', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Счет отменен; RESPONSE - '. $dataJSON);
}
elseif($data->Status == '6'){
$order->update_status('processing', __('Счет оплачен картой', 'wordpress_epos_expresspay'));
$this->log_info('notify_success', 'Initialization to update status. STATUS ID - Счет оплачен картой; RESPONSE - '. $dataJSON);
}
break;
default:
$this->notify_fail($dataJSON);
die();
}
header("HTTP/1.0 200 OK");
echo 'SUCCESS';
} else
$this->notify_fail($dataJSON);
}
private function notify_fail($dataJSON, $signature='', $computeSignature='', $secret_key='') {
$this->log_error('notify_fail', "Fail to update status; RESPONSE - " . $dataJSON . ', signature - ' . $signature . ', Compute signature - '. $computeSignature . ', secret key - ' . $secret_key);
header("HTTP/1.0 400 Bad Request");
echo 'FAILED | Incorrect digital signature';
}
private function compute_signature_from_json($json, $secret_word) {
$hash = NULL;
$secret_word = trim($secret_word);
if(empty($secret_word))
$hash = strtoupper(hash_hmac('sha1', $json, ""));
else
$hash = strtoupper(hash_hmac('sha1', $json, $secret_word));
return $hash;
}
private function compute_signature($request_params, $secret_word, $method = 'add_invoice') {
$secret_word = trim($secret_word);
$normalized_params = array_change_key_case($request_params, CASE_LOWER);
$api_method = array(
'add_invoice' => array(
"serviceid",
"accountno",
"amount",
"currency",
"expiration",
"info",
"surname",
"firstname",
"patronymic",
"city",
"street",
"house",
"building",
"apartment",
"isnameeditable",
"isaddresseditable",
"isamounteditable",
"emailnotification",
"smsphone",
"returntype",
"returnurl",
"failurl"),
'get_qr_code' => array(
"invoiceid",
"viewtype",
"imagewidth",
"imageheight")
);
$result = $this->token;
foreach ($api_method[$method] as $item)
$result .= ( isset($normalized_params[$item]) ) ? $normalized_params[$item] : '';
$this->log_info('compute_signature', 'RESULT - ' . $result);
$hash = strtoupper(hash_hmac('sha1', $result, $secret_word));
return $hash;
}
private function log_error_exception($name, $message, $e) {
$this->log($name, "ERROR" , $message . '; EXCEPTION MESSAGE - ' . $e->getMessage() . '; EXCEPTION TRACE - ' . $e->getTraceAsString());
}
private function log_error($name, $message) {
$this->log($name, "ERROR" , $message);
}
private function log_info($name, $message) {
$this->log($name, "INFO" , $message);
}
private function log($name, $type, $message)
{
$log_url = wp_upload_dir();
$log_url = $log_url['basedir'] . "/erip_expresspay";
if(!file_exists($log_url))
{
$is_created = mkdir($log_url, 0777);
if(!$is_created)
return;
}
$log_url .= '/express-pay-' . date('Y.m.d') . '.log';
file_put_contents($log_url, $type . " - IP - " . $_SERVER['REMOTE_ADDR'] . "; DATETIME - " .date("Y-m-d H:i:s"). "; USER AGENT - " . $_SERVER['HTTP_USER_AGENT'] . "; FUNCTION - " . $name . "; MESSAGE - " . $message . ';' . PHP_EOL, FILE_APPEND);
}
}
}
?>