-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRepaymentResolver.php
44 lines (37 loc) · 1.41 KB
/
RepaymentResolver.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
<?php
namespace PayU\PaymentGateway\Model;
use Magento\Sales\Api\OrderRepositoryInterface;
use PayU\PaymentGateway\Api\PayUConfigInterface;
use PayU\PaymentGateway\Api\RepaymentResolverInterface;
use PayU\PaymentGateway\Model\Ui\CardConfigProvider;
use PayU\PaymentGateway\Model\Ui\ConfigProvider;
use PayU\PaymentGateway\Observer\AfterPlaceOrderObserver;
class RepaymentResolver implements RepaymentResolverInterface
{
private PayUConfigInterface $payUConfig;
private OrderRepositoryInterface $orderRepository;
public function __construct(PayUConfigInterface $payUConfig, OrderRepositoryInterface $orderRepository)
{
$this->payUConfig = $payUConfig;
$this->orderRepository = $orderRepository;
}
/**
* {@inheritdoc}
*/
public function isRepayment(int $orderId): bool
{
$order = $this->orderRepository->get($orderId);
$payment = $order->getPayment();
return in_array($payment->getMethod(), [ConfigProvider::CODE, CardConfigProvider::CODE]) &&
$order->getStatus() === AfterPlaceOrderObserver::STATUS_PENDING &&
$this->payUConfig->isRepaymentActive($payment->getMethod());
}
/**
* {@inheritdoc}
*/
public function isAnyRepaymentEnabled(): bool
{
return $this->payUConfig->isRepaymentActive(ConfigProvider::CODE)
|| $this->payUConfig->isRepaymentActive(CardConfigProvider::CODE);
}
}