![]() 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/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; /** * Product ID locator provides all product IDs by SKUs. */ class ProductIdLocator implements \Magento\Catalog\Model\ProductIdLocatorInterface { /** * Limit values for array IDs by SKU. * * @var int */ private $idsLimit; /** * @var \Magento\Framework\EntityManager\MetadataPool */ private $metadataPool; /** * @var \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory */ private $collectionFactory; /** * IDs by SKU cache. * * @var array */ private $idsBySku = []; /** * Batch size to iterate collection * * @var int */ private $batchSize; /** * @param \Magento\Framework\EntityManager\MetadataPool $metadataPool * @param \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $collectionFactory * @param string $idsLimit * @param int $batchSize defines how many items can be processed by one iteration */ public function __construct( \Magento\Framework\EntityManager\MetadataPool $metadataPool, \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $collectionFactory, $idsLimit, int $batchSize = 5000 ) { $this->metadataPool = $metadataPool; $this->collectionFactory = $collectionFactory; $this->idsLimit = (int)$idsLimit; $this->batchSize = $batchSize; } /** * @inheritdoc * * Load product items by provided products SKUs. * Products collection will be iterated by pages with the $this->batchSize as a page size (for a cases when to many * products SKUs were provided in parameters. * Loaded products will be chached in the $this->idsBySku variable, but in the end of the method these storage will * be truncated to $idsLimit quantity. * As a result array with the products data will be returned with the following scheme: * $data['product_sku']['link_field_value' => 'product_type'] * * @throws \Exception * @SuppressWarnings(PHPMD.CyclomaticComplexity) */ public function retrieveProductIdsBySkus(array $skus) { $neededSkus = []; foreach ($skus as $sku) { $unifiedSku = $sku !== null ? strtolower(trim($sku)) : ''; if (!isset($this->idsBySku[$unifiedSku])) { $neededSkus[] = $sku; } } if (!empty($neededSkus)) { /** @var \Magento\Catalog\Model\ResourceModel\Product\Collection $collection */ $collection = $this->collectionFactory->create(); $collection->addFieldToFilter(\Magento\Catalog\Api\Data\ProductInterface::SKU, ['in' => $neededSkus]); $linkField = $this->metadataPool->getMetadata(\Magento\Catalog\Api\Data\ProductInterface::class) ->getLinkField(); $collection->setPageSize($this->batchSize); $pages = $collection->getLastPageNumber(); for ($currentPage = 1; $currentPage <= $pages; $currentPage++) { $collection->setCurPage($currentPage); foreach ($collection->getItems() as $item) { $sku = $item->getSku() !== null ? strtolower(trim($item->getSku())) : ''; $itemIdentifier = $item->getData($linkField); $this->idsBySku[$sku][$itemIdentifier] = $item->getTypeId(); } $collection->clear(); } } $productIds = []; foreach ($skus as $sku) { $unifiedSku = $sku !== null ? strtolower(trim($sku)) : ''; if (isset($this->idsBySku[$unifiedSku])) { $productIds[$sku] = $this->idsBySku[$unifiedSku]; } } $this->truncateToLimit(); return $productIds; } /** * Cleanup IDs by SKU cache more than some limit. * * @return void */ private function truncateToLimit() { if (count($this->idsBySku) > $this->idsLimit) { $this->idsBySku = array_slice($this->idsBySku, $this->idsLimit * -1, null, true); } } }