-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRepayOrder.php
100 lines (91 loc) · 4.28 KB
/
RepayOrder.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
namespace PayU\PaymentGateway\Model;
use Magento\Sales\Api\Data\OrderInterface;
use Magento\Sales\Api\Data\OrderPaymentInterface;
use Magento\Sales\Api\Data\TransactionInterface;
use Magento\Sales\Api\Data\TransactionInterfaceFactory;
use Magento\Sales\Api\OrderPaymentRepositoryInterface;
use Magento\Sales\Api\OrderRepositoryInterface;
use Magento\Sales\Api\TransactionRepositoryInterface;
use PayU\PaymentGateway\Api\PayUConfigInterface;
use PayU\PaymentGateway\Api\PayURepayOrderInterface;
/**
* Class RepayOrder
* @package PayU\PaymentGateway\Model
*/
class RepayOrder implements PayURepayOrderInterface
{
private TransactionInterfaceFactory $transactionFactory;
private TransactionRepositoryInterface $transactionRepository;
private OrderPaymentRepositoryInterface $paymentRepository;
private OrderRepositoryInterface $orderRepository;
public function __construct(
TransactionInterfaceFactory $transactionFactory,
TransactionRepositoryInterface $transactionRepository,
OrderPaymentRepositoryInterface $paymentRepository,
OrderRepositoryInterface $orderRepository
)
{
$this->transactionFactory = $transactionFactory;
$this->transactionRepository = $transactionRepository;
$this->paymentRepository = $paymentRepository;
$this->orderRepository = $orderRepository;
}
public function execute(OrderInterface $order, string $method, string $payUMethodType, string $payUMethod, array $payuBrowser, string $transactionId): void
{
$payment = $order->getPayment();
$newPayment = $this->makeNewPayment(
$payment,
$order->getEntityId(),
$method,
$payUMethod,
$payUMethodType,
$payuBrowser,
$transactionId
);
$this->addPaymentToOrder($order, $newPayment, $transactionId);
$this->addTransactionToPayment($newPayment, $order->getEntityId(), $transactionId);
}
private function addPaymentToOrder(OrderInterface $order, OrderPaymentInterface $payment, string $transactionId): void
{
$order->setPayment($payment);
$order->addCommentToStatusHistory(
__(
'Authorized amount of %1. Transaction ID: "%2"',
$payment->formatPrice($payment->getAmountAuthorized()),
$transactionId
)
)->setIsCustomerNotified(
false
);
$this->orderRepository->save($order);
}
private function addTransactionToPayment(OrderPaymentInterface $payment, int $orderId, string $transactionId): void
{
$paymentTransaction = $this->transactionFactory->create();
$paymentTransaction->setOrderId($orderId);
$paymentTransaction->setPaymentId($payment->getEntityId());
$paymentTransaction->setTxnId($transactionId);
$paymentTransaction->setTxnType(TransactionInterface::TYPE_AUTH);
$paymentTransaction->setIsClosed(0);
$this->transactionRepository->save($paymentTransaction);
}
private function makeNewPayment(OrderPaymentInterface $payment, int $orderId, string $method, string $payUMethodType, string $payUMethod, array $payuBrowser, string $transactionId): OrderPaymentInterface
{
$newPayment = $this->paymentRepository->create();
$newPayment->setMethod($method);
$newPayment->setParentId($orderId);
$newPayment->setBaseAmountAuthorized($payment->getBaseAmountAuthorized());
$newPayment->setBaseShippingAmount($payment->getBaseShippingAmount());
$newPayment->setShippingAmount($payment->getShippingAmount());
$newPayment->setAmountAuthorized($payment->getAmountAuthorized());
$newPayment->setBaseAmountOrdered($payment->getBaseAmountOrdered());
$newPayment->setAmountOrdered($payment->getAmountOrdered());
$newPayment->setAdditionalInformation(PayUConfigInterface::PAYU_METHOD_CODE, $payUMethod);
$newPayment->setAdditionalInformation(PayUConfigInterface::PAYU_METHOD_TYPE_CODE, $payUMethodType);
$newPayment->setAdditionalInformation('method_title', 'PayU');
$newPayment->setAdditionalInformation('payu_browser', $payuBrowser);
$newPayment->setLastTransId($transactionId);
return $this->paymentRepository->save($newPayment);
}
}