1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller\Plugin;
- use Magento\Customer\Model\Session;
- use Magento\Framework\App\ActionInterface;
- use Magento\Framework\App\RequestInterface;
- use Magento\Framework\App\ResponseInterface;
- use Magento\Framework\App\Action\AbstractAction;
- use Magento\Framework\Controller\ResultInterface;
- class Account
- {
- /**
- * @var Session
- */
- protected $session;
- /**
- * @var array
- */
- private $allowedActions = [];
- /**
- * @param Session $customerSession
- * @param array $allowedActions List of actions that are allowed for not authorized users
- */
- public function __construct(
- Session $customerSession,
- array $allowedActions = []
- ) {
- $this->session = $customerSession;
- $this->allowedActions = $allowedActions;
- }
- /**
- * Dispatch actions allowed for not authorized users
- *
- * @param AbstractAction $subject
- * @param RequestInterface $request
- * @return void
- */
- public function beforeDispatch(AbstractAction $subject, RequestInterface $request)
- {
- $action = strtolower($request->getActionName());
- $pattern = '/^(' . implode('|', $this->allowedActions) . ')$/i';
- if (!preg_match($pattern, $action)) {
- if (!$this->session->authenticate()) {
- $subject->getActionFlag()->set('', ActionInterface::FLAG_NO_DISPATCH, true);
- }
- } else {
- $this->session->setNoReferer(true);
- }
- }
- /**
- * Remove No-referer flag from customer session
- *
- * @param AbstractAction $subject
- * @param ResponseInterface|ResultInterface $result
- * @param RequestInterface $request
- * @return ResponseInterface|ResultInterface
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function afterDispatch(AbstractAction $subject, $result, RequestInterface $request)
- {
- $this->session->unsNoReferer(false);
- return $result;
- }
- }
|