-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRepayOrderResolverAbstract.php
69 lines (55 loc) · 2.52 KB
/
RepayOrderResolverAbstract.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
<?php
namespace PayU\PaymentGateway\Model;
use Magento\Payment\Gateway\Command\CommandPoolInterface;
use Magento\Sales\Api\Data\OrderInterface;
use PayU\PaymentGateway\Api\PayUConfigInterface;
use PayU\PaymentGateway\Api\RepayOrderResolverInterface;
use PayU\PaymentGateway\Gateway\Validator\AbstractResponseValidator;
abstract class RepayOrderResolverAbstract implements RepayOrderResolverInterface
{
/**
* Result Success key
*/
const SUCCESS_FIELD = 'success';
/**
* Order ID params
*/
const ORDER_ID = 'order_id';
private CommandPoolInterface $commandPool;
public function __construct(
CommandPoolInterface $commandPool
)
{
$this->commandPool = $commandPool;
}
public function execute(OrderInterface $order, string $method, string $payUMethod, string $payUMethodType, array $payuBrowser): array
{
$commandSubject = [
'method' => $method,
'order' => $order,
'payuBrowser' => $payuBrowser
];
if (!empty($payUMethod) && !empty($payUMethodType)) {
$commandSubject[PayUConfigInterface::PAYU_METHOD_CODE] = $payUMethod;
$commandSubject[PayUConfigInterface::PAYU_METHOD_TYPE_CODE] = $payUMethodType;
}
$this->commandPool->get('repay')->execute($commandSubject);
$returnData = [static::SUCCESS_FIELD => true];
$paymentInformation = $order->getPayment()->getAdditionalInformation();
$statusCode = $paymentInformation[PayUConfigInterface::PAYU_RESPONSE_STATUS];
if (array_key_exists(PayUConfigInterface::PAYU_REDIRECT_URI_CODE, $paymentInformation) &&
($statusCode === \OpenPayU_Order::SUCCESS || $statusCode === AbstractResponseValidator::WARNING_CONTINUE_3_DS)) {
$returnData[PayUConfigInterface::REDIRECT_URI_FIELD] = $paymentInformation[PayUConfigInterface::PAYU_REDIRECT_URI_CODE];
} elseif ($statusCode === AbstractResponseValidator::WARNING_CONTINUE_CVV) {
$this->customerSession->setCvvUrl($paymentInformation[PayUConfigInterface::PAYU_REDIRECT_URI_CODE]);
$returnData[PayUConfigInterface::REDIRECT_URI_FIELD] = $this->urlBuilder->getUrl(
'sales/order/continueCvv',
[static::ORDER_ID => $order->getEntityId()]
);
} else {
$returnData[PayUConfigInterface::REDIRECT_URI_FIELD] =
$this->urlBuilder->getUrl('sales/order/view', [static::ORDER_ID => $order->getEntityId()]);
}
return $returnData;
}
}