* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class SupplierCore. */ class SupplierCore extends ObjectModel { public $id; /** @var int supplier ID */ public $id_supplier; /** @var string Name */ public $name; /** @var string|array A short description for the discount */ public $description; /** @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|array Meta title */ public $meta_title; /** @var string|array Meta keywords */ public $meta_keywords; /** @var string|array Meta description */ public $meta_description; /** @var bool active */ public $active; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'supplier', 'primary' => 'id_supplier', '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, 'validate' => 'isDate'], 'date_upd' => ['type' => self::TYPE_DATE, 'validate' => 'isDate'], /* Lang fields */ 'description' => ['type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml', 'size' => 4194303], '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', 'size' => 255], ], ]; protected $webserviceParameters = [ 'fields' => [ 'link_rewrite' => ['sqlId' => 'link_rewrite'], ], ]; /** * SupplierCore 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_SUPP_IMG_DIR_; } public function getLink() { return Tools::str2url($this->name); } /** * Return suppliers. * * @return bool|array Suppliers */ public static function getSuppliers($getNbProducts = false, $idLang = 0, $active = true, $p = false, $n = false, $allGroups = false, $withProduct = false) { if (!$idLang) { $idLang = Configuration::get('PS_LANG_DEFAULT'); } if (!Group::isFeatureActive()) { $allGroups = true; } $query = new DbQuery(); $query->select('s.*, sl.`description`'); $query->from('supplier', 's'); $query->leftJoin('supplier_lang', 'sl', 's.`id_supplier` = sl.`id_supplier` AND sl.`id_lang` = ' . (int) $idLang); $query->join(Shop::addSqlAssociation('supplier', 's')); if ($active) { $query->where('s.`active` = 1'); } if ($withProduct) { $query->where('s.`id_supplier` IN (SELECT `id_supplier` FROM `' . _DB_PREFIX_ . 'product_supplier`)'); } $query->orderBy(' s.`name` ASC'); $query->limit($n, ($p - 1) * $n); $query->groupBy('s.id_supplier'); $suppliers = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($query); if ($suppliers === false) { return false; } if ($getNbProducts) { $sqlGroups = ''; if (!$allGroups) { $groups = FrontController::getCurrentCustomerGroups(); $sqlGroups = (count($groups) ? 'IN (' . implode(',', $groups) . ')' : '=' . (int) Group::getCurrent()->id); } $results = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS( ' SELECT ps.`id_supplier`, COUNT(DISTINCT ps.`id_product`) as nb_products FROM `' . _DB_PREFIX_ . 'product_supplier` ps JOIN `' . _DB_PREFIX_ . 'product` p ON (ps.`id_product`= p.`id_product`) ' . Shop::addSqlAssociation('product', 'p') . ' LEFT JOIN `' . _DB_PREFIX_ . 'supplier` as m ON (m.`id_supplier`= p.`id_supplier`) WHERE product_shop.`visibility` NOT IN ("none")' . ($active ? ' AND product_shop.`active` = 1' : '') . ($allGroups ? '' : ' AND ps.`id_product` IN ( SELECT cp.`id_product` FROM `' . _DB_PREFIX_ . 'category_group` cg LEFT JOIN `' . _DB_PREFIX_ . 'category_product` cp ON (cp.`id_category` = cg.`id_category`) WHERE cg.`id_group` ' . $sqlGroups . ' )') . ' GROUP BY ps.`id_supplier`' ); $counts = []; foreach ($results as $result) { $counts[(int) $result['id_supplier']] = (int) $result['nb_products']; } foreach ($suppliers as $key => $supplier) { if (array_key_exists((int) $supplier['id_supplier'], $counts)) { $suppliers[$key]['nb_products'] = $counts[(int) $supplier['id_supplier']]; } else { $suppliers[$key]['nb_products'] = 0; } } } $nbSuppliers = count($suppliers); $rewriteSettings = (int) Configuration::get('PS_REWRITING_SETTINGS'); for ($i = 0; $i < $nbSuppliers; ++$i) { $suppliers[$i]['link_rewrite'] = ($rewriteSettings ? Tools::str2url($suppliers[$i]['name']) : 0); } return $suppliers; } /** * List of suppliers. * * @param int $idLang Specify the id of the language used * @param string $format * * @return array Suppliers lite tree */ public static function getLiteSuppliersList($idLang = null, $format = 'default') { $idLang = null === $idLang ? Context::getContext()->language->id : (int) $idLang; $suppliersList = []; $suppliers = Supplier::getSuppliers(false, $idLang, true); if ($suppliers && count($suppliers)) { foreach ($suppliers as $supplier) { if ($format === 'sitemap') { $suppliersList[] = [ 'id' => 'supplier-page-' . (int) $supplier['id_supplier'], 'label' => $supplier['name'], 'url' => Context::getContext()->link->getSupplierLink($supplier['id_supplier'], $supplier['link_rewrite']), 'children' => [], ]; } else { $suppliersList[] = [ 'id' => (int) $supplier['id_supplier'], 'link' => Context::getContext()->link->getSupplierLink($supplier['id_supplier'], $supplier['link_rewrite']), 'name' => $supplier['name'], 'desc' => $supplier['description'], 'children' => [], ]; } } } return $suppliersList; } /** * Return name from id. * * @param int $id_supplier Supplier ID * * @return string name */ protected static $cache_name = []; public static function getNameById($idSupplier) { if (!isset(self::$cache_name[$idSupplier])) { self::$cache_name[$idSupplier] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT `name` FROM `' . _DB_PREFIX_ . 'supplier` WHERE `id_supplier` = ' . (int) $idSupplier); } return self::$cache_name[$idSupplier]; } public static function getIdByName($name) { $result = Db::getInstance()->getRow(' SELECT `id_supplier` FROM `' . _DB_PREFIX_ . 'supplier` WHERE `name` = \'' . pSQL($name) . '\''); if (isset($result['id_supplier'])) { return (int) $result['id_supplier']; } return false; } /** * @param int $idSupplier * @param int $idLang * @param int $p * @param int $n * @param string|null $orderBy * @param string|null $orderWay * @param bool $getTotal * @param bool $active * @param bool $activeCategory * * @return int|array|bool */ public static function getProducts( $idSupplier, $idLang, $p, $n, $orderBy = null, $orderWay = null, $getTotal = false, $active = true, $activeCategory = true ) { $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('Invalid sorting parameters provided.')); } $sqlGroups = ''; $groups = []; if (Group::isFeatureActive()) { $groups = FrontController::getCurrentCustomerGroups(); $sqlGroups = 'WHERE cg.`id_group` ' . (count($groups) ? 'IN (' . implode(',', $groups) . ')' : '=' . (int) Group::getCurrent()->id); } /* Return only the number of products */ if ($getTotal) { return (int) Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT COUNT(DISTINCT ps.`id_product`) FROM `' . _DB_PREFIX_ . 'product_supplier` ps JOIN `' . _DB_PREFIX_ . 'product` p ON (ps.`id_product`= p.`id_product`) ' . Shop::addSqlAssociation('product', 'p') . ' WHERE ps.`id_supplier` = ' . (int) $idSupplier . ' ' . ($active ? ' AND product_shop.`active` = 1' : '') . ' ' . ($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '') . ' AND p.`id_product` IN ( SELECT cp.`id_product` FROM `' . _DB_PREFIX_ . 'category_product` cp ' . (Group::isFeatureActive() ? 'LEFT JOIN `' . _DB_PREFIX_ . 'category_group` cg 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' : '') . ' ' . $sqlGroups . ' )'); } $nbDaysNewProduct = Validate::isUnsignedInt(Configuration::get('PS_NB_DAYS_NEW_PRODUCT')) ? Configuration::get('PS_NB_DAYS_NEW_PRODUCT') : 20; if (strpos('.', $orderBy) > 0) { $orderBy = explode('.', $orderBy); $orderBy = pSQL($orderBy[0]) . '.`' . pSQL($orderBy[1]) . '`'; } $alias = ''; if (in_array($orderBy, ['price', 'date_add', 'date_upd'])) { $alias = 'product_shop.'; } elseif ($orderBy == 'id_product') { $alias = 'p.'; } elseif ($orderBy == 'manufacturer_name') { $orderBy = 'name'; $alias = 'm.'; } $sql = 'SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image, il.`legend`, s.`name` AS supplier_name, DATEDIFF(p.`date_add`, DATE_SUB("' . date('Y-m-d') . ' 00:00:00", INTERVAL ' . ($nbDaysNewProduct) . ' DAY)) > 0 AS new, m.`name` AS manufacturer_name' . (Combination::isFeatureActive() ? ', product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute' : '') . ' FROM `' . _DB_PREFIX_ . 'product` p ' . Shop::addSqlAssociation('product', 'p') . ' JOIN `' . _DB_PREFIX_ . 'product_supplier` ps ON (ps.id_product = p.id_product) ' . (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_ . 'supplier` s ON s.`id_supplier` = p.`id_supplier` 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` ' . (count($groups) ? 'IN (' . implode(',', $groups) . ')' : '= 1') . ')'; } if ($activeCategory) { $sql .= 'JOIN `' . _DB_PREFIX_ . 'category` ca ON cp.`id_category` = ca.`id_category` AND ca.`active` = 1'; } } $sql .= ' WHERE ps.`id_supplier` = ' . (int) $idSupplier . ' ' . ($active ? ' AND product_shop.`active` = 1' : '') . ' ' . ($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '') . ' GROUP BY ps.id_product'; if ($orderBy !== 'price') { $sql .= ' ORDER BY ' . $alias . '`' . pSQL($orderBy) . '` ' . pSQL($orderWay) . ' LIMIT ' . (((int) $p - 1) * (int) $n) . ',' . (int) $n; } $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql, true, false); if (!$result) { return false; } if ($orderBy === 'price') { Tools::orderbyPrice($result, $orderWay); $result = array_slice($result, (int) (($p - 1) * $n), (int) $n); } return Product::getProductsProperties($idLang, $result); } /** * Get Products of this supplier (lite). * * @param int $idLang Language ID * * @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; } $sql = ' 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 . ' ) INNER JOIN `' . _DB_PREFIX_ . 'product_supplier` ps ON ( ps.`id_product` = p.`id_product` AND ps.`id_supplier` = ' . (int) $this->id . ' ) ' . ($front ? ' WHERE product_shop.`visibility` IN ("both", "catalog")' : '') . ' GROUP BY p.`id_product`'; $res = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql); return $res; } /** * Tells if a supplier exists. * * @param int $idSupplier Supplier id * * @return bool */ public static function supplierExists($idSupplier) { $query = new DbQuery(); $query->select('id_supplier'); $query->from('supplier'); $query->where('id_supplier = ' . (int) $idSupplier); $res = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($query, false); return $res > 0; } /** * @see ObjectModel::delete() */ public function delete() { $res = parent::delete(); if ($res) { CartRule::cleanProductRuleIntegrity('suppliers', $this->id); return $this->deleteImage(); } return $res; } /** * Gets product informations. * * @param int $idSupplier * @param int $idProduct * @param int $idProductAttribute * * @return array * * @since 1.5.0 */ public static function getProductInformationsBySupplier($idSupplier, $idProduct, $idProductAttribute = 0) { $query = new DbQuery(); $query->select('product_supplier_reference, product_supplier_price_te, id_currency'); $query->from('product_supplier'); $query->where('id_supplier = ' . (int) $idSupplier); $query->where('id_product = ' . (int) $idProduct); $query->where('id_product_attribute = ' . (int) $idProductAttribute); $res = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($query); return count($res) ? $res[0] : []; } }