PHP code example of akhur / yii2-alfapay
1. Go to this page and download the library: Download akhur/yii2-alfapay library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
akhur / yii2-alfapay example snippets
[
'components' => [
'alfapay' => [
'class' => 'akhur\alfapay\Merchant',
'sessionTimeoutSecs' => 60 * 60 * 24 * 7,
'merchantLogin' => '',
'merchantPassword' => '',
'orderModel' => '', //модель таблицы заказов
'suffix' => '', //суфикс для номера заказа, чтобы не было дублей
'isTest' => false,
'registerPreAuth' => false,
'returnUrl' => '/payment/result-payment', //страница обработки
'failUrl' => '/payment/error-payment', //страница ошибки
],
//..
],
];
php composer.phar
class PaymentController extends \yii\web\Controller
{
/**
* @inheritdoc
*/
public function actions()
{
return [
'result-payment' => [
'class' => '\akhur\alfapay\actions\BaseAction',
'callback' => [$this, 'resultCallback'],
],
'error-payment' => [
'class' => '\akhur\alfapay\actions\BaseAction',
'callback' => [$this, 'failCallback'],
],
];
}
public function resultCallback($orderId)
{
/* @var $model AlfapayInvoice */
$model = AlfapayInvoice::findOne(['orderId' => $orderId]);
if (is_null($model)) {
throw new NotFoundHttpException();
}
$merchant = \Yii::$app->get('alfapay');
$result = $merchant->checkStatus($orderId);
//Проверяем статус оплаты если всё хорошо обновим инвойс и редерекним
if (isset($result['OrderStatus']) && ($result['OrderStatus'] != $merchant->successStatus)) {
//обработка при успешной оплате $model->orderNumber номер заказа в вашей системе
echo 'ok';
} else {
$this->redirect($merchant->failUrl.'?orderId=' . $orderId);
}
}
public function failCallback($orderId)
{
/* @var $model AlfapayInvoice */
$model = AlfapayInvoice::findOne(['orderId' => $orderId]);
if (is_null($model)) {
throw new NotFoundHttpException();
}
//вывод страницы ошибки $model->orderNumber номер заказа в вашей системе
echo 'error payment';
}
}