![]() 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/app/code/Cnc/Checkout/Block/Cart/ |
<?php /** * Copyright (c) 2020 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved. * https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * Cnc * Krzysztof Majkowski <[email protected]> */ namespace Cnc\Checkout\Block\Cart; use Magento\Catalog\Api\Data\ProductInterface; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Catalog\Block\Product\Context; use Magento\Catalog\Model\Product; use Magento\Catalog\Model\Product\LinkFactory; use Magento\Catalog\Model\Product\Visibility; use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory; use Magento\Catalog\Model\ResourceModel\Product\Link\Product\Collection; use Magento\CatalogInventory\Helper\Stock as StockHelper; use Magento\Checkout\Block\Cart\Crosssell; use Magento\Checkout\Model\Session; use Magento\Framework\App\ObjectManager; use Magento\Framework\Exception\NoSuchEntityException; use Magento\Quote\Model\Quote\Item\RelatedProducts; class Upsell extends Crosssell { protected $fillWithCartLink = false; protected $_maxItemCount = 3; /** * @var ProductRepositoryInterface */ private $productRepository; /** * @var CollectionFactory|null */ private $productCollectionFactory; /** * @var Product[] */ private $cartProducts; /** * Upsell constructor. * @param Context $context * @param Session $checkoutSession * @param Visibility $productVisibility * @param LinkFactory $productLinkFactory * @param RelatedProducts $itemRelationsList * @param StockHelper $stockHelper * @param ProductRepositoryInterface $productRepository * @param CollectionFactory|null $productCollectionFactory * @param array $data */ public function __construct( Context $context, Session $checkoutSession, Visibility $productVisibility, LinkFactory $productLinkFactory, RelatedProducts $itemRelationsList, StockHelper $stockHelper, ProductRepositoryInterface $productRepository, ?CollectionFactory $productCollectionFactory = null, array $data = [] ) { parent::__construct( $context, $checkoutSession, $productVisibility, $productLinkFactory, $itemRelationsList, $stockHelper, $data, $productCollectionFactory, $productRepository ); $this->productRepository = $productRepository; $this->productCollectionFactory = $productCollectionFactory ?? ObjectManager::getInstance()->get(CollectionFactory::class); } /** * @overridden * Overridden due to disable filling with cart related. * @return array * @throws NoSuchEntityException */ public function getItems() { if ($this->getRequest()->getFullActionName() == 'checkout_cart_index') { $this->fillWithCartLink = true; $this->_maxItemCount = 4; } $items = $this->getData('items'); if ($items === null) { $items = []; $ninProductIds = $this->_getCartProductIds(); if ($ninProductIds) { $lastAddedProduct = $this->getLastAddedProduct(); if ($lastAddedProduct) { $collection = $this->_getCollection()->addProductFilter($lastAddedProduct->getId()); if (!empty($ninProductIds)) { $collection->addExcludeProductFilter($ninProductIds); } $collection->setPositionOrder()->load(); foreach ($collection as $item) { $ninProductIds[] = $item->getId(); $items[] = $item; } } if ($this->fillWithCartLink && count($items) < $this->_maxItemCount) { $filterProductIds = array_merge( $this->getCartProductLinkIds(), $this->getCartRelatedProductLinkIds() ); $collection = $this->_getCollection()->addProductFilter( $filterProductIds )->addExcludeProductFilter( $ninProductIds )->setPageSize( $this->_maxItemCount - count($items) )->setGroupBy()->setPositionOrder()->load(); foreach ($collection as $item) { $items[] = $item; } } } $this->setData('items', $items); } return $items; } /** * @return Collection * @throws NoSuchEntityException */ protected function _getCollection() { /** @var Collection $collection */ $collection = $this->_productLinkFactory->create()->useUpSellLinks()->getProductCollection()->setStoreId( $this->_storeManager->getStore()->getId() )->addStoreFilter()->setPageSize( $this->_maxItemCount )->setVisibility( $this->_productVisibility->getVisibleInCatalogIds() ); $this->_addProductAttributesAndPrices($collection); return $collection; } /** * @return ProductInterface|null */ private function getLastAddedProduct(): ?ProductInterface { $product = null; $productId = $this->_getLastAddedProductId(); if ($productId) { try { $product = $this->productRepository->getById($productId); } catch (NoSuchEntityException $e) { $product = null; } } return $product; } /** * @return array */ private function getCartRelatedProductLinkIds(): array { $productIds = $this->_itemRelationsList->getRelatedProductIds($this->getQuote()->getAllItems()); $linkIds = []; if (!empty($productIds)) { $linkField = 'entity_id'; /* @var $collection \Magento\Catalog\Model\ResourceModel\Product\Collection */ $collection = $this->productCollectionFactory->create(); $collection->addIdFilter($productIds); foreach ($collection as $product) { /** * @var Product $product */ $linkIds[] = $product->getData($linkField); } } return $linkIds; } /** * @return array */ private function getCartProductLinkIds(): array { $linkField='entity_id'; $linkIds = []; foreach ($this->getCartProducts() as $product) { /** * @var Product $product */ $linkIds[] = $product->getData($linkField); } return $linkIds; } /** * @return array|Product[] */ private function getCartProducts(): array { if ($this->cartProducts === null) { $this->cartProducts = []; foreach ($this->getQuote()->getAllItems() as $quoteItem) { /* @var $quoteItem \Magento\Quote\Model\Quote\Item */ $product = $quoteItem->getProduct(); if ($product) { $this->cartProducts[$product->getEntityId()] = $product; } } } return $this->cartProducts; } }