forked from begateway/hostcms-payment-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlerXX.php
277 lines (220 loc) · 9.7 KB
/
handlerXX.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
<?php
/**
* beGateway
* Версия 2.0.0
*/
require_once CMS_FOLDER . 'hostcmsfiles/lib/beGateway/lib/beGateway.php';
class Shop_Payment_System_HandlerXX extends Shop_Payment_System_Handler
{
/* Идентификатор магазина */
private $_shop_id = '361';
/* Секретный ключ магазина */
private $_shop_key = 'b8647b68898b084b836474ed8d61ffe117c9a01168d867f24953b776ddcb134d';
/* Доступные способы оплаты */
private $_payment_methods = array('credit_card', 'erip');
/* Настройки способов оплаты */
private $_payment_methods_settings = array(
'erip' => array(
'service_no' => 99999999,
'service_info' => 'Оплата заказа %s'
)
);
/* Домен платежного шлюза, полученный от платежной системы */
private $_gateway_base = 'demo-gateway.begateway.com';
/* Домен страницы оплаты, полученный от платежной системы */
private $_checkout_base = 'checkout.begateway.com';
/* Идентификатор валюты, в которой будет производиться платеж.
Сумма к оплате будет пересчитана из валюты магазина в указанную валюту */
private $_begateway_currency_id = 1;
/* Определяем коэффициент перерасчета цены */
private $_coefficient = 1;
/* Скрывать блок данных покупателя на странице оплаты */
private $_hideAddress = TRUE;
/* Включить отладку запросов к платежной системе */
private $_debug = FALSE;
/* Конструктор */
public function __construct(Shop_Payment_System_Model $oShop_Payment_System_Model)
{
$this->_setupLogger();
\beGateway\Settings::$shopId = $this->_shop_id;
\beGateway\Settings::$shopKey = $this->_shop_key;
\beGateway\Settings::$gatewayBase = 'https://' . $this->_gateway_base;
\beGateway\Settings::$checkoutBase = 'https://' . $this->_checkout_base;
parent::__construct($oShop_Payment_System_Model);
}
/* Вызывается на 4-ом шаге оформления заказа*/
public function execute()
{
parent::execute();
$this->printNotification();
return $this;
}
protected function _processOrder()
{
parent::_processOrder();
// Установка XSL-шаблонов в соответствии с настройками в узле структуры
$this->setXSLs();
// Отправка писем клиенту и пользователю
$this->send();
return $this;
}
/* вычисление суммы товаров заказа */
public function getSumWithCoeff()
{
return Shop_Controller::instance()->round(($this->_begateway_currency_id > 0
&& $this->_shopOrder->shop_currency_id > 0
? Shop_Controller::instance()->getCurrencyCoefficientInShopCurrency(
$this->_shopOrder->Shop_Currency,
Core_Entity::factory('Shop_Currency', $this->_begateway_currency_id)
)
: 0) * $this->_shopOrder->getAmount() * $this->_coefficient);
}
/* обработка ответа от платёжной системы */
public function paymentProcessing()
{
/* Пришло подтверждение оплаты, обработаем его */
$this->ProcessResult();
return true;
}
/* оплачивает заказ */
function ProcessResult()
{
$webhook = new \beGateway\Webhook;
if (!$webhook->isAuthorized() ||
!$webhook->isSuccess() ||
$this->_shopOrder->paid ||
is_null($order_id = intval(Core_Array::getRequest('order_id'))) ||
$order_id != $webhook->getTrackingId() )
{
return FALSE;
}
$sum = $this->getSumWithCoeff();
$oShop_Currency = Core_Entity::factory('Shop_Currency')->find($this->_begateway_currency_id);
/* конвертировать RUR код в RUB */
$currency = $oShop_Currency->code;
$currency = ($currency == 'RUR') ? 'RUB' : $currency;
$money = new \beGateway\Money;
$money->setCurrency($currency);
$money->setAmount($sum);
if ($money->getCents() == $webhook->getResponse()->transaction->amount &&
$currency == $webhook->getResponse()->transaction->currency
)
{
$this->shopOrderBeforeAction(clone $this->_shopOrder);
$result = array(
"Товар оплачен.",
"Атрибуты:",
"Номер сайта продавца: " . $this->_shop_id,
"Внутренний номер покупки продавца: " . $this->_shopOrder->id,
"Сумма платежа: " . $sum,
"Валюта платежа: " . $oShop_Currency->code,
"UID платежа: " . $webhook->getUid(),
"Способ оплаты: " . $webhook->getPaymentMethod(),
"Статус платежа: успешно"
);
if (isset($webhook->getResponse()->transaction->three_d_secure_verification))
{
$result []= "3-D Secure: " . $webhook->getResponse()->transaction->three_d_secure_verification->pa_status;
}
$this->_shopOrder->system_information = implode($result,"\n");
$this->_shopOrder->paid();
$this->setXSLs();
$this->send();
ob_start();
$this->changedOrder('changeStatusPaid');
ob_get_clean();
}
}
/* печатает форму отправки запроса на сайт платёжной системы */
public function getNotification()
{
$sum = $this->getSumWithCoeff();
$oSite_Alias = $this->_shopOrder->Shop->Site->getCurrentAlias();
$site_alias = !is_null($oSite_Alias) ? $oSite_Alias->name : '';
$shop_path = $this->_shopOrder->Shop->Structure->getPath();
$shopUrl = 'http://'.$site_alias.$shop_path;
$handlerUrl = $shopUrl . "cart/?order_id={$this->_shopOrder->id}";
$successUrl = $handlerUrl . "&payment=success";
$failUrl = $handlerUrl . "&payment=fail";
$cancelUrl = $handlerUrl;
/* в режиме разработки переопределить домен для доставки нотификации о платеже */
$handlerUrl = str_replace('hostcms.local', 'hostcms.webhook.begateway.com:8443', $handlerUrl);
$oShop_Currency = Core_Entity::factory('Shop_Currency')->find($this->_begateway_currency_id);
if(!is_null($oShop_Currency->id))
{
$serviceName = 'Оплата счета N ' . $this->_shopOrder->id;
$this->_setupLogger();
$transaction = new \beGateway\GetPaymentToken;
/* конвертировать RUR код в RUB */
$currency = $oShop_Currency->code;
$currency = ($currency == 'RUR') ? 'RUB' : $currency;
$transaction->money->setCurrency($currency);
$transaction->money->setAmount($sum);
$transaction->setDescription($serviceName);
$transaction->setTrackingId($this->_shopOrder->id);
$transaction->setLanguage('ru');
$transaction->setNotificationUrl($handlerUrl . '&webhook=begateway');
$transaction->setSuccessUrl($successUrl);
$transaction->setDeclineUrl($failUrl);
$transaction->setFailUrl($cancelUrl);
$transaction->setCancelUrl($shopUrl);
foreach ($this->_payment_methods as $pm) {
$klass = $this->_camelize($pm);
$settings = NULL;
if (isset($this->_payment_methods_settings[$pm])) {
$settings = $this->_payment_methods_settings[$pm];
}
if ($pm == 'erip') {
$settings['account_number'] = (string)$this->_shopOrder->id;
$settings['order_id'] = (int)$this->_shopOrder->id;
$settings['service_info'][0] = sprintf($settings['service_info'][0], $this->_shopOrder->id);
}
$klass = "\beGateway\PaymentMethod\\" . $klass;
$transaction->addPaymentMethod(new $klass($settings));
}
if ($this->_shopOrder->email) $transaction->customer->setEmail($this->_shopOrder->email);
if ($this->_hideAddress) $transaction->setAddressHidden();
$response = $transaction->submit();
if ($response->isSuccess()) {
?>
<h1>Оплата заказа</h1>
<p>Сумма к оплате составляет <strong><?php echo $sum?> <?php echo $oShop_Currency->name?></strong></p>
<p>Для оплаты нажмите кнопку "Оплатить".</p>
<p style="color: rgb(112, 112, 112);">
Внимание! Нажимая «Оплатить» Вы подтверждаете передачу контактных данных на сервер платежной системы для оплаты.
</p>
<form action="<?php echo $response->getRedirectUrlScriptName(); ?>" name="pay" method="post">
<input type="hidden" name="token" value="<?php echo $response->getToken(); ?>">
<input type="submit" name="button" value="Оплатить">
</form>
<?php
} else {
?>
<h1>Ошибка создания идентификатора платежа</h1>
<p>Вернитесь назад и попробуйте еще раз</p>
<?php if ($response->getMessage()) echo "<p>Причина: " . $response->getMessage(); ?>
<?php
}
}
else
{
?><h1>Не найдена валюта с идентификатором <?php $this->_begateway_currency_id?>!</h1><?php
}
}
public function getInvoice()
{
return $this->getNotification();
}
private function _setupLogger()
{
if ($this->_debug) {
\beGateway\Logger::getInstance()->setLogLevel(\beGateway\Logger::DEBUG);
}
}
private function _camelize($name) {
$klass = str_replace('_', ' ', $name);
$klass = ucwords($klass);
$klass = str_replace(' ', '', $klass);
return $klass;
}
}