![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog-rule/Model/Indexer/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Indexer; use Magento\CatalogRule\Model\Indexer\IndexerTableSwapperInterface as TableSwapper; use Magento\Framework\App\ObjectManager; use Magento\Catalog\Model\ResourceModel\Indexer\ActiveTableSwitcher; /** * Reindex information about rule relations with customer groups and websites. */ class ReindexRuleGroupWebsite { /** * @var \Magento\Framework\Stdlib\DateTime\DateTime */ private $dateTime; /** * @var \Magento\Framework\App\ResourceConnection */ private $resource; /** * @var array */ private $catalogRuleGroupWebsiteColumnsList = ['rule_id', 'customer_group_id', 'website_id']; /** * @var ActiveTableSwitcher */ private $activeTableSwitcher; /** * @var TableSwapper */ private $tableSwapper; /** * @param \Magento\Framework\Stdlib\DateTime\DateTime $dateTime * @param \Magento\Framework\App\ResourceConnection $resource * @param ActiveTableSwitcher $activeTableSwitcher * @param TableSwapper|null $tableSwapper */ public function __construct( \Magento\Framework\Stdlib\DateTime\DateTime $dateTime, \Magento\Framework\App\ResourceConnection $resource, ActiveTableSwitcher $activeTableSwitcher, TableSwapper $tableSwapper = null ) { $this->dateTime = $dateTime; $this->resource = $resource; $this->activeTableSwitcher = $activeTableSwitcher; $this->tableSwapper = $tableSwapper ?? ObjectManager::getInstance()->get(TableSwapper::class); } /** * Prepare and persist information about rule relations with customer groups and websites to index table. * * @param bool $useAdditionalTable * @return bool */ public function execute($useAdditionalTable = false) { $connection = $this->resource->getConnection(); $timestamp = $this->dateTime->gmtTimestamp(); $indexTable = $this->resource->getTableName('catalogrule_group_website'); $ruleProductTable = $this->resource->getTableName('catalogrule_product'); if ($useAdditionalTable) { $indexTable = $this->resource->getTableName( $this->tableSwapper->getWorkingTableName('catalogrule_group_website') ); $ruleProductTable = $this->resource->getTableName( $this->tableSwapper->getWorkingTableName('catalogrule_product') ); } $connection->delete($indexTable); $select = $connection->select()->distinct( true )->from( $ruleProductTable, $this->catalogRuleGroupWebsiteColumnsList )->where( "{$timestamp} >= from_time AND (({$timestamp} <= to_time AND to_time > 0) OR to_time = 0)" ); $query = $select->insertFromSelect($indexTable, $this->catalogRuleGroupWebsiteColumnsList); $connection->query($query); return true; } }