oauth2-server/src/Grant/AuthCodeGrant.php

262 lines
10 KiB
PHP
Raw Normal View History

2013-02-01 16:20:32 +05:30
<?php
namespace League\OAuth2\Server\Grant;
2013-05-08 23:36:09 +05:30
use DateInterval;
2016-04-09 19:55:45 +05:30
use League\OAuth2\Server\Entities\ClientEntityInterface;
use League\OAuth2\Server\Entities\UserEntityInterface;
2016-02-11 23:00:01 +05:30
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface;
2016-02-12 19:02:58 +05:30
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
use League\OAuth2\Server\Repositories\UserRepositoryInterface;
2016-03-23 18:24:17 +05:30
use League\OAuth2\Server\RequestEvent;
2016-04-10 14:37:08 +05:30
use League\OAuth2\Server\RequestTypes\AuthorizationRequest;
2016-03-17 20:07:21 +05:30
use League\OAuth2\Server\ResponseTypes\RedirectResponse;
2016-02-11 23:00:01 +05:30
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
2016-03-18 02:03:04 +05:30
use League\OAuth2\Server\TemplateRenderer\RendererInterface;
2016-02-11 23:00:01 +05:30
use Psr\Http\Message\ServerRequestInterface;
2013-02-01 16:20:32 +05:30
2016-03-09 17:02:01 +05:30
class AuthCodeGrant extends AbstractAuthorizeGrant
2014-04-06 23:44:46 +05:30
{
/**
* @var \DateInterval
*/
private $authCodeTTL;
2016-02-12 19:02:58 +05:30
/**
* @param \League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface $authCodeRepository
* @param \League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface $refreshTokenRepository
* @param \League\OAuth2\Server\Repositories\UserRepositoryInterface $userRepository
* @param \DateInterval $authCodeTTL
2016-03-18 02:03:04 +05:30
* @param \League\OAuth2\Server\TemplateRenderer\RendererInterface|null $templateRenderer
*/
public function __construct(
AuthCodeRepositoryInterface $authCodeRepository,
2016-02-12 19:02:58 +05:30
RefreshTokenRepositoryInterface $refreshTokenRepository,
UserRepositoryInterface $userRepository,
\DateInterval $authCodeTTL,
2016-03-18 02:03:04 +05:30
RendererInterface $templateRenderer = null
) {
$this->setAuthCodeRepository($authCodeRepository);
$this->setRefreshTokenRepository($refreshTokenRepository);
2016-03-16 01:24:59 +05:30
$this->setUserRepository($userRepository);
$this->authCodeTTL = $authCodeTTL;
2016-02-12 19:58:24 +05:30
$this->refreshTokenTTL = new \DateInterval('P1M');
2016-03-09 17:02:01 +05:30
$this->templateRenderer = $templateRenderer;
2013-05-08 03:50:32 +05:30
}
/**
2016-02-20 04:39:39 +05:30
* Respond to an access token request.
*
2016-02-11 23:00:01 +05:30
* @param \Psr\Http\Message\ServerRequestInterface $request
* @param \League\OAuth2\Server\ResponseTypes\ResponseTypeInterface $responseType
* @param \DateInterval $accessTokenTTL
2014-12-10 18:40:35 +05:30
*
2016-02-12 19:02:58 +05:30
* @throws \League\OAuth2\Server\Exception\OAuthServerException
2016-02-20 04:39:39 +05:30
*
* @return \League\OAuth2\Server\ResponseTypes\ResponseTypeInterface
*/
public function respondToAccessTokenRequest(
2016-02-11 23:00:01 +05:30
ServerRequestInterface $request,
ResponseTypeInterface $responseType,
DateInterval $accessTokenTTL
) {
// Validate request
$client = $this->validateClient($request);
2016-02-12 19:02:58 +05:30
$encryptedAuthCode = $this->getRequestParameter('code', $request, null);
2016-02-12 19:02:58 +05:30
if ($encryptedAuthCode === null) {
throw OAuthServerException::invalidRequest('code');
}
// Validate the authorization code
try {
2016-03-17 20:07:21 +05:30
$authCodePayload = json_decode($this->decrypt($encryptedAuthCode));
if (time() > $authCodePayload->expire_time) {
throw OAuthServerException::invalidRequest('code', 'Authorization code has expired');
}
2016-02-12 19:02:58 +05:30
2016-03-16 01:24:59 +05:30
if ($this->authCodeRepository->isAuthCodeRevoked($authCodePayload->auth_code_id) === true) {
2016-02-12 19:02:58 +05:30
throw OAuthServerException::invalidRequest('code', 'Authorization code has been revoked');
}
if ($authCodePayload->client_id !== $client->getIdentifier()) {
throw OAuthServerException::invalidRequest('code', 'Authorization code was not issued to this client');
}
2016-02-21 23:43:39 +05:30
// The redirect URI is required in this request
$redirectUri = $this->getRequestParameter('redirect_uri', $request, null);
if (empty($authCodePayload->redirect_uri) === false && $redirectUri === null) {
throw OAuthServerException::invalidRequest('redirect_uri');
}
2016-02-21 23:43:39 +05:30
if ($authCodePayload->redirect_uri !== $redirectUri) {
throw OAuthServerException::invalidRequest('redirect_uri', 'Invalid redirect URI');
}
2016-03-15 05:40:47 +05:30
$scopes = [];
foreach ($authCodePayload->scopes as $scopeId) {
2016-03-24 15:34:15 +05:30
$scope = $this->scopeRepository->getScopeEntityByIdentifier($scopeId);
2016-03-15 05:40:47 +05:30
if ($scope === false) {
// @codeCoverageIgnoreStart
2016-03-15 05:40:47 +05:30
throw OAuthServerException::invalidScope($scopeId);
// @codeCoverageIgnoreEnd
2016-03-15 05:40:47 +05:30
}
$scopes[] = $scope;
}
} catch (\LogicException $e) {
2016-02-21 22:10:01 +05:30
throw OAuthServerException::invalidRequest('code', 'Cannot decrypt the authorization code');
}
2016-02-12 19:02:58 +05:30
// Issue and persist access + refresh tokens
2016-03-15 05:40:47 +05:30
$accessToken = $this->issueAccessToken($accessTokenTTL, $client, $authCodePayload->user_id, $scopes);
2016-02-12 19:02:58 +05:30
$refreshToken = $this->issueRefreshToken($accessToken);
2016-02-12 19:02:58 +05:30
// Inject tokens into response type
$responseType->setAccessToken($accessToken);
2016-02-12 19:02:58 +05:30
$responseType->setRefreshToken($refreshToken);
2014-04-06 23:44:46 +05:30
return $responseType;
2016-02-11 23:00:01 +05:30
}
/**
2016-02-20 04:39:39 +05:30
* Return the grant identifier that can be used in matching up requests.
*
* @return string
*/
public function getIdentifier()
{
return 'authorization_code';
}
2016-04-10 14:37:08 +05:30
/**
* @inheritdoc
*/
public function canRespondToAuthorizationRequest(ServerRequestInterface $request)
{
return (
array_key_exists('response_type', $request->getQueryParams())
&& $request->getQueryParams()['response_type'] === 'code'
&& isset($request->getQueryParams()['client_id'])
);
}
/**
* @inheritdoc
*/
public function validateAuthorizationRequest(ServerRequestInterface $request)
{
$clientId = $this->getQueryStringParameter(
'client_id',
$request,
$this->getServerParameter('PHP_AUTH_USER', $request)
);
if (is_null($clientId)) {
throw OAuthServerException::invalidRequest('client_id');
}
$client = $this->clientRepository->getClientEntity(
$clientId,
$this->getIdentifier()
);
if ($client instanceof ClientEntityInterface === false) {
$this->getEmitter()->emit(new RequestEvent('client.authentication.failed', $request));
throw OAuthServerException::invalidClient();
}
$redirectUri = $this->getQueryStringParameter('redirect_uri', $request);
if ($redirectUri !== null) {
if (
is_string($client->getRedirectUri())
&& (strcmp($client->getRedirectUri(), $redirectUri) !== 0)
) {
$this->getEmitter()->emit(new RequestEvent('client.authentication.failed', $request));
throw OAuthServerException::invalidClient();
} elseif (
is_array($client->getRedirectUri())
&& in_array($redirectUri, $client->getRedirectUri()) === false
) {
$this->getEmitter()->emit(new RequestEvent('client.authentication.failed', $request));
throw OAuthServerException::invalidClient();
}
}
$scopes = $this->validateScopes(
$this->getQueryStringParameter('scope', $request),
$client,
$client->getRedirectUri()
);
$stateParameter = $this->getQueryStringParameter('state', $request);
$authorizationRequest = new AuthorizationRequest();
$authorizationRequest->setGrantTypeId($this->getIdentifier());
$authorizationRequest->setClient($client);
$authorizationRequest->setRedirectUri($redirectUri);
$authorizationRequest->setState($stateParameter);
$authorizationRequest->setScopes($scopes);
return $authorizationRequest;
}
/**
* @inheritdoc
*/
public function completeAuthorizationRequest(AuthorizationRequest $authorizationRequest)
{
if ($authorizationRequest->getUser() instanceof UserEntityInterface === false) {
throw new \LogicException('An instance of UserEntityInterface should be set on the AuthorizationRequest');
}
$finalRedirectUri = ($authorizationRequest->getRedirectUri() === null)
? is_array($authorizationRequest->getClient()->getRedirectUri())
? $authorizationRequest->getClient()->getRedirectUri()[0]
: $authorizationRequest->getClient()->getRedirectUri()
: $authorizationRequest->getRedirectUri();
2016-04-10 14:37:08 +05:30
// The user approved the client, redirect them back with an auth code
if ($authorizationRequest->isAuthorizationApproved() === true) {
$authCode = $this->issueAuthCode(
$this->authCodeTTL,
$authorizationRequest->getClient(),
$authorizationRequest->getUser()->getIdentifier(),
$authorizationRequest->getRedirectUri(),
$authorizationRequest->getScopes()
);
$redirectPayload['code'] = $this->encrypt(
json_encode(
[
'client_id' => $authCode->getClient()->getIdentifier(),
'redirect_uri' => $authCode->getRedirectUri(),
'auth_code_id' => $authCode->getIdentifier(),
'scopes' => $authCode->getScopes(),
'user_id' => $authCode->getUserIdentifier(),
'expire_time' => (new \DateTime())->add($this->authCodeTTL)->format('U'),
]
)
);
$response = new RedirectResponse();
$response->setRedirectUri(
$this->makeRedirectUri(
$finalRedirectUri,
$redirectPayload
)
);
return $response;
}
// The user denied the client, redirect them back with an error
throw OAuthServerException::accessDenied(
'The user denied the request',
$finalRedirectUri
2016-04-10 14:37:08 +05:30
);
}
2013-09-07 22:29:44 +05:30
}