-
Notifications
You must be signed in to change notification settings - Fork 6
/
WirecardElasticEngine.php
298 lines (271 loc) · 8.82 KB
/
WirecardElasticEngine.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?php
/**
* Shop System Plugins:
* - Terms of Use can be found under:
* https://github.com/wirecard/shopware-ee/blob/master/_TERMS_OF_USE
* - License can be found under:
* https://github.com/wirecard/shopware-ee/blob/master/LICENSE
*/
namespace WirecardElasticEngine;
// PSR1.Files.SideEffects is disabled for this file, see `phpcs.xml`
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once(__DIR__ . '/vendor/autoload.php');
}
use Shopware\Models\Config\Element;
use Shopware\Components\Plugin;
use Shopware\Components\Plugin\Context\ActivateContext;
use Shopware\Components\Plugin\Context\DeactivateContext;
use Shopware\Components\Plugin\Context\InstallContext;
use Shopware\Components\Plugin\Context\UninstallContext;
use Shopware\Components\Plugin\Context\UpdateContext;
use Shopware\Models\Payment\Payment;
use Shopware\Models\Plugin\Plugin as PluginModel;
use WirecardElasticEngine\Components\Services\PaymentFactory;
use WirecardElasticEngine\Models\CreditCardVault;
use WirecardElasticEngine\Models\Transaction;
use Doctrine\ORM\Tools\SchemaTool;
/**
* @package WirecardElasticEngine
*
* @since 1.0.0
*/
class WirecardElasticEngine extends Plugin
{
const NAME = 'WirecardElasticEngine';
/**
* @param InstallContext $context
*
* @throws Exception\UnknownPaymentException
*
* @since 1.0.0
*/
public function install(InstallContext $context)
{
$this->registerPayments($context->getPlugin());
$this->updateDatabase();
$this->setDefaultConfigValues();
}
/**
* @param UninstallContext $context
*
* @throws \Doctrine\ORM\OptimisticLockException
*
* @since 1.0.0
*/
public function uninstall(UninstallContext $context)
{
parent::uninstall($context);
$this->deactivatePayments($context->getPlugin());
}
/**
* @param UpdateContext $context
*
* @throws Exception\UnknownPaymentException
*
* @since 1.0.0
*/
public function update(UpdateContext $context)
{
parent::update($context);
$this->updatePayments($context->getPlugin());
$this->updateDatabase();
}
/**
* @param ActivateContext $context
*
* @since 1.0.0
*/
public function activate(ActivateContext $context)
{
parent::activate($context);
$context->scheduleClearCache(ActivateContext::CACHE_LIST_ALL);
}
/**
* @param DeactivateContext $context
*
* @throws \Doctrine\ORM\OptimisticLockException
*
* @since 1.0.0
*/
public function deactivate(DeactivateContext $context)
{
parent::deactivate($context);
$this->deactivatePayments($context->getPlugin());
$context->scheduleClearCache(DeactivateContext::CACHE_LIST_ALL);
}
/**
* Update database to latest plugin database schema.
*
* @since 1.0.0
*/
protected function updateDatabase()
{
$entityManager = $this->container->get('models');
$schemaTool = new SchemaTool($entityManager);
$schemaTool->updateSchema(
[
$entityManager->getClassMetadata(Transaction::class),
$entityManager->getClassMetadata(CreditCardVault::class),
],
true
);
}
/**
* Create or update wirecard payments. Existing payment option will be overwritten (on install).
*
* @param PluginModel $plugin
*
* @throws Exception\UnknownPaymentException
*
* @since 1.0.0
*/
protected function registerPayments(PluginModel $plugin)
{
$installer = $this->container->get('shopware.plugin_payment_installer');
$payments = [];
foreach ($this->getSupportedPayments() as $payment) {
$payments[] = $installer->createOrUpdate($plugin->getName(), $payment->getPaymentOptions());
}
if (! empty($payments)) {
$this->translatePayments($payments);
}
}
/**
* Create new wirecard payments. Existing payments remain unchanged (on update).
*
* @param PluginModel $plugin
*
* @throws Exception\UnknownPaymentException
*
* @since 1.0.0
*/
protected function updatePayments(PluginModel $plugin)
{
$installer = $this->container->get('shopware.plugin_payment_installer');
$payments = [];
foreach ($plugin->getPayments() as $payment) {
$payments[$payment->getName()] = $payment;
}
foreach ($this->getSupportedPayments() as $payment) {
if (isset($payments[$payment->getName()])) {
continue;
}
$payments[] = $installer->createOrUpdate($plugin->getName(), $payment->getPaymentOptions());
}
if (! empty($payments)) {
$this->translatePayments($payments);
}
}
/**
* Deactivate wirecard payments (on uninstall and plugin deactivation).
*
* @param PluginModel $plugin
*
* @throws \Doctrine\ORM\OptimisticLockException
*
* @since 1.0.0
*/
private function deactivatePayments(PluginModel $plugin)
{
foreach ($plugin->getPayments() as $payment) {
$payment->setActive(false);
}
$em = $this->container->get('models');
$em->flush();
}
/**
* Return wirecard payment instances.
*
* @return Components\Payments\PaymentInterface[]
* @throws Exception\UnknownPaymentException
*
* @since 1.0.0
*/
public function getSupportedPayments()
{
$paymentFactory = new PaymentFactory(
$this->container->get('models'),
$this->container->get('config'),
$this->container->get('shopware_plugininstaller.plugin_manager'),
$this->container->get('router'),
$this->container->get('events')
);
return $paymentFactory->getSupportedPayments();
}
/**
* Set default values for config options (Shopware does not allow to set default values for multiselects)
*
* @since 1.0.0
*/
private function setDefaultConfigValues()
{
$em = $this->container->get('models');
$defaults = [
'wirecardElasticEngineRatepayInvoiceAcceptedCurrencies' => [1], // EUR
'wirecardElasticEngineRatepayInvoiceShippingCountries' => [2, 23, 26], // DE, AT, CH
'wirecardElasticEngineRatepayInvoiceBillingCountries' => [2, 23, 26], // DE, AT, CH
];
foreach ($defaults as $name => $value) {
/** @var Element $element */
$element = $em->getRepository(Element::class)->findOneBy(['name' => $name]);
if ($element && $element->getValue() === '-') {
$element->setValue($value);
$em->flush();
}
}
}
/**
* Translate payment descriptions
*
* @param Payment[] $payments
*
* @throws \Exception
*/
private function translatePayments($payments)
{
$iniFile = dirname(__FILE__) . '/Resources/snippets/frontend/wirecard_elastic_engine/payments.ini';
$snippets = parse_ini_file($iniFile, true);
$db = Shopware()->Db();
try {
$shops = $db->select()
->from('s_core_shops', ['id', 'default'])
->joinInner('s_core_locales', '`s_core_shops`.`locale_id`=`s_core_locales`.`id`', 'locale')
->query()->fetchAll();
foreach ($shops as $shop) {
$locale = $shop['locale'];
foreach ($payments as $payment) {
if (! isset($snippets[$locale][$payment->getDescription()])) {
continue;
}
$this->updatePaymentTranslation(
$shop['id'],
$payment->getId(),
$snippets[$locale][$payment->getDescription()],
$shop['default']
);
}
}
} catch (\Exception $exception) {
throw new \Exception('Payment translation failed: ' . $exception->getMessage());
}
}
/**
* Update translation of payment description
*
* @param int $shopId
* @param int $paymentId
* @param string $description
* @param int $defaultShop
*
* @throws \Zend_Db_Adapter_Exception
*/
private function updatePaymentTranslation($shopId, $paymentId, $description, $defaultShop)
{
if ($defaultShop) {
Shopware()->Db()->update('s_core_paymentmeans', ['description' => $description], 'id=' . $paymentId);
return;
}
$translationObject = new \Shopware_Components_Translation();
$translationObject->write($shopId, 'config_payment', $paymentId, ['description' => $description], true);
}
}