forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManufacturer.php
629 lines (556 loc) · 20.8 KB
/
Manufacturer.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
622
623
624
625
626
627
628
629
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* 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.md.
* 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://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
/**
* Class ManufacturerCore.
*/
class ManufacturerCore extends ObjectModel
{
public $id;
/** @var string Name */
public $name;
/** @var string A description */
public $description;
/** @var string A short description */
public $short_description;
/** @var int Address */
public $id_address;
/** @var string Object creation date */
public $date_add;
/** @var string Object last modification date */
public $date_upd;
/** @var string Friendly URL */
public $link_rewrite;
/** @var string Meta title */
public $meta_title;
/** @var string Meta keywords */
public $meta_keywords;
/** @var string Meta description */
public $meta_description;
/** @var bool active */
public $active;
/**
* @see ObjectModel::$definition
*/
public static $definition = [
'table' => 'manufacturer',
'primary' => 'id_manufacturer',
'multilang' => true,
'fields' => [
'name' => ['type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'required' => true, 'size' => 64],
'active' => ['type' => self::TYPE_BOOL],
'date_add' => ['type' => self::TYPE_DATE],
'date_upd' => ['type' => self::TYPE_DATE],
/* Lang fields */
'description' => ['type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'],
'short_description' => ['type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'],
'meta_title' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 255],
'meta_description' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 512],
'meta_keywords' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName'],
],
];
protected $webserviceParameters = [
'fields' => [
'active' => [],
'link_rewrite' => ['getter' => 'getLink', 'setter' => false],
],
'associations' => [
'addresses' => [
'resource' => 'address',
'setter' => false,
'fields' => [
'id' => ['xlink_resource' => 'addresses'],
],
],
],
];
/**
* ManufacturerCore constructor.
*
* @param int|null $id
* @param int|null $idLang
*/
public function __construct($id = null, $idLang = null)
{
parent::__construct($id, $idLang);
$this->link_rewrite = $this->getLink();
$this->image_dir = _PS_MANU_IMG_DIR_;
}
/**
* Deletes current Manufacturer from the database.
*
* @return bool `true` if delete was successful
*
* @throws PrestaShopException
*/
public function delete()
{
$address = new Address($this->id_address);
if (Validate::isLoadedObject($address) && !$address->delete()) {
return false;
}
if (parent::delete()) {
CartRule::cleanProductRuleIntegrity('manufacturers', $this->id);
return $this->deleteImage();
}
}
/**
* Delete several objects from database.
*
* return boolean Deletion result
*/
public function deleteSelection($selection)
{
if (!is_array($selection)) {
die(Tools::displayError());
}
$result = true;
foreach ($selection as $id) {
$this->id = (int) $id;
$this->id_address = Manufacturer::getManufacturerAddress();
$result = $result && $this->delete();
}
return $result;
}
/**
* Get Manufacturer Address ID.
*
* @return bool|false|string|null
*/
protected function getManufacturerAddress()
{
if (!(int) $this->id) {
return false;
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('SELECT `id_address` FROM ' . _DB_PREFIX_ . 'address WHERE `id_manufacturer` = ' . (int) $this->id);
}
/**
* Return manufacturers.
*
* @param bool $getNbProducts [optional] return products numbers for each
* @param int $idLang Language ID
* @param bool $active
* @param int $p
* @param int $n
* @param bool $allGroup
*
* @return array Manufacturers
*/
public static function getManufacturers($getNbProducts = false, $idLang = 0, $active = true, $p = false, $n = false, $allGroup = false, $group_by = false, $withProduct = false)
{
if (!$idLang) {
$idLang = (int) Configuration::get('PS_LANG_DEFAULT');
}
if (!Group::isFeatureActive()) {
$allGroup = true;
}
$manufacturers = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
SELECT m.*, ml.`description`, ml.`short_description`
FROM `' . _DB_PREFIX_ . 'manufacturer` m'
. Shop::addSqlAssociation('manufacturer', 'm') .
'INNER JOIN `' . _DB_PREFIX_ . 'manufacturer_lang` ml ON (m.`id_manufacturer` = ml.`id_manufacturer` AND ml.`id_lang` = ' . (int) $idLang . ')' .
'WHERE 1 ' .
($active ? 'AND m.`active` = 1 ' : '') .
($withProduct ? 'AND m.`id_manufacturer` IN (SELECT `id_manufacturer` FROM `' . _DB_PREFIX_ . 'product`) ' : '') .
($group_by ? ' GROUP BY m.`id_manufacturer`' : '') .
'ORDER BY m.`name` ASC
' . ($p ? ' LIMIT ' . (((int) $p - 1) * (int) $n) . ',' . (int) $n : ''));
if ($manufacturers === false) {
return false;
}
if ($getNbProducts) {
$sqlGroups = '';
if (!$allGroup) {
$groups = FrontController::getCurrentCustomerGroups();
$sqlGroups = (count($groups) ? 'IN (' . implode(',', $groups) . ')' : '=' . (int) Group::getCurrent()->id);
}
$results = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(
'
SELECT p.`id_manufacturer`, COUNT(DISTINCT p.`id_product`) as nb_products
FROM `' . _DB_PREFIX_ . 'product` p USE INDEX (product_manufacturer)
' . Shop::addSqlAssociation('product', 'p') . '
LEFT JOIN `' . _DB_PREFIX_ . 'manufacturer` as m ON (m.`id_manufacturer`= p.`id_manufacturer`)
WHERE p.`id_manufacturer` != 0 AND product_shop.`visibility` NOT IN ("none")
' . ($active ? ' AND product_shop.`active` = 1 ' : '') . '
' . (Group::isFeatureActive() && $allGroup ? '' : ' AND EXISTS (
SELECT 1
FROM `' . _DB_PREFIX_ . 'category_group` cg
LEFT JOIN `' . _DB_PREFIX_ . 'category_product` cp ON (cp.`id_category` = cg.`id_category`)
WHERE p.`id_product` = cp.`id_product` AND cg.`id_group` ' . $sqlGroups . '
)') . '
GROUP BY p.`id_manufacturer`'
);
$counts = [];
foreach ($results as $result) {
$counts[(int) $result['id_manufacturer']] = (int) $result['nb_products'];
}
foreach ($manufacturers as $key => $manufacturer) {
if (array_key_exists((int) $manufacturer['id_manufacturer'], $counts)) {
$manufacturers[$key]['nb_products'] = $counts[(int) $manufacturer['id_manufacturer']];
} else {
$manufacturers[$key]['nb_products'] = 0;
}
}
}
$totalManufacturers = count($manufacturers);
$rewriteSettings = (int) Configuration::get('PS_REWRITING_SETTINGS');
for ($i = 0; $i < $totalManufacturers; ++$i) {
$manufacturers[$i]['link_rewrite'] = ($rewriteSettings ? Tools::link_rewrite($manufacturers[$i]['name']) : 0);
}
return $manufacturers;
}
/**
* List of manufacturers.
*
* @param int $idLang Specify the id of the language used
*
* @return array Manufacturers lite tree
*/
public static function getLiteManufacturersList($idLang = null, $format = 'default')
{
$idLang = null === $idLang ? Context::getContext()->language->id : (int) $idLang;
$manufacturersList = [];
$manufacturers = Manufacturer::getManufacturers(false, $idLang);
if ($manufacturers && count($manufacturers)) {
foreach ($manufacturers as $manufacturer) {
if ($format === 'sitemap') {
$manufacturersList[] = [
'id' => 'manufacturer-page-' . (int) $manufacturer['id_manufacturer'],
'label' => $manufacturer['name'],
'url' => Context::getContext()->link->getManufacturerLink($manufacturer['id_manufacturer'], $manufacturer['link_rewrite']),
'children' => [],
];
} else {
$manufacturersList[] = [
'id' => (int) $manufacturer['id_manufacturer'],
'link' => Context::getContext()->link->getManufacturerLink($manufacturer['id_manufacturer'], $manufacturer['link_rewrite']),
'name' => $manufacturer['name'],
'desc' => $manufacturer['description'],
'children' => [],
];
}
}
}
return $manufacturersList;
}
/**
* Return name from id.
*
* @param int $id_manufacturer Manufacturer ID
*
* @return string name
*/
protected static $cacheName = [];
public static function getNameById($idManufacturer)
{
if (!isset(self::$cacheName[$idManufacturer])) {
self::$cacheName[$idManufacturer] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(
'
SELECT `name`
FROM `' . _DB_PREFIX_ . 'manufacturer`
WHERE `id_manufacturer` = ' . (int) $idManufacturer . '
AND `active` = 1'
);
}
return self::$cacheName[$idManufacturer];
}
/**
* Get Manufacturer ID by name.
*
* @param string $name
*
* @return bool|int
*/
public static function getIdByName($name)
{
$result = Db::getInstance()->getRow(
'
SELECT `id_manufacturer`
FROM `' . _DB_PREFIX_ . 'manufacturer`
WHERE `name` = \'' . pSQL($name) . '\''
);
if (isset($result['id_manufacturer'])) {
return (int) $result['id_manufacturer'];
}
return false;
}
/**
* Get link to Manufacturer page.
*
* @return string
*/
public function getLink()
{
return Tools::link_rewrite($this->name);
}
/**
* Get Products by Manufacturer ID.
*
* @param int $idManufacturer
* @param int $idLang
* @param int $p
* @param int $n
* @param null $orderBy
* @param null $orderWay
* @param bool $getTotal
* @param bool $active
* @param bool $activeCategory
* @param Context|null $context
*
* @return array|bool
*/
public static function getProducts(
$idManufacturer,
$idLang,
$p,
$n,
$orderBy = null,
$orderWay = null,
$getTotal = false,
$active = true,
$activeCategory = true,
Context $context = null
) {
if (!$context) {
$context = Context::getContext();
}
$front = true;
if (!in_array($context->controller->controller_type, ['front', 'modulefront'])) {
$front = false;
}
if ($p < 1) {
$p = 1;
}
if (empty($orderBy) || $orderBy == 'position') {
$orderBy = 'name';
}
if (empty($orderWay)) {
$orderWay = 'ASC';
}
if (!Validate::isOrderBy($orderBy) || !Validate::isOrderWay($orderWay)) {
die(Tools::displayError());
}
$groups = FrontController::getCurrentCustomerGroups();
$sqlGroups = count($groups) ? 'IN (' . implode(',', $groups) . ')' : '=' . (int) Group::getCurrent()->id;
/* Return only the number of products */
if ($getTotal) {
$sql = '
SELECT p.`id_product`
FROM `' . _DB_PREFIX_ . 'product` p
' . Shop::addSqlAssociation('product', 'p') . '
WHERE p.id_manufacturer = ' . (int) $idManufacturer
. ($active ? ' AND product_shop.`active` = 1' : '') . '
' . ($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '') . '
AND EXISTS (
SELECT 1
FROM `' . _DB_PREFIX_ . 'category_group` cg
LEFT JOIN `' . _DB_PREFIX_ . 'category_product` cp ON (cp.`id_category` = cg.`id_category`)' .
($activeCategory ? ' INNER JOIN `' . _DB_PREFIX_ . 'category` ca ON cp.`id_category` = ca.`id_category` AND ca.`active` = 1' : '') . '
WHERE p.`id_product` = cp.`id_product` AND cg.`id_group` ' . $sqlGroups . '
)';
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
return (int) count($result);
}
if (strpos($orderBy, '.') > 0) {
$orderBy = explode('.', $orderBy);
$orderBy = pSQL($orderBy[0]) . '.`' . pSQL($orderBy[1]) . '`';
}
if ($orderBy == 'price') {
$alias = 'product_shop.';
} elseif ($orderBy == 'name') {
$alias = 'pl.';
} elseif ($orderBy == 'manufacturer_name') {
$orderBy = 'name';
$alias = 'm.';
} elseif ($orderBy == 'quantity') {
$alias = 'stock.';
} else {
$alias = 'p.';
}
$sql = 'SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity'
. (Combination::isFeatureActive() ? ', product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, IFNULL(product_attribute_shop.`id_product_attribute`,0) id_product_attribute' : '') . '
, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`,
pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`, image_shop.`id_image` id_image, il.`legend`, m.`name` AS manufacturer_name,
DATEDIFF(
product_shop.`date_add`,
DATE_SUB(
"' . date('Y-m-d') . ' 00:00:00",
INTERVAL ' . (Validate::isUnsignedInt(Configuration::get('PS_NB_DAYS_NEW_PRODUCT')) ? Configuration::get('PS_NB_DAYS_NEW_PRODUCT') : 20) . ' DAY
)
) > 0 AS new'
. ' FROM `' . _DB_PREFIX_ . 'product` p
' . Shop::addSqlAssociation('product', 'p') .
(Combination::isFeatureActive() ? 'LEFT JOIN `' . _DB_PREFIX_ . 'product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=' . (int) $context->shop->id . ')' : '') . '
LEFT JOIN `' . _DB_PREFIX_ . 'product_lang` pl
ON (p.`id_product` = pl.`id_product` AND pl.`id_lang` = ' . (int) $idLang . Shop::addSqlRestrictionOnLang('pl') . ')
LEFT JOIN `' . _DB_PREFIX_ . 'image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=' . (int) $context->shop->id . ')
LEFT JOIN `' . _DB_PREFIX_ . 'image_lang` il
ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = ' . (int) $idLang . ')
LEFT JOIN `' . _DB_PREFIX_ . 'manufacturer` m
ON (m.`id_manufacturer` = p.`id_manufacturer`)
' . Product::sqlStock('p', 0);
if (Group::isFeatureActive() || $activeCategory) {
$sql .= 'JOIN `' . _DB_PREFIX_ . 'category_product` cp ON (p.id_product = cp.id_product)';
if (Group::isFeatureActive()) {
$sql .= 'JOIN `' . _DB_PREFIX_ . 'category_group` cg ON (cp.`id_category` = cg.`id_category` AND cg.`id_group` ' . $sqlGroups . ')';
}
if ($activeCategory) {
$sql .= 'JOIN `' . _DB_PREFIX_ . 'category` ca ON cp.`id_category` = ca.`id_category` AND ca.`active` = 1';
}
}
$sql .= '
WHERE p.`id_manufacturer` = ' . (int) $idManufacturer . '
' . ($active ? ' AND product_shop.`active` = 1' : '') . '
' . ($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '') . '
GROUP BY p.id_product
ORDER BY ' . $alias . '`' . bqSQL($orderBy) . '` ' . pSQL($orderWay) . '
LIMIT ' . (((int) $p - 1) * (int) $n) . ',' . (int) $n;
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
if (!$result) {
return false;
}
if ($orderBy == 'price') {
Tools::orderbyPrice($result, $orderWay);
}
return Product::getProductsProperties($idLang, $result);
}
/**
* Get Products by Manufacturer
* (light edition).
*
* @param int $idLang
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public function getProductsLite($idLang)
{
$context = Context::getContext();
$front = true;
if (!in_array($context->controller->controller_type, ['front', 'modulefront'])) {
$front = false;
}
return Db::getInstance()->executeS('
SELECT p.`id_product`, pl.`name`
FROM `' . _DB_PREFIX_ . 'product` p
' . Shop::addSqlAssociation('product', 'p') . '
LEFT JOIN `' . _DB_PREFIX_ . 'product_lang` pl ON (
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = ' . (int) $idLang . $context->shop->addSqlRestrictionOnLang('pl') . '
)
WHERE p.`id_manufacturer` = ' . (int) $this->id .
($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : ''));
}
/**
* Specify if a manufacturer already in base.
*
* @param int $idManufacturer Manufacturer id
*
* @return bool
*/
public static function manufacturerExists($idManufacturer)
{
$row = Db::getInstance()->getRow(
'
SELECT `id_manufacturer`
FROM ' . _DB_PREFIX_ . 'manufacturer m
WHERE m.`id_manufacturer` = ' . (int) $idManufacturer
);
return isset($row['id_manufacturer']);
}
/**
* Get Manufacturer Addresses.
*
* @param int $idLang
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public function getAddresses($idLang)
{
return Db::getInstance()->executeS(
'
SELECT a.*, cl.name AS `country`, s.name AS `state`
FROM `' . _DB_PREFIX_ . 'address` AS a
LEFT JOIN `' . _DB_PREFIX_ . 'country_lang` AS cl ON (
cl.`id_country` = a.`id_country`
AND cl.`id_lang` = ' . (int) $idLang . '
)
LEFT JOIN `' . _DB_PREFIX_ . 'state` AS s ON (s.`id_state` = a.`id_state`)
WHERE `id_manufacturer` = ' . (int) $this->id . '
AND a.`deleted` = 0'
);
}
/**
* Get Manufacturer Addresses
* (for webservice).
*
* @return array|false|mysqli_result|PDOStatement|resource|null
*/
public function getWsAddresses()
{
return Db::getInstance()->executeS(
'
SELECT a.id_address as id
FROM `' . _DB_PREFIX_ . 'address` AS a
' . Shop::addSqlAssociation('manufacturer', 'a') . '
WHERE a.`id_manufacturer` = ' . (int) $this->id . '
AND a.`deleted` = 0'
);
}
/**
* Set Manufacturer Addresses
* (for webservice).
*
* @param array $idAddresses
*
* @return bool
*/
public function setWsAddresses($idAddresses)
{
$ids = [];
foreach ($idAddresses as $id) {
$ids[] = (int) $id['id'];
}
$result1 = (
Db::getInstance()->execute('
UPDATE `' . _DB_PREFIX_ . 'address`
SET id_manufacturer = 0
WHERE id_manufacturer = ' . (int) $this->id . '
AND deleted = 0') !== false
);
$result2 = true;
if (count($ids)) {
$result2 = (
Db::getInstance()->execute('
UPDATE `' . _DB_PREFIX_ . 'address`
SET id_customer = 0, id_supplier = 0, id_manufacturer = ' . (int) $this->id . '
WHERE id_address IN(' . implode(',', $ids) . ')
AND deleted = 0') !== false
);
}
return $result1 && $result2;
}
}