-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountry.php
521 lines (452 loc) · 16.2 KB
/
Country.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
<?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
*/
/**
* Class CountryCore.
*/
class CountryCore extends ObjectModel
{
public $id;
/** @var int Zone id which country belongs */
public $id_zone;
/** @var int Currency id which country belongs */
public $id_currency;
/** @var string 2 letters iso code */
public $iso_code;
/** @var int international call prefix */
public $call_prefix;
/** @var string Name */
public $name;
/** @var bool Contain states */
public $contains_states;
/** @var bool Need identification number dni/nif/nie */
public $need_identification_number;
/** @var bool Need Zip Code */
public $need_zip_code;
/** @var string Zip Code Format */
public $zip_code_format;
/** @var bool Display or not the tax incl./tax excl. mention in the front office */
public $display_tax_label = true;
/** @var bool Status for delivery */
public $active = true;
protected static $_idZones = array();
const GEOLOC_ALLOWED = 0;
const GEOLOC_CATALOG_MODE = 1;
const GEOLOC_FORBIDDEN = 2;
/**
* @see ObjectModel::$definition
*/
public static $definition = array(
'table' => 'country',
'primary' => 'id_country',
'multilang' => true,
'fields' => array(
'id_zone' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'id_currency' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId'),
'call_prefix' => array('type' => self::TYPE_INT, 'validate' => 'isInt'),
'iso_code' => array('type' => self::TYPE_STRING, 'validate' => 'isLanguageIsoCode', 'required' => true, 'size' => 3),
'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
'contains_states' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
'need_identification_number' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
'need_zip_code' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
'zip_code_format' => array('type' => self::TYPE_STRING, 'validate' => 'isZipCodeFormat'),
'display_tax_label' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
/* Lang fields */
'name' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 64),
),
'associations' => array(
'zone' => array('type' => self::HAS_ONE),
'currency' => array('type' => self::HAS_ONE),
),
);
protected static $cache_iso_by_id = array();
protected $webserviceParameters = array(
'objectsNodeName' => 'countries',
'fields' => array(
'id_zone' => array('xlink_resource' => 'zones'),
'id_currency' => array('xlink_resource' => 'currencies'),
),
);
/**
* Deletes current Country from the database.
*
* @return bool True if delete was successful
*
* @throws PrestaShopException
*/
public function delete()
{
if (!parent::delete()) {
return false;
}
return Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'cart_rule_country WHERE id_country = ' . (int) $this->id);
}
/**
* @brief Return available countries
*
* @param int $idLang Language ID
* @param bool $active return only active coutries
* @param bool $containStates return only country with states
* @param bool $listStates Include the states list with the returned list
*
* @return array Countries and corresponding zones
*/
public static function getCountries($idLang, $active = false, $containStates = false, $listStates = true)
{
$countries = array();
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
SELECT cl.*,c.*, cl.`name` country, z.`name` zone
FROM `' . _DB_PREFIX_ . 'country` c ' . Shop::addSqlAssociation('country', 'c') . '
LEFT JOIN `' . _DB_PREFIX_ . 'country_lang` cl ON (c.`id_country` = cl.`id_country` AND cl.`id_lang` = ' . (int) $idLang . ')
LEFT JOIN `' . _DB_PREFIX_ . 'zone` z ON (z.`id_zone` = c.`id_zone`)
WHERE 1' . ($active ? ' AND c.active = 1' : '') . ($containStates ? ' AND c.`contains_states` = ' . (int) $containStates : '') . '
ORDER BY cl.name ASC');
foreach ($result as $row) {
$countries[$row['id_country']] = $row;
}
if ($listStates) {
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('SELECT * FROM `' . _DB_PREFIX_ . 'state` ORDER BY `name` ASC');
foreach ($result as $row) {
if (isset($countries[$row['id_country']]) && $row['active'] == 1) { /* Does not keep the state if its country has been disabled and not selected */
$countries[$row['id_country']]['states'][] = $row;
}
}
}
return $countries;
}
public static function getCountriesByIdShop($idShop, $idLang)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
SELECT *
FROM `' . _DB_PREFIX_ . 'country` c
LEFT JOIN `' . _DB_PREFIX_ . 'country_shop` cs ON (cs.`id_country`= c.`id_country`)
LEFT JOIN `' . _DB_PREFIX_ . 'country_lang` cl ON (c.`id_country` = cl.`id_country` AND cl.`id_lang` = ' . (int) $idLang . ')
WHERE `id_shop` = ' . (int) $idShop);
}
/**
* Get a country ID with its iso code.
*
* @param string $isoCode Country iso code
* @param bool $active return only active coutries
*
* @return int Country ID
*/
public static function getByIso($isoCode, $active = false)
{
if (!Validate::isLanguageIsoCode($isoCode)) {
die(Tools::displayError());
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(
'
SELECT `id_country`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `iso_code` = \'' . pSQL(strtoupper($isoCode)) . '\''
. ($active ? ' AND active = 1' : '')
);
if (isset($result['id_country'])) {
return (int) $result['id_country'];
}
return false;
}
/**
* Get Zone ID by Country.
*
* @param int $idCountry Country ID
*
* @return bool|int
*/
public static function getIdZone($idCountry)
{
if (!Validate::isUnsignedId($idCountry)) {
die(Tools::displayError());
}
if (isset(self::$_idZones[$idCountry])) {
return (int) self::$_idZones[$idCountry];
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
SELECT `id_zone`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `id_country` = ' . (int) $idCountry);
if (isset($result['id_zone'])) {
self::$_idZones[$idCountry] = (int) $result['id_zone'];
return (int) $result['id_zone'];
}
return false;
}
/**
* Get a country name with its ID.
*
* @param int $idLang Language ID
* @param int $idCountry Country ID
*
* @return string Country name
*/
public static function getNameById($idLang, $idCountry)
{
$key = 'country_getNameById_' . $idCountry . '_' . $idLang;
if (!Cache::isStored($key)) {
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(
'
SELECT `name`
FROM `' . _DB_PREFIX_ . 'country_lang`
WHERE `id_lang` = ' . (int) $idLang . '
AND `id_country` = ' . (int) $idCountry
);
Cache::store($key, $result);
return $result;
}
return Cache::retrieve($key);
}
/**
* Get a country iso with its ID.
*
* @param int $idCountry Country ID
*
* @return string Country iso
*/
public static function getIsoById($idCountry)
{
if (!isset(Country::$cache_iso_by_id[$idCountry])) {
Country::$cache_iso_by_id[$idCountry] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
SELECT `iso_code`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `id_country` = ' . (int) $idCountry);
}
if (isset(Country::$cache_iso_by_id[$idCountry])) {
return Country::$cache_iso_by_id[$idCountry];
}
return false;
}
/**
* Get a country id with its name.
*
* @param int|null $idLang Language ID
* @param string $country Country Name
*
* @return int Country ID
*/
public static function getIdByName($idLang, $country)
{
$sql = '
SELECT `id_country`
FROM `' . _DB_PREFIX_ . 'country_lang`
WHERE `name` = \'' . pSQL($country) . '\'';
if ($idLang) {
$sql .= ' AND `id_lang` = ' . (int) $idLang;
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
if (isset($result['id_country'])) {
return (int) $result['id_country'];
}
return false;
}
/**
* Does the Country need a zip code?
*
* @param int $idCountry Country ID
*
* @return bool Indicates whether the Country needs a zip code
*/
public static function getNeedZipCode($idCountry)
{
if (!(int) $idCountry) {
return false;
}
return (bool) Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
SELECT `need_zip_code`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `id_country` = ' . (int) $idCountry);
}
/**
* Get zip code format for Country.
*
* @param int $idCountry Country ID
*
* @return bool|false|string|null
*/
public static function getZipCodeFormat($idCountry)
{
if (!(int) $idCountry) {
return false;
}
$zipCodeFormat = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
SELECT `zip_code_format`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `id_country` = ' . (int) $idCountry);
if (isset($zipCodeFormat) && $zipCodeFormat) {
return $zipCodeFormat;
}
return false;
}
/**
* Get Countries by Zone ID.
*
* @param int $idZone Zone ID
* @param int $idLang Language ID
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public static function getCountriesByZoneId($idZone, $idLang)
{
if (empty($idZone) || empty($idLang)) {
die(Tools::displayError());
}
$sql = ' SELECT DISTINCT c.*, cl.*
FROM `' . _DB_PREFIX_ . 'country` c
' . Shop::addSqlAssociation('country', 'c', false) . '
LEFT JOIN `' . _DB_PREFIX_ . 'state` s ON (s.`id_country` = c.`id_country`)
LEFT JOIN `' . _DB_PREFIX_ . 'country_lang` cl ON (c.`id_country` = cl.`id_country`)
WHERE (c.`id_zone` = ' . (int) $idZone . ' OR s.`id_zone` = ' . (int) $idZone . ')
AND `id_lang` = ' . (int) $idLang;
return Db::getInstance()->executeS($sql);
}
/**
* Does the Country need a DNI.
*
* @return bool Indicates whether the Country needs a DNI
*/
public function isNeedDni()
{
return Country::isNeedDniByCountryId($this->id);
}
/**
* Does the given Country need a DNI?
*
* @param int $idCountry Country ID
*
* @return bool Indicates whether the Country needs a DNI
*/
public static function isNeedDniByCountryId($idCountry)
{
return (bool) Db::getInstance()->getValue('
SELECT `need_identification_number`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `id_country` = ' . (int) $idCountry);
}
/**
* Does the given Country contain States?
*
* @param int $idCountry Country ID
*
* @return bool Indicates whether the Country contains States
*/
public static function containsStates($idCountry)
{
return (bool) Db::getInstance()->getValue('
SELECT `contains_states`
FROM `' . _DB_PREFIX_ . 'country`
WHERE `id_country` = ' . (int) $idCountry);
}
/**
* Apply Zone to selected Countries.
*
* @param array $idsCountries Country array
* @param int $idZone Zone ID
*
* @return bool Indicates whether the Zone was successfully applied
*/
public function affectZoneToSelection($idsCountries, $idZone)
{
// cast every array values to int (security)
$idsCountries = array_map('intval', $idsCountries);
return Db::getInstance()->execute('
UPDATE `' . _DB_PREFIX_ . 'country` SET `id_zone` = ' . (int) $idZone . ' WHERE `id_country` IN (' . implode(',', $idsCountries) . ')
');
}
/**
* Replace letters of zip code format And check this format on the zip code.
*
* @param string $zipCode zip code
*
* @return bool Indicates whether the zip code is correct
*/
public function checkZipCode($zipCode)
{
if (empty($this->zip_code_format)) {
return true;
}
$zipRegexp = '/^' . $this->zip_code_format . '$/ui';
$zipRegexp = str_replace('N', '[0-9]', $zipRegexp);
$zipRegexp = str_replace('L', '[a-zA-Z]', $zipRegexp);
$zipRegexp = str_replace('C', $this->iso_code, $zipRegexp);
return (bool) preg_match($zipRegexp, $zipCode);
}
/**
* Add module restrictions.
*
* @param array $shops Shops array
* @param array $countries Countries array
* @param array $modules Modules array
*
* @return bool Indictes whether the restrictions were successfully applied
*/
public static function addModuleRestrictions(array $shops = array(), array $countries = array(), array $modules = array())
{
if (!count($shops)) {
$shops = Shop::getShops(true, null, true);
}
if (!count($countries)) {
if (null !== Context::getContext()->cookie) {
$id_lang = (int) Context::getContext()->cookie->id_lang;
} else {
$id_lang = (int) Context::getContext()->language->id;
}
$countries = Country::getCountries($id_lang);
}
if (!count($modules)) {
$modules = Module::getPaymentModules();
}
$sql = false;
foreach ($shops as $idShop) {
foreach ($countries as $country) {
foreach ($modules as $module) {
$sql .= '(' . (int) $module['id_module'] . ', ' . (int) $idShop . ', ' . (int) $country['id_country'] . '),';
}
}
}
if ($sql) {
$sql = 'INSERT IGNORE INTO `' . _DB_PREFIX_ . 'module_country` (`id_module`, `id_shop`, `id_country`) VALUES ' . rtrim($sql, ',');
return Db::getInstance()->execute($sql);
} else {
return true;
}
}
/**
* Adds current Country as a new Object to the database.
*
* @param bool $autoDate Automatically set `date_upd` and `date_add` columns
* @param bool $nullValues Whether we want to use NULL values instead of empty quotes values
*
* @return bool Indicates whether the Country has been successfully added
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
*/
public function add($autoDate = true, $nullValues = false)
{
$return = parent::add($autoDate, $nullValues) && self::addModuleRestrictions(array(), array(array('id_country' => $this->id)), array());
return $return;
}
}