-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalizationPack.php
621 lines (538 loc) · 24.7 KB
/
LocalizationPack.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
<?php
/**
* 2007-2019 PrestaShop and Contributors
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://www.prestashop.com for more information.
*
* @author PrestaShop SA <[email protected]>
* @copyright 2007-2019 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
use PrestaShop\PrestaShop\Adapter\SymfonyContainer;
use PrestaShop\PrestaShop\Core\Addon\Module\ModuleManagerBuilder;
use PrestaShop\PrestaShop\Core\Localization\CLDR\LocaleRepository;
class LocalizationPackCore
{
public $name;
public $version;
protected $iso_code_lang;
protected $iso_currency;
protected $_errors = array();
/**
* Loads localization pack.
*
* @param SimpleXMLElement|string $pack Localization pack as SimpleXMLElement or plain XML string
* @param array $selection Content to import selection
* @param bool $install_mode Whether mode is installation or not
* @param string|null $iso_localization_pack Country Alpha-2 ISO code
*
* @return bool
*/
public function loadLocalisationPack($pack, $selection, $install_mode = false, $iso_localization_pack = null)
{
if ($pack instanceof SimpleXMLElement) {
$xml = $pack;
} elseif (!$xml = @simplexml_load_string($pack)) {
return false;
}
libxml_clear_errors();
$main_attributes = $xml->attributes();
$this->name = (string) $main_attributes['name'];
$this->version = (string) $main_attributes['version'];
if ($iso_localization_pack) {
$id_country = (int) Country::getByIso($iso_localization_pack);
if ($id_country) {
$country = new Country($id_country);
}
if (!$id_country || !Validate::isLoadedObject($country)) {
$this->_errors[] = Context::getContext()->getTranslator()->trans(
'Cannot load country: %d',
array($id_country),
'Admin.International.Notification'
);
return false;
}
if (!$country->active) {
$country->active = 1;
if (!$country->update()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans(
'Cannot enable the associated country: %s',
array($country->name),
'Admin.International.Notification'
);
}
}
}
$res = true;
if (empty($selection)) {
$res &= $this->_installStates($xml);
$res &= $this->_installTaxes($xml);
$res &= $this->_installCurrencies($xml, $install_mode);
$res &= $this->installConfiguration($xml);
$res &= $this->installModules($xml);
$res &= $this->updateDefaultGroupDisplayMethod($xml);
if (($res || $install_mode) && isset($this->iso_code_lang)) {
if (!($id_lang = (int) Language::getIdByIso($this->iso_code_lang, true))) {
$id_lang = 1;
}
if (!$install_mode) {
Configuration::updateValue('PS_LANG_DEFAULT', $id_lang);
}
} elseif (!isset($this->iso_code_lang) && $install_mode) {
$id_lang = 1;
}
if (!Language::isInstalled(Language::getIsoById($id_lang))) {
$res &= $this->_installLanguages($xml, $install_mode);
$res &= $this->_installUnits($xml);
}
if ($install_mode && $res && isset($this->iso_currency)) {
Cache::clean('Currency::getIdByIsoCode_*');
$res &= Configuration::updateValue('PS_CURRENCY_DEFAULT', (int) Currency::getIdByIsoCode($this->iso_currency));
Currency::refreshCurrencies();
}
} else {
foreach ($selection as $selected) {
// No need to specify the install_mode because if the selection mode is used, then it's not the install
$res &= Validate::isLocalizationPackSelection($selected) ? $this->{'_install' . $selected}($xml) : false;
}
}
return $res;
}
/**
* @param SimpleXMLElement $xml
*
* @return bool
*
* @throws PrestaShopException
*/
protected function _installStates($xml)
{
if (isset($xml->states->state)) {
foreach ($xml->states->state as $data) {
/** @var SimpleXMLElement $data */
$attributes = $data->attributes();
$id_country = ($attributes['country']) ? (int) Country::getByIso((string) ($attributes['country'])) : false;
$id_state = ($id_country) ? State::getIdByIso($attributes['iso_code'], $id_country) : State::getIdByName($attributes['name']);
if (!$id_state) {
$state = new State();
$state->name = (string) ($attributes['name']);
$state->iso_code = (string) ($attributes['iso_code']);
$state->id_country = $id_country;
$id_zone = (int) Zone::getIdByName((string) ($attributes['zone']));
if (!$id_zone) {
$zone = new Zone();
$zone->name = (string) $attributes['zone'];
$zone->active = true;
if (!$zone->add()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('Invalid Zone name.', array(), 'Admin.International.Notification');
return false;
}
$id_zone = $zone->id;
}
$state->id_zone = $id_zone;
if (!$state->validateFields()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('Invalid state properties.', array(), 'Admin.International.Notification');
return false;
}
$country = new Country($state->id_country);
if (!$country->contains_states) {
$country->contains_states = 1;
if (!$country->update()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('Cannot update the associated country: %s', array($country->name), 'Admin.International.Notification');
}
}
if (!$state->add()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while adding the state.', array(), 'Admin.International.Notification');
return false;
}
} else {
$state = new State($id_state);
if (!Validate::isLoadedObject($state)) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while fetching the state.', array(), 'Admin.International.Notification');
return false;
}
}
}
}
return true;
}
/**
* @param SimpleXMLElement $xml
*
* @return bool
*
* @throws PrestaShopException
*/
protected function _installTaxes($xml)
{
if (isset($xml->taxes->tax)) {
$assoc_taxes = array();
foreach ($xml->taxes->tax as $taxData) {
/** @var SimpleXMLElement $taxData */
$attributes = $taxData->attributes();
if (($id_tax = Tax::getTaxIdByName($attributes['name']))) {
$assoc_taxes[(int) $attributes['id']] = $id_tax;
continue;
}
$tax = new Tax();
$tax->name[(int) Configuration::get('PS_LANG_DEFAULT')] = (string) $attributes['name'];
$tax->rate = (float) $attributes['rate'];
$tax->active = 1;
if (($error = $tax->validateFields(false, true)) !== true || ($error = $tax->validateFieldsLang(false, true)) !== true) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('Invalid tax properties.', array(), 'Admin.International.Notification') . ' ' . $error;
return false;
}
if (!$tax->add()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while importing the tax: %s', array((string) $attributes['name']), 'Admin.International.Notification');
return false;
}
$assoc_taxes[(int) $attributes['id']] = $tax->id;
}
foreach ($xml->taxes->taxRulesGroup as $group) {
/** @var SimpleXMLElement $group */
$group_attributes = $group->attributes();
if (!Validate::isGenericName($group_attributes['name'])) {
continue;
}
if (TaxRulesGroup::getIdByName($group['name'])) {
continue;
}
$trg = new TaxRulesGroup();
$trg->name = $group['name'];
$trg->active = 1;
if (!$trg->save()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('This tax rule cannot be saved.', array(), 'Admin.International.Notification');
return false;
}
foreach ($group->taxRule as $rule) {
/** @var SimpleXMLElement $rule */
$rule_attributes = $rule->attributes();
// Validation
if (!isset($rule_attributes['iso_code_country'])) {
continue;
}
$id_country = (int) Country::getByIso(strtoupper($rule_attributes['iso_code_country']));
if (!$id_country) {
continue;
}
if (!isset($rule_attributes['id_tax']) || !array_key_exists((string) ($rule_attributes['id_tax']), $assoc_taxes)) {
continue;
}
// Default values
$id_state = (int) isset($rule_attributes['iso_code_state']) ? State::getIdByIso(strtoupper($rule_attributes['iso_code_state'])) : 0;
$id_county = 0;
$zipcode_from = 0;
$zipcode_to = 0;
$behavior = $rule_attributes['behavior'];
if (isset($rule_attributes['zipcode_from'])) {
$zipcode_from = $rule_attributes['zipcode_from'];
if (isset($rule_attributes['zipcode_to'])) {
$zipcode_to = $rule_attributes['zipcode_to'];
}
}
// Creation
$tr = new TaxRule();
$tr->id_tax_rules_group = $trg->id;
$tr->id_country = $id_country;
$tr->id_state = $id_state;
$tr->id_county = $id_county;
$tr->zipcode_from = $zipcode_from;
$tr->zipcode_to = $zipcode_to;
$tr->behavior = $behavior;
$tr->description = '';
$tr->id_tax = $assoc_taxes[(string) ($rule_attributes['id_tax'])];
$tr->save();
}
}
}
return true;
}
/**
* @param SimpleXMLElement $xml
* @param bool $install_mode
*
* @return bool
*
* @throws PrestaShopException
*/
protected function _installCurrencies($xml, $install_mode = false)
{
if (isset($xml->currencies->currency)) {
foreach ($xml->currencies->currency as $data) {
/** @var SimpleXMLElement $data */
$attributes = $data->attributes();
if (Currency::exists($attributes['iso_code'])) {
continue;
}
/** @var Language $defaultLang */
$defaultLang = new Language((int) Configuration::get('PS_LANG_DEFAULT'));
$currency = new Currency();
$currency->name = (string) $attributes['name'];
$currency->iso_code = (string) $attributes['iso_code'];
$currency->iso_code_num = (int) $attributes['iso_code_num'];
$currency->numeric_iso_code = (string) $attributes['iso_code_num'];
$currency->blank = (int) $attributes['blank'];
$currency->conversion_rate = 1; // This value will be updated if the store is online
$currency->format = (int) $attributes['format'];
$currency->decimals = (int) $attributes['decimals'];
$currency->active = true;
if (!$currency->validateFields()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('Invalid currency properties.', array(), 'Admin.International.Notification');
return false;
}
if (!Currency::exists($currency->iso_code)) {
if (!$currency->add()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while importing the currency: %s', array((string) ($attributes['name'])), 'Admin.International.Notification');
return false;
}
Cache::clear();
// set default data from CLDR
$this->setCurrencyCldrData($currency, $defaultLang);
// Following is required when installing new currency on existing languages:
// we want to properly update the symbol in each language
$localeRepoCLDR = $this->getCldrLocaleRepository();
$currency->refreshLocalizedCurrencyData(Language::getLanguages(), $localeRepoCLDR);
$currency->save();
PaymentModule::addCurrencyPermissions($currency->id);
}
}
$error = Currency::refreshCurrencies();
if (!empty($error)) {
$this->_errors[] = $error;
}
if (!count($this->_errors) && $install_mode && isset($attributes['iso_code']) && count($xml->currencies->currency) == 1) {
$this->iso_currency = $attributes['iso_code'];
}
}
return true;
}
/**
* @return LocaleRepository
*
* @throws Exception
*/
protected function getCldrLocaleRepository()
{
$context = Context::getContext();
$container = isset($context->controller) ? $context->controller->getContainer() : null;
if (null === $container) {
$container = SymfonyContainer::getInstance();
}
/** @var LocaleRepository $localeRepoCLDR */
$localeRepoCLDR = $container->get('prestashop.core.localization.cldr.locale_repository');
return $localeRepoCLDR;
}
/**
* @param Currency $currency
* @param Language $defaultLang
*/
protected function setCurrencyCldrData(Currency $currency, Language $defaultLang)
{
$localeRepoCLDR = $this->getCldrLocaleRepository();
$cldrLocale = $localeRepoCLDR->getLocale($defaultLang->locale);
$cldrCurrency = $cldrLocale->getCurrency($currency->iso_code);
$symbol = (string) $cldrCurrency->getSymbol();
if (empty($symbol)) {
$symbol = $currency->iso_code;
}
$currency->symbol = $symbol;
$currency->sign = $symbol;
$currency->precision = (int) $cldrCurrency->getDecimalDigits();
}
/**
* @param SimpleXMLElement $xml
* @param bool $install_mode
*
* @return bool
*/
protected function _installLanguages($xml, $install_mode = false)
{
$attributes = array();
if (isset($xml->languages->language)) {
foreach ($xml->languages->language as $data) {
/** @var SimpleXMLElement $data */
$attributes = $data->attributes();
// if we are not in an installation context or if the pack is not available in the local directory
if (Language::getIdByIso($attributes['iso_code']) && !$install_mode) {
continue;
}
$freshInstall = empty(Language::getIdByIso($attributes['iso_code']));
$errors = Language::downloadAndInstallLanguagePack($attributes['iso_code'], $attributes['version'], $attributes, $freshInstall);
if ($errors !== true && is_array($errors)) {
$this->_errors = array_merge($this->_errors, $errors);
}
}
}
// change the default language if there is only one language in the localization pack
if (!count($this->_errors) && $install_mode && isset($attributes['iso_code']) && count($xml->languages->language) == 1) {
$this->iso_code_lang = $attributes['iso_code'];
}
// refreshed localized currency data
$this->refreshLocalizedCurrenciesData();
return !count($this->_errors);
}
/**
* This method aims to update localized data in currencies from CLDR reference.
* Eg currency symbol used depends on language, so it has to be updated when adding a new language
* Use-case: adding a new language should trigger all currencies update
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
* @throws \PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException
*/
protected function refreshLocalizedCurrenciesData()
{
/** @var Currency[] $currencies */
$currencies = Currency::getCurrencies(true, false, true);
$languages = Language::getLanguages();
$localeRepoCLDR = $this->getCldrLocaleRepository();
foreach ($currencies as $currency) {
$currency->refreshLocalizedCurrencyData($languages, $localeRepoCLDR);
$currency->save();
}
}
/**
* @param SimpleXMLElement $xml
*
* @return bool
*/
protected function _installUnits($xml)
{
$varNames = array('weight' => 'PS_WEIGHT_UNIT', 'volume' => 'PS_VOLUME_UNIT', 'short_distance' => 'PS_DIMENSION_UNIT', 'base_distance' => 'PS_BASE_DISTANCE_UNIT', 'long_distance' => 'PS_DISTANCE_UNIT');
if (isset($xml->units->unit)) {
foreach ($xml->units->unit as $data) {
/** @var SimpleXMLElement $data */
$attributes = $data->attributes();
if (!isset($varNames[(string) ($attributes['type'])])) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('Localization pack corrupted: wrong unit type.', array(), 'Admin.International.Notification');
return false;
}
if (!Configuration::updateValue($varNames[(string) ($attributes['type'])], (string) ($attributes['value']))) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while setting the units.', array(), 'Admin.International.Notification');
return false;
}
}
}
return true;
}
/**
* Install/Uninstall a module from a localization file
* <modules>
* <module name="module_name" [install="0|1"] />.
*
* @param SimpleXMLElement $xml
*
* @return bool
*/
protected function installModules($xml)
{
if (isset($xml->modules)) {
foreach ($xml->modules->module as $data) {
/** @var SimpleXMLElement $data */
$attributes = $data->attributes();
$name = (string) $attributes['name'];
if (isset($name) && $module = Module::getInstanceByName($name)) {
$install = ($attributes['install'] == 1) ? true : false;
$moduleManagerBuilder = ModuleManagerBuilder::getInstance();
$moduleManager = $moduleManagerBuilder->build();
if ($install) {
if (!$moduleManager->isInstalled($name)) {
if (!$module->install()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while installing the module: %s', array($name), 'Admin.International.Notification');
}
}
} elseif ($moduleManager->isInstalled($name)) {
if (!$module->uninstall()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred while uninstalling the module: %s', array($name), 'Admin.International.Notification');
}
}
unset($module);
} else {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error has occurred, this module does not exist: %s', array($name), 'Admin.International.Notification');
}
}
}
return true;
}
/**
* Update a configuration variable from a localization file
* <configuration>
* <configuration name="variable_name" value="variable_value" />.
*
* @param SimpleXMLElement $xml
*
* @return bool
*/
protected function installConfiguration($xml)
{
if (isset($xml->configurations)) {
foreach ($xml->configurations->configuration as $data) {
/** @var SimpleXMLElement $data */
$attributes = $data->attributes();
$name = (string) $attributes['name'];
if (isset($name, $attributes['value']) && Configuration::get($name) !== false) {
if (!Configuration::updateValue($name, (string) $attributes['value'])) {
$this->_errors[] = Context::getContext()->getTranslator()->trans(
'An error occurred during the configuration setup: %1$s',
array($name),
'Admin.International.Notification'
);
}
}
}
}
return true;
}
/**
* @param SimpleXMLElement $xml
*
* @return bool
*/
protected function _installGroups($xml)
{
return $this->updateDefaultGroupDisplayMethod($xml);
}
/**
* @param SimpleXMLElement $xml
*
* @return bool
*/
protected function updateDefaultGroupDisplayMethod($xml)
{
if (isset($xml->group_default)) {
$attributes = $xml->group_default->attributes();
if (isset($attributes['price_display_method']) && in_array((int) $attributes['price_display_method'], array(0, 1))) {
Configuration::updateValue('PRICE_DISPLAY_METHOD', (int) $attributes['price_display_method']);
foreach (array((int) Configuration::get('PS_CUSTOMER_GROUP'), (int) Configuration::get('PS_GUEST_GROUP'), (int) Configuration::get('PS_UNIDENTIFIED_GROUP')) as $id_group) {
$group = new Group((int) $id_group);
$group->price_display_method = (int) $attributes['price_display_method'];
if (!$group->save()) {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error occurred during the default group update', array(), 'Admin.International.Notification');
}
}
} else {
$this->_errors[] = Context::getContext()->getTranslator()->trans('An error has occurred during the default group update', array(), 'Admin.International.Notification');
}
}
return true;
}
public function getErrors()
{
return $this->_errors;
}
}