123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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);
- }
- }
- }
|