Files

84 lines
2.5 KiB
PHP
Raw Permalink Normal View History

2026-02-14 19:34:54 +03:00
<?php
require_once('api/Simpla.php');
class Best2Pay extends Simpla
{
public function checkout_form($order_id, $button_text = null)
{
// Код валюты в Best2Pay
$currency = '643';
if(empty($button_text))
$button_text = 'Перейти к оплате';
$order = $this->orders->get_order((int)$order_id);
$payment_method = $this->payment->get_payment_method($order->payment_method_id);
$payment_settings = $this->payment->get_payment_settings($payment_method->id);
$price = $this->money->convert($order->total_price, $payment_method->currency_id, false);
$success_url = $this->config->root_url.'/order/'.$order->url;
// регистрационная информация (логин, пароль #1)
// registration info (login, password #1)
$sector = $payment_settings['sector'];
// номер заказа
// number of order
$id = $order->id;
$password = $payment_settings['password'];
// адрес api
if($payment_settings['mode'] == 'test')
$best2pay_url = "https://test.best2pay.net";
else
$best2pay_url = "https://pay.best2pay.net";
// описание заказа
// order description
$desc = 'Оплата заказа №'.$id;
// формирование подписи
// generate signature
$signature = base64_encode(md5($sector.($price*100).$currency.$password));
// Регистрируем заказ
$url = $best2pay_url.'/webapi/Register';
$data = array(
'sector' => $sector,
'reference' => $id,
'amount' => $price*100,
'description' => $desc,
'email' => htmlspecialchars($order->email,ENT_QUOTES),
'currency' => $currency,
'mode' => 1,
'url' => $success_url,
'signature' => $signature
);
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data),
),
);
$context = stream_context_create($options);
$best2pay_id = file_get_contents($url, false, $context);
if(intval($best2pay_id)==0)
$button_text = $best2pay_id;
$signature = base64_encode(md5($sector.$best2pay_id.$password));
$button = "<form accept-charset='utf8' action='".$best2pay_url."/webapi/Purchase' method=POST>".
"<input type=hidden name=sector value='$sector'>".
"<input type=hidden name=id value='$best2pay_id'>".
"<input type=hidden name=signature value='$signature'>".
"<input type=submit class=checkout_button value='$button_text'>".
"</form>";
return $button;
}
}