12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Controller\AbstractController;
- use Magento\Framework\App\Action;
- use Magento\Framework\Registry;
- use Magento\Framework\App\Action\HttpPostActionInterface;
- /**
- * Abstract class for controllers Reorder(Customer) and Reorder(Guest)
- *
- * @package Magento\Sales\Controller\AbstractController
- */
- abstract class Reorder extends Action\Action implements HttpPostActionInterface
- {
- /**
- * @var \Magento\Sales\Controller\AbstractController\OrderLoaderInterface
- */
- protected $orderLoader;
- /**
- * @var Registry
- */
- protected $_coreRegistry;
- /**
- * @param Action\Context $context
- * @param OrderLoaderInterface $orderLoader
- * @param Registry $registry
- */
- public function __construct(
- Action\Context $context,
- OrderLoaderInterface $orderLoader,
- Registry $registry
- ) {
- $this->orderLoader = $orderLoader;
- $this->_coreRegistry = $registry;
- parent::__construct($context);
- }
- /**
- * Action for reorder
- *
- * @return \Magento\Framework\Controller\ResultInterface
- */
- public function execute()
- {
- $result = $this->orderLoader->load($this->_request);
- if ($result instanceof \Magento\Framework\Controller\ResultInterface) {
- return $result;
- }
- $order = $this->_coreRegistry->registry('current_order');
- /** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultRedirectFactory->create();
- /* @var $cart \Magento\Checkout\Model\Cart */
- $cart = $this->_objectManager->get(\Magento\Checkout\Model\Cart::class);
- $items = $order->getItemsCollection();
- foreach ($items as $item) {
- try {
- $cart->addOrderItem($item);
- } catch (\Magento\Framework\Exception\LocalizedException $e) {
- if ($this->_objectManager->get(\Magento\Checkout\Model\Session::class)->getUseNotice(true)) {
- $this->messageManager->addNoticeMessage($e->getMessage());
- } else {
- $this->messageManager->addErrorMessage($e->getMessage());
- }
- return $resultRedirect->setPath('*/*/history');
- } catch (\Exception $e) {
- $this->messageManager->addExceptionMessage(
- $e,
- __('We can\'t add this item to your shopping cart right now.')
- );
- return $resultRedirect->setPath('checkout/cart');
- }
- }
- $cart->save();
- return $resultRedirect->setPath('checkout/cart');
- }
- }
|