class AuthorizationCodeGrantService in OAuth2 Client 8.2
Same name and namespace in other branches
- 8.3 src/Service/Grant/AuthorizationCodeGrantService.php \Drupal\oauth2_client\Service\Grant\AuthorizationCodeGrantService
Handles Authorization Grants for the OAuth2 Client module.
Hierarchy
- class \Drupal\oauth2_client\Service\Oauth2ClientServiceBase implements Oauth2ClientServiceInterface
- class \Drupal\oauth2_client\Service\Grant\Oauth2ClientGrantServiceBase implements Oauth2ClientGrantServiceInterface
- class \Drupal\oauth2_client\Service\Grant\AuthorizationCodeGrantService
- class \Drupal\oauth2_client\Service\Grant\Oauth2ClientGrantServiceBase implements Oauth2ClientGrantServiceInterface
Expanded class hierarchy of AuthorizationCodeGrantService
1 string reference to 'AuthorizationCodeGrantService'
File
- src/
Service/ Grant/ AuthorizationCodeGrantService.php, line 16
Namespace
Drupal\oauth2_client\Service\GrantView source
class AuthorizationCodeGrantService extends Oauth2ClientGrantServiceBase {
/**
* The Drupal tempstore.
*
* @var \Drupal\Core\TempStore\PrivateTempStore
*/
protected $tempstore;
/**
* Construct an OAuth2Client object.
*
* @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
* The Request Stack.
* @param \Drupal\Core\State\StateInterface $state
* The Drupal state.
* @param \Drupal\Core\Routing\UrlGeneratorInterface $urlGenerator
* The URL generator service.
* @param \Drupal\oauth2_client\PluginManager\Oauth2ClientPluginManagerInterface $oauth2ClientPluginManager
* The OAuth2 Client plugin manager.
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $tempstoreFactory
* The Drupal private tempstore factory.
*/
public function __construct(RequestStack $requestStack, StateInterface $state, UrlGeneratorInterface $urlGenerator, Oauth2ClientPluginManagerInterface $oauth2ClientPluginManager, PrivateTempStoreFactory $tempstoreFactory) {
parent::__construct($requestStack, $state, $urlGenerator, $oauth2ClientPluginManager);
$this->tempstore = $tempstoreFactory
->get('oauth2_client');
}
/**
* {@inheritdoc}
*/
public function getAccessToken($clientId) {
$provider = $this
->getProvider($clientId);
// If an authorization code is not set in the URL parameters, get one.
if (!$this->currentRequest
->get('code')) {
// Get the authorization URL. This also generates the state.
$authorization_url = $provider
->getAuthorizationUrl();
// Save the state to Drupal's tempstore.
$this->tempstore
->set('oauth2_client_state-' . $clientId, $provider
->getState());
// Redirect to the authorization URL.
$redirect = new RedirectResponse($authorization_url);
$redirect
->send();
exit;
}
elseif (!$this->currentRequest
->get('state') || $this->currentRequest
->get('state') !== $this->tempstore
->get('oauth2_client_state-' . $clientId)) {
// Potential CSRF attack. Bail out.
$this->tempstore
->delete('oauth2_client_state-' . $clientId);
}
else {
try {
// Try to get an access token using the authorization code grant.
$accessToken = $provider
->getAccessToken('authorization_code', [
'code' => $this->currentRequest
->get('code'),
]);
$this
->storeAccessToken($clientId, $accessToken);
} catch (IdentityProviderException $e) {
watchdog_exception('OAuth2 Client', $e);
}
}
}
/**
* {@inheritdoc}
*/
public function getGrantProvider($clientId) {
return $this
->getProvider($clientId);
}
}