1
0
mirror of synced 2024-11-22 21:36:10 +03:00
bitrix-module/intaro.retailcrm/lib/controller/loyalty/order.php
Сергей Чазов 34e8105583
Loyalty (#241)
* Loyalty program
* fix dot bug for shops-exoprt option
* delete credantials request from services
* add CurlException for credentials catch
* add catching CurlException
* edit error msgs
* add supportind double bonuses
* add any step for bonus-input field in sale.order.ajax template
* recalculate bonuses
* fix bonus rounded
* strtoupper for params in icml
* change delivery service code
2022-03-02 15:40:53 +03:00

154 lines
4.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* PHP version 7.1
*
* @category Integration
* @package Intaro\RetailCrm\Controller\Loyalty
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Controller\Loyalty;
use Bitrix\Main\Engine\ActionFilter\Authentication;
use Bitrix\Main\Engine\ActionFilter\HttpMethod;
use Bitrix\Main\Engine\Controller;
use Bitrix\Sale\Order as BitrixOrder;
use Intaro\RetailCrm\Component\ServiceLocator;
use Intaro\RetailCrm\Model\Api\Response\Loyalty\LoyaltyCalculateResponse;
use Intaro\RetailCrm\Service\LoyaltyService;
use Intaro\RetailCrm\Service\LoyaltyAccountService;
use Intaro\RetailCrm\Service\OrderLoyaltyDataService;
use Intaro\RetailCrm\Service\Utils;
use RetailCrmOrder;
/**
* Class Order
*
* @package Intaro\RetailCrm\Controller\Loyalty
*/
class Order extends Controller
{
/**
* Возвращает результат расчета привилегий программы лояльности
*
* @param array $basketItems
* @param float|int $inputBonuses
*
* @return \Intaro\RetailCrm\Model\Api\Response\Loyalty\LoyaltyCalculateResponse|null
*/
public function loyaltyCalculateAction(array $basketItems, float $inputBonuses = 0): ?LoyaltyCalculateResponse
{
/** @var LoyaltyService $service */
$service = ServiceLocator::get(LoyaltyService::class);
$response = $service->getLoyaltyCalculate($basketItems, $inputBonuses);
if ($response instanceof LoyaltyCalculateResponse) {
if ($response->success && count($response->order->items) > 0) {
return $response;
}
Utils::handleApiErrors($response);
}
return null;
}
/**
* Отправляет код верификации из смс в систему
*
* @param string $verificationCode Проверочный код
* @param int $orderId id заказа
* @param string $checkId Идентификатор проверки кода
* @return array
*/
public function sendVerificationCodeAction(string $verificationCode, int $orderId, string $checkId): array
{
/** @var LoyaltyAccountService $service */
$service = ServiceLocator::get(LoyaltyAccountService::class);
$response = $service->confirmVerification($verificationCode, $checkId);
if ($response !== null && isset($response->errorMsg) && !empty($response->errorMsg)) {
return [
'status' => 'error',
'msg' => 'Ошибка. ' . $response->errorMsg,
'msgColor' => 'brown',
];
}
if ($response !== null
&& $response->success
&& isset($response->verification->verifiedAt)
&& !empty($response->verification->verifiedAt)
) {
/** @var LoyaltyService $loyaltyService */
$loyaltyService = ServiceLocator::get(LoyaltyService::class);
/** @var OrderLoyaltyDataService $orderLoyaltyDataService */
$orderLoyaltyDataService = ServiceLocator::get(OrderLoyaltyDataService::class);
$loyaltyService->setDebitedStatus($orderId, true);
$orderLoyaltyDataService->updateOrderFromCrm($orderId);
return [
'status' => 'success',
'msg' => GetMessage('BONUS_SUCCESS'),
'msgColor' => 'green',
];
}
return [
'status' => 'error',
'msg' => GetMessage('BONUS_ERROR'),
'msgColor' => 'brown',
];
}
/**
* Повторно отправляет смс с кодом верификации клиенту
*
* @param int $orderId id заказа
* @return \Intaro\RetailCrm\Model\Bitrix\SmsCookie|array
*/
public function resendOrderSmsAction(int $orderId)
{
/** @var LoyaltyService $service */
$service = ServiceLocator::get(LoyaltyService::class);
$result = $service->resendBonusPayment($orderId);
if ($result === true) {
return ['msg' => GetMessage('BONUS_SUCCESS')];
}
if ($result === false) {
return ['msg' => GetMessage('BONUS_ERROR')];
}
return $result;
}
/**
* @return \array[][]
*/
public function configureActions(): array
{
return [
'sendSms' => [
'-prefilters' => [
new Authentication,
new HttpMethod(['GET']),
],
],
'resendOrderSms' => [
'-prefilters' => [
new Authentication,
new HttpMethod(['POST']),
],
],
];
}
}