| Current Path : /home/rtorresani/www/vendor/magento/module-catalog-search/Model/ResourceModel/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog-search/Model/ResourceModel/Fulltext.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\CatalogSearch\Model\ResourceModel;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\EntityManager\MetadataPool;
/**
* CatalogSearch Fulltext Index resource model
*
* @api
* @since 100.0.2
*/
class Fulltext extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Core event manager proxy
*
* @var \Magento\Framework\Event\ManagerInterface
*/
protected $_eventManager;
/**
* Holder for MetadataPool instance.
*
* @var MetadataPool
*/
private $metadataPool;
/**
* @param \Magento\Framework\Model\ResourceModel\Db\Context $context
* @param \Magento\Framework\Event\ManagerInterface $eventManager
* @param string $connectionName
* @param MetadataPool $metadataPool
*/
public function __construct(
\Magento\Framework\Model\ResourceModel\Db\Context $context,
\Magento\Framework\Event\ManagerInterface $eventManager,
$connectionName = null,
MetadataPool $metadataPool = null
) {
$this->_eventManager = $eventManager;
$this->metadataPool = $metadataPool ? : ObjectManager::getInstance()->get(MetadataPool::class);
parent::__construct($context, $connectionName);
}
/**
* Init resource model
*
* @return void
*/
protected function _construct()
{
$this->_init('catalogsearch_fulltext', 'product_id');
}
/**
* Reset search results
*
* @return $this
* @deprecated 101.0.0 Not used anymore
* @see Fulltext::resetSearchResultsByStore
*/
public function resetSearchResults()
{
$connection = $this->getConnection();
$connection->update($this->getTable('search_query'), ['is_processed' => 0], ['is_processed != 0']);
$this->_eventManager->dispatch('catalogsearch_reset_search_result');
return $this;
}
/**
* Reset search results by store
*
* @param int $storeId
* @return $this
* @since 101.0.0
*/
public function resetSearchResultsByStore($storeId)
{
$storeId = (int) $storeId;
$connection = $this->getConnection();
$connection->update(
$this->getTable('search_query'),
['is_processed' => 0],
['is_processed != ?' => 0, 'store_id = ?' => $storeId]
);
$this->_eventManager->dispatch('catalogsearch_reset_search_result', ['store_id' => $storeId]);
return $this;
}
/**
* Retrieve product relations by children.
*
* @param int|array $childIds
* @return array
* @since 100.2.0
*/
public function getRelationsByChild($childIds)
{
$connection = $this->getConnection();
$linkField = $this->metadataPool->getMetadata(ProductInterface::class)->getLinkField();
$select = $connection
->select()
->from(
['relation' => $this->getTable('catalog_product_relation')],
[]
)->distinct(true)
->join(
['cpe' => $this->getTable('catalog_product_entity')],
'cpe.' . $linkField . ' = relation.parent_id',
['cpe.entity_id']
)->where(
'relation.child_id IN (?)',
$childIds,
\Zend_Db::INT_TYPE
);
return $connection->fetchCol($select);
}
}