123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model\Quote\Item;
- use Magento\Framework\App\ObjectManager;
- use Magento\Framework\Exception\CouldNotSaveException;
- use Magento\Framework\Exception\NoSuchEntityException;
- class Repository implements \Magento\Quote\Api\CartItemRepositoryInterface
- {
- /**
- * Quote repository.
- *
- * @var \Magento\Quote\Api\CartRepositoryInterface
- */
- protected $quoteRepository;
- /**
- * Product repository.
- *
- * @var \Magento\Catalog\Api\ProductRepositoryInterface
- */
- protected $productRepository;
- /**
- * @var \Magento\Quote\Api\Data\CartItemInterfaceFactory
- */
- protected $itemDataFactory;
- /**
- * @var CartItemProcessorInterface[]
- */
- protected $cartItemProcessors;
- /**
- * @var CartItemOptionsProcessor
- */
- private $cartItemOptionsProcessor;
- /**
- * @param \Magento\Quote\Api\CartRepositoryInterface $quoteRepository
- * @param \Magento\Catalog\Api\ProductRepositoryInterface $productRepository
- * @param \Magento\Quote\Api\Data\CartItemInterfaceFactory $itemDataFactory
- * @param CartItemProcessorInterface[] $cartItemProcessors
- */
- public function __construct(
- \Magento\Quote\Api\CartRepositoryInterface $quoteRepository,
- \Magento\Catalog\Api\ProductRepositoryInterface $productRepository,
- \Magento\Quote\Api\Data\CartItemInterfaceFactory $itemDataFactory,
- array $cartItemProcessors = []
- ) {
- $this->quoteRepository = $quoteRepository;
- $this->productRepository = $productRepository;
- $this->itemDataFactory = $itemDataFactory;
- $this->cartItemProcessors = $cartItemProcessors;
- }
- /**
- * {@inheritdoc}
- */
- public function getList($cartId)
- {
- $output = [];
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->quoteRepository->getActive($cartId);
- /** @var \Magento\Quote\Model\Quote\Item $item */
- foreach ($quote->getAllVisibleItems() as $item) {
- $item = $this->getCartItemOptionsProcessor()->addProductOptions($item->getProductType(), $item);
- $output[] = $this->getCartItemOptionsProcessor()->applyCustomOptions($item);
- }
- return $output;
- }
- /**
- * {@inheritdoc}
- */
- public function save(\Magento\Quote\Api\Data\CartItemInterface $cartItem)
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $cartId = $cartItem->getQuoteId();
- $quote = $this->quoteRepository->getActive($cartId);
- $quoteItems = $quote->getItems();
- $quoteItems[] = $cartItem;
- $quote->setItems($quoteItems);
- $this->quoteRepository->save($quote);
- $quote->collectTotals();
- return $quote->getLastAddedItem();
- }
- /**
- * {@inheritdoc}
- */
- public function deleteById($cartId, $itemId)
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->quoteRepository->getActive($cartId);
- $quoteItem = $quote->getItemById($itemId);
- if (!$quoteItem) {
- throw new NoSuchEntityException(
- __('The %1 Cart doesn\'t contain the %2 item.', $cartId, $itemId)
- );
- }
- try {
- $quote->removeItem($itemId);
- $this->quoteRepository->save($quote);
- } catch (\Exception $e) {
- throw new CouldNotSaveException(__("The item couldn't be removed from the quote."));
- }
- return true;
- }
- /**
- * @return CartItemOptionsProcessor
- * @deprecated 100.1.0
- */
- private function getCartItemOptionsProcessor()
- {
- if (!$this->cartItemOptionsProcessor instanceof CartItemOptionsProcessor) {
- $this->cartItemOptionsProcessor = ObjectManager::getInstance()->get(CartItemOptionsProcessor::class);
- }
- return $this->cartItemOptionsProcessor;
- }
- }
|