forked from jorgehs91/magento2-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPagarmeConfigProvider.php
254 lines (223 loc) · 6.77 KB
/
PagarmeConfigProvider.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
namespace Pagarme\Pagarme\Model;
use Magento\Checkout\Model\ConfigProviderInterface;
use Magento\Framework\App\Config\ConfigResource\ConfigInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Store\Model\ScopeInterface;
use Pagarme\Pagarme\Gateway\Transaction\Base\Config\ConfigInterface as PagarmeConfigInterface;
/**
* Class PagarmeConfigProvider
*
* @package Pagarme\Pagarme\Model
*/
class PagarmeConfigProvider implements ConfigProviderInterface
{
/**
* Contains if the module is active or not
*/
const XML_PATH_IS_GATEWAY_INTEGRATION_TYPE = 'pagarme_pagarme/global/is_gateway_integration_type';
const XML_PATH_IS_ENABLE_SAVED_CARDS = 'payment/pagarme_creditcard/enabled_saved_cards';
const XML_PATH_SOFT_DESCRIPTION = 'payment/pagarme_creditcard/soft_description';
const XML_PATH_MAX_INSTALLMENT = 'payment/pagarme_creditcard/installments_number';
const XML_PATH_ACTIVE = 'pagarme_pagarme/global/active';
const XML_PATH_VOUCHER_ACTIVE = 'payment/pagarme_voucher/active';
const XML_PATH_DEBIT_ACTIVE = 'payment/pagarme_debit/active';
const XML_PATH_RECURRENCE_ACTIVE = 'pagarme_pagarme/recurrence/active';
const XML_PATH_ANTIFRAUD_ACTIVE = 'payment/pagarme_creditcard/antifraud_active';
const PATH_CUSTOMER_STREET = 'payment/pagarme_customer_address/street_attribute';
const PATH_CUSTOMER_NUMBER = 'payment/pagarme_customer_address/number_attribute';
const PATH_CUSTOMER_COMPLEMENT = 'payment/pagarme_customer_address/complement_attribute';
const PATH_CUSTOMER_DISTRICT = 'payment/pagarme_customer_address/district_attribute';
/**
* Contains scope config of Magento
*
* @var \Magento\Framework\App\Config\ScopeConfigInterface
*/
protected $scopeConfig;
/**
* Contains the configurations
*
* @var ConfigInterface
*/
protected $config;
/** @var PagarmeConfigInterface */
private $pagarmeConfig;
/**
* @param PagarmeConfigInterface $pagarmeConfig
* @param ScopeConfigInterface $scopeConfig
* @param ConfigInterface $config
*/
public function __construct(
PagarmeConfigInterface $pagarmeConfig,
ScopeConfigInterface $scopeConfig,
ConfigInterface $config
) {
$this->scopeConfig = $scopeConfig;
$this->config = $config;
$this->pagarmeConfig = $pagarmeConfig;
}
/**
* Returns the soft_description configuration
*
* @return string
*/
public function getSoftDescription()
{
return $this->scopeConfig->getValue(
self::XML_PATH_SOFT_DESCRIPTION,
ScopeInterface::SCOPE_STORE
);
}
public function getMaxInstallment()
{
return $this->scopeConfig->getValue(
self::XML_PATH_MAX_INSTALLMENT,
ScopeInterface::SCOPE_STORE
);
}
public function isGatewayIntegrationType()
{
return $this->scopeConfig->getValue(
self::XML_PATH_IS_GATEWAY_INTEGRATION_TYPE,
ScopeInterface::SCOPE_STORE
);
}
public function validateSoftDescription()
{
$isGatewayIntegrationType = $this->isGatewayIntegrationType();
$softDescription = $this->getSoftDescription();
$maxSizeForGateway = 22;
$maxSizeForPSP = 13;
if (
$isGatewayIntegrationType
&& strlen($softDescription) > $maxSizeForGateway
) {
$newResult = substr($softDescription, 0, $maxSizeForGateway);
$this->config->saveConfig(
self::XML_PATH_SOFT_DESCRIPTION,
$newResult,
'default',
0
);
return false;
}
if (
!$isGatewayIntegrationType
&& strlen($softDescription) > $maxSizeForPSP
) {
$newResult = substr($softDescription, 0, $maxSizeForPSP);
$this->config->saveConfig(
self::XML_PATH_SOFT_DESCRIPTION,
$newResult,
'default',
0
);
return false;
}
return true;
}
public function validateMaxInstallment()
{
$isGatewayIntegrationType = $this->isGatewayIntegrationType();
$maxInstallment = $this->getMaxInstallment();
$maxInstallmentForPSP = 12;
if (
!$isGatewayIntegrationType
&& $maxInstallment > $maxInstallmentForPSP
) {
$this->config->saveConfig(
self::XML_PATH_MAX_INSTALLMENT,
$maxInstallmentForPSP,
'default',
0
);
return false;
}
return true;
}
/**
* Returns the soft_description configuration
*
* @return string
*/
public function getModuleStatus()
{
return
$this->scopeConfig->getValue(
self::XML_PATH_ACTIVE,
ScopeInterface::SCOPE_STORE
);
}
public function getCustomerAddressConfiguration()
{
$street = $this->scopeConfig->getValue(
self::PATH_CUSTOMER_STREET,
ScopeInterface::SCOPE_STORE
);
$number = $this->scopeConfig->getValue(
self::PATH_CUSTOMER_NUMBER,
ScopeInterface::SCOPE_STORE
);
$district = $this->scopeConfig->getValue(
self::PATH_CUSTOMER_DISTRICT,
ScopeInterface::SCOPE_STORE
);
return [
'street' => $street,
'number' => $number,
'district' => $district
];
}
public function disableVoucher()
{
$this->config->saveConfig(
self::XML_PATH_VOUCHER_ACTIVE,
0,
'default',
0
);
}
public function disableDebit()
{
$this->config->saveConfig(
self::XML_PATH_DEBIT_ACTIVE,
0,
'default',
0
);
}
public function disableRecurrence()
{
$this->config->saveConfig(
self::XML_PATH_RECURRENCE_ACTIVE,
0,
'default',
0
);
}
public function disableAntifraud()
{
$this->config->saveConfig(
self::XML_PATH_ANTIFRAUD_ACTIVE,
0,
'default',
0
);
}
public function disableSavedCard()
{
$this->config->saveConfig(
self::XML_PATH_IS_ENABLE_SAVED_CARDS,
0,
'default',
0
);
}
/**
* @return array
*/
public function getConfig(): array
{
return ['pagarme_is_sandbox_mode' => $this->pagarmeConfig->isSandboxMode()] ;
}
}