1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Model\App\Action;
- use Magento\Customer\Model\Context;
- use Magento\Customer\Model\GroupManagement;
- use Magento\Framework\App\Action\AbstractAction;
- use Magento\Framework\App\RequestInterface;
- use Magento\Customer\Model\Session;
- use Magento\Framework\App\Http\Context as HttpContext;
- /**
- * Class ContextPlugin
- */
- class ContextPlugin
- {
- /**
- * @var Session
- */
- protected $customerSession;
- /**
- * @var HttpContext
- */
- protected $httpContext;
- /**
- * @param Session $customerSession
- * @param HttpContext $httpContext
- */
- public function __construct(Session $customerSession, HttpContext $httpContext)
- {
- $this->customerSession = $customerSession;
- $this->httpContext = $httpContext;
- }
- /**
- * Set customer group and customer session id to HTTP context
- *
- * @param AbstractAction $subject
- * @param RequestInterface $request
- * @return void
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function beforeDispatch(AbstractAction $subject, RequestInterface $request)
- {
- $this->httpContext->setValue(
- Context::CONTEXT_GROUP,
- $this->customerSession->getCustomerGroupId(),
- GroupManagement::NOT_LOGGED_IN_ID
- );
- $this->httpContext->setValue(
- Context::CONTEXT_AUTH,
- $this->customerSession->isLoggedIn(),
- false
- );
- }
- }
|