| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Controller/Order/Plugin/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Controller/Order/Plugin/Authentication.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Controller\Order\Plugin;
use Magento\Framework\App\RequestInterface;
class Authentication
{
/**
* @var \Magento\Customer\Model\Url
*/
protected $customerUrl;
/**
* @var \Magento\Customer\Model\Session
*/
protected $customerSession;
/**
* @param \Magento\Customer\Model\Url $customerUrl
* @param \Magento\Customer\Model\Session $customerSession
*/
public function __construct(
\Magento\Customer\Model\Url $customerUrl,
\Magento\Customer\Model\Session $customerSession
) {
$this->customerUrl = $customerUrl;
$this->customerSession = $customerSession;
}
/**
* Authenticate user
*
* @param \Magento\Framework\App\ActionInterface $subject
* @param RequestInterface $request
* @return void
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function beforeDispatch(\Magento\Framework\App\ActionInterface $subject, RequestInterface $request)
{
$loginUrl = $this->customerUrl->getLoginUrl();
if (!$this->customerSession->authenticate($loginUrl)) {
$subject->getActionFlag()->set('', $subject::FLAG_NO_DISPATCH, true);
}
}
}