123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\ConfigurableProduct\Pricing\Price;
- use Magento\Catalog\Api\Data\ProductInterface;
- use Magento\Catalog\Model\ResourceModel\Product\LinkedProductSelectBuilderInterface;
- use Magento\Framework\App\ResourceConnection;
- use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory;
- use Magento\Store\Model\StoreManagerInterface;
- /**
- * Retrieve list of products where each product contains lower price than others at least for one possible price type
- */
- class LowestPriceOptionsProvider implements LowestPriceOptionsProviderInterface
- {
- /**
- * @var ResourceConnection
- */
- private $resource;
- /**
- * @var LinkedProductSelectBuilderInterface
- */
- private $linkedProductSelectBuilder;
- /**
- * @var CollectionFactory
- */
- private $collectionFactory;
- /**
- * @var StoreManagerInterface
- */
- private $storeManager;
- /**
- * Key is product id and store id. Value is array of prepared linked products
- *
- * @var array
- */
- private $linkedProductMap;
- /**
- * @param ResourceConnection $resourceConnection
- * @param LinkedProductSelectBuilderInterface $linkedProductSelectBuilder
- * @param CollectionFactory $collectionFactory
- * @param StoreManagerInterface $storeManager
- */
- public function __construct(
- ResourceConnection $resourceConnection,
- LinkedProductSelectBuilderInterface $linkedProductSelectBuilder,
- CollectionFactory $collectionFactory,
- StoreManagerInterface $storeManager
- ) {
- $this->resource = $resourceConnection;
- $this->linkedProductSelectBuilder = $linkedProductSelectBuilder;
- $this->collectionFactory = $collectionFactory;
- $this->storeManager = $storeManager;
- }
- /**
- * {@inheritdoc}
- */
- public function getProducts(ProductInterface $product)
- {
- $key = $this->storeManager->getStore()->getId() . '-' . $product->getId();
- if (!isset($this->linkedProductMap[$key])) {
- $productIds = $this->resource->getConnection()->fetchCol(
- '(' . implode(') UNION (', $this->linkedProductSelectBuilder->build($product->getId())) . ')'
- );
- $this->linkedProductMap[$key] = $this->collectionFactory->create()
- ->addAttributeToSelect(
- ['price', 'special_price', 'special_from_date', 'special_to_date', 'tax_class_id']
- )
- ->addIdFilter($productIds)
- ->getItems();
- }
- return $this->linkedProductMap[$key];
- }
- }
|