12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Webapi\Model\Authorization;
- use Magento\Authorization\Model\UserContextInterface;
- use Magento\Framework\Oauth\Helper\Request as OauthRequestHelper;
- use Magento\Framework\Oauth\OauthInterface as OauthService;
- use Magento\Integration\Api\IntegrationServiceInterface;
- use Magento\Framework\Webapi\Request;
- /**
- * A user context determined by OAuth headers in a HTTP request.
- */
- class OauthUserContext implements UserContextInterface
- {
- /**
- * @var Request
- */
- protected $request;
- /**
- * @var IntegrationServiceInterface
- */
- protected $integrationService;
- /**
- * @var OauthService
- */
- protected $oauthService;
- /**
- * @var OauthRequestHelper
- */
- protected $oauthHelper;
- /**
- * @var int
- */
- protected $integrationId;
- /**
- * Initialize dependencies.
- *
- * @param Request $request
- * @param IntegrationServiceInterface $integrationService
- * @param OauthService $oauthService
- * @param OauthRequestHelper $oauthHelper
- */
- public function __construct(
- Request $request,
- IntegrationServiceInterface $integrationService,
- OauthService $oauthService,
- OauthRequestHelper $oauthHelper
- ) {
- $this->request = $request;
- $this->integrationService = $integrationService;
- $this->oauthService = $oauthService;
- $this->oauthHelper = $oauthHelper;
- }
- /**
- * {@inheritdoc}
- */
- public function getUserId()
- {
- if ($this->integrationId) {
- return $this->integrationId;
- }
- $oauthRequest = $this->oauthHelper->prepareRequest($this->request);
- //If its not a valid Oauth request no further processing is needed
- if (empty($oauthRequest)) {
- return null;
- }
- $consumerId = $this->oauthService->validateAccessTokenRequest(
- $oauthRequest,
- $this->oauthHelper->getRequestUrl($this->request),
- $this->request->getMethod()
- );
- $integration = $this->integrationService->findActiveIntegrationByConsumerId($consumerId);
- return $this->integrationId = ($integration->getId() ? (int)$integration->getId() : null);
- }
- /**
- * {@inheritdoc}
- */
- public function getUserType()
- {
- return UserContextInterface::USER_TYPE_INTEGRATION;
- }
- }
|