-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGetPayMethods.php
187 lines (167 loc) · 4.91 KB
/
GetPayMethods.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
namespace PayU\PaymentGateway\Model;
use PayU\PaymentGateway\Api\PayUGetPayMethodsInterface;
use PayU\PaymentGateway\Api\PayUConfigInterface;
use PayU\PaymentGateway\Api\GetAvailableLocaleInterface;
use PayU\PaymentGateway\Model\Logger\Logger;
use PayU\PaymentGateway\Model\Ui\CardConfigProvider;
use PayU\PaymentGateway\Model\Ui\ConfigProvider;
use Magento\Store\Model\StoreManagerInterface;
use Magento\Payment\Gateway\Config\Config as GatewayConfig;
/**
* Class GetPayMethods
* @package PayU\PaymentGateway\Model
*/
class GetPayMethods implements PayUGetPayMethodsInterface
{
/**
* @var \OpenPayU_Retrieve
*/
private $openPayURetrieve;
/**
* @var PayUConfigInterface
*/
private $payUConfig;
/**
* @var GetAvailableLocaleInterface
*/
private $availableLocale;
/**
* @var GatewayConfig
*/
private $gatewayConfig;
/**
* @var int
*/
private $storeId;
/**
* @var Logger
*/
private $logger;
/**
* @var array
*/
private $result = [];
/**
* GetPayMethods constructor.
*
* @param \OpenPayU_Retrieve $openPayURetrieve
* @param PayUConfigInterface $payUConfig
* @param GetAvailableLocaleInterface $availableLocale
* @param GatewayConfig $gatewayConfig
* @param StoreManagerInterface $storeManager
* @param Logger $logger
*/
public function __construct(
\OpenPayU_Retrieve $openPayURetrieve,
PayUConfigInterface $payUConfig,
GetAvailableLocaleInterface $availableLocale,
GatewayConfig $gatewayConfig,
StoreManagerInterface $storeManager,
Logger $logger
) {
$this->openPayURetrieve = $openPayURetrieve;
$this->payUConfig = $payUConfig;
$this->availableLocale = $availableLocale;
$this->gatewayConfig = $gatewayConfig;
$this->storeId = $storeManager->getStore()->getId();
$this->logger = $logger;
}
/**
* {@inheritdoc}
*/
public function execute(string $code): array
{
try {
$this->payUConfig->setDefaultConfig($code);
$payURetrive = $this->openPayURetrieve;
$response = $payURetrive::payMethods($this->availableLocale->execute())->getResponse();
if (is_array($response->payByLinks)) {
$this->result =
$this->sortPaymentMethods($response->payByLinks, $this->payUConfig->getPaymentMethodsOrder());
$this->gatewayConfig->setMethodCode(CardConfigProvider::CODE);
if ((bool)$this->gatewayConfig->getValue('active', $this->storeId)) {
$this->removeCreditCard();
}
$this->removeTestPayment();
} else {
$this->result = [];
}
} catch (\OpenPayU_Exception $exception) {
$this->logger->critical($exception->getMessage());
$this->result = [];
}
$paymethods = [];
foreach ($this->result as $paymethod) {
$paymethods[] = $paymethod;
}
return $paymethods;
}
/**
* Sort Payment Methods
*
* @param array $paymentMethods
* @param array $paymentMethodsOrder
*
* @return array
*/
private function sortPaymentMethods($paymentMethods, $paymentMethodsOrder)
{
if (count($paymentMethodsOrder) < 1) {
return $paymentMethods;
}
array_walk(
$paymentMethods,
function ($item, $key, $paymentMethodsOrder) {
if (array_key_exists($item->value, $paymentMethodsOrder)) {
$item->sort = $paymentMethodsOrder[$item->value];
} else {
$item->sort = $key + 100;
}
},
array_flip($paymentMethodsOrder)
);
usort(
$paymentMethods,
function ($a, $b) {
return $a->sort - $b->sort;
}
);
return $paymentMethods;
}
/**
* Remove credit card from pay by links response
*
* @return void
*/
private function removeCreditCard()
{
$this->result = array_filter(
$this->result,
function ($payByLink) {
return $payByLink->value !== PayUGetPayMethodsInterface::CREDIT_CARD_CODE;
}
);
}
/**
* Remove test payment when disabled
*
* @return void
*/
private function removeTestPayment()
{
$this->result = array_filter(
$this->result,
function ($payByLink) {
return !($payByLink->value === PayUGetPayMethodsInterface::TEST_PAYMENT_CODE && $payByLink->status !== PayUGetPayMethodsInterface::PAYMETHOD_STATUS_ENABLED);
}
);
}
/**
* {@inheritdoc}
*/
public function toJson()
{
return json_encode($this->result);
}
}