12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Controller\Express\AbstractExpress;
- use Magento\Framework\Controller\ResultFactory;
- class Cancel extends \Magento\Paypal\Controller\Express\AbstractExpress
- {
- /**
- * Cancel Express Checkout
- *
- * @return \Magento\Framework\Controller\Result\Redirect
- */
- public function execute()
- {
- try {
- $this->_initToken(false);
- // TODO verify if this logic of order cancellation is deprecated
- // if there is an order - cancel it
- $orderId = $this->_getCheckoutSession()->getLastOrderId();
- /** @var \Magento\Sales\Model\Order $order */
- $order = $orderId ? $this->_orderFactory->create()->load($orderId) : false;
- if ($order && $order->getId() && $order->getQuoteId() == $this->_getCheckoutSession()->getQuoteId()) {
- $order->cancel()->save();
- $this->_getCheckoutSession()
- ->unsLastQuoteId()
- ->unsLastSuccessQuoteId()
- ->unsLastOrderId()
- ->unsLastRealOrderId();
- $this->messageManager->addSuccessMessage(
- __('Express Checkout and Order have been canceled.')
- );
- } else {
- $this->messageManager->addSuccessMessage(
- __('Express Checkout has been canceled.')
- );
- }
- } catch (\Magento\Framework\Exception\LocalizedException $e) {
- $this->messageManager->addExceptionMessage($e, $e->getMessage());
- } catch (\Exception $e) {
- $this->messageManager->addExceptionMessage($e, __('Unable to cancel Express Checkout'));
- }
- /** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
- return $resultRedirect->setPath('checkout/cart');
- }
- }
|