| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Controller/AbstractController/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Controller/AbstractController/PrintShipment.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Controller\AbstractController;
use Magento\Framework\App\Action\Context;
use Magento\Framework\View\Result\PageFactory;
abstract class PrintShipment extends \Magento\Framework\App\Action\Action
{
/**
* @var OrderViewAuthorizationInterface
*/
protected $orderAuthorization;
/**
* @var \Magento\Framework\Registry
*/
protected $_coreRegistry;
/**
* @var PageFactory
*/
protected $resultPageFactory;
/**
* @param Context $context
* @param OrderViewAuthorizationInterface $orderAuthorization
* @param \Magento\Framework\Registry $registry
* @param PageFactory $resultPageFactory
*/
public function __construct(
Context $context,
OrderViewAuthorizationInterface $orderAuthorization,
\Magento\Framework\Registry $registry,
PageFactory $resultPageFactory
) {
$this->orderAuthorization = $orderAuthorization;
$this->_coreRegistry = $registry;
$this->resultPageFactory = $resultPageFactory;
parent::__construct($context);
}
/**
* Print Shipment Action
*
* @return \Magento\Framework\Controller\Result\Redirect|\Magento\Framework\View\Result\Page
*/
public function execute()
{
$shipmentId = (int)$this->getRequest()->getParam('shipment_id');
if ($shipmentId) {
$shipment = $this->_objectManager->create(\Magento\Sales\Model\Order\Shipment::class)->load($shipmentId);
$order = $shipment->getOrder();
} else {
$orderId = (int)$this->getRequest()->getParam('order_id');
$order = $this->_objectManager->create(\Magento\Sales\Model\Order::class)->load($orderId);
}
if ($this->orderAuthorization->canView($order)) {
$this->_coreRegistry->register('current_order', $order);
if (isset($shipment)) {
$this->_coreRegistry->register('current_shipment', $shipment);
}
/** @var \Magento\Framework\View\Result\Page $resultPage */
$resultPage = $this->resultPageFactory->create();
$resultPage->addHandle('print');
return $resultPage;
} else {
/** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */
$resultRedirect = $this->resultRedirectFactory->create();
if ($this->_objectManager->get(\Magento\Customer\Model\Session::class)->isLoggedIn()) {
$resultRedirect->setPath('*/*/history');
} else {
$resultRedirect->setPath('sales/guest/form');
}
return $resultRedirect;
}
}
}