2013-02-01 16:20:32 +05:30
|
|
|
<?php
|
|
|
|
|
2013-05-09 00:12:23 +05:30
|
|
|
namespace League\OAuth2\Server\Grant;
|
2013-05-08 23:36:09 +05:30
|
|
|
|
2015-04-06 02:27:29 +05:30
|
|
|
use DateInterval;
|
2016-02-20 04:39:39 +05:30
|
|
|
use League\Event\Event;
|
2016-02-12 19:48:52 +05:30
|
|
|
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
|
2016-02-12 17:25:41 +05:30
|
|
|
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
|
2016-02-11 23:00:01 +05:30
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
2016-02-12 15:31:15 +05:30
|
|
|
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface;
|
2016-02-12 19:02:58 +05:30
|
|
|
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
|
2016-02-12 17:25:41 +05:30
|
|
|
use League\OAuth2\Server\Repositories\UserRepositoryInterface;
|
2016-02-11 23:00:01 +05:30
|
|
|
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
|
2016-02-12 15:31:15 +05:30
|
|
|
use League\OAuth2\Server\Utils\KeyCrypt;
|
2016-02-12 17:25:41 +05:30
|
|
|
use League\Plates\Engine;
|
2016-02-11 23:00:01 +05:30
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
2016-02-12 15:31:15 +05:30
|
|
|
use Zend\Diactoros\Response;
|
|
|
|
use Zend\Diactoros\Uri;
|
2013-02-01 16:20:32 +05:30
|
|
|
|
2014-05-02 21:54:55 +05:30
|
|
|
class AuthCodeGrant extends AbstractGrant
|
2014-04-06 23:44:46 +05:30
|
|
|
{
|
2016-02-12 15:31:15 +05:30
|
|
|
/**
|
|
|
|
* @var \DateInterval
|
|
|
|
*/
|
|
|
|
private $authCodeTTL;
|
2016-02-12 17:25:41 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \League\OAuth2\Server\Repositories\UserRepositoryInterface
|
|
|
|
*/
|
|
|
|
private $userRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var null|string
|
|
|
|
*/
|
|
|
|
private $pathToLoginTemplate;
|
|
|
|
|
2016-02-12 15:31:15 +05:30
|
|
|
/**
|
2016-02-12 17:25:41 +05:30
|
|
|
* @var null|string
|
2016-02-12 15:31:15 +05:30
|
|
|
*/
|
2016-02-12 17:25:41 +05:30
|
|
|
private $pathToAuthorizeTemplate;
|
2016-02-12 15:31:15 +05:30
|
|
|
|
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
|
|
|
|
* @param string|null $pathToLoginTemplate
|
|
|
|
* @param string|null $pathToAuthorizeTemplate
|
2016-02-12 15:31:15 +05:30
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
AuthCodeRepositoryInterface $authCodeRepository,
|
2016-02-12 19:02:58 +05:30
|
|
|
RefreshTokenRepositoryInterface $refreshTokenRepository,
|
2016-02-12 17:25:41 +05:30
|
|
|
UserRepositoryInterface $userRepository,
|
2016-02-12 15:31:15 +05:30
|
|
|
\DateInterval $authCodeTTL,
|
2016-02-12 17:25:41 +05:30
|
|
|
$pathToLoginTemplate = null,
|
|
|
|
$pathToAuthorizeTemplate = null
|
2015-04-06 02:27:29 +05:30
|
|
|
) {
|
2016-02-18 17:37:23 +05:30
|
|
|
$this->setAuthCodeRepository($authCodeRepository);
|
|
|
|
$this->setRefreshTokenRepository($refreshTokenRepository);
|
2016-02-12 17:25:41 +05:30
|
|
|
$this->userRepository = $userRepository;
|
2016-02-12 15:31:15 +05:30
|
|
|
$this->authCodeTTL = $authCodeTTL;
|
2016-02-12 19:58:24 +05:30
|
|
|
$this->refreshTokenTTL = new \DateInterval('P1M');
|
2016-02-21 22:38:49 +05:30
|
|
|
|
2016-02-21 23:43:39 +05:30
|
|
|
$this->pathToLoginTemplate = __DIR__ . '/../ResponseTypes/DefaultTemplates/login_user';
|
2016-02-21 22:38:49 +05:30
|
|
|
if ($pathToLoginTemplate !== null) {
|
|
|
|
$this->pathToLoginTemplate = (substr($pathToLoginTemplate, -4) === '.php')
|
|
|
|
? substr($pathToLoginTemplate, 0, -4)
|
|
|
|
: $pathToLoginTemplate;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->pathToAuthorizeTemplate = __DIR__ . '/../ResponseTypes/DefaultTemplates/authorize_client';
|
|
|
|
if ($pathToAuthorizeTemplate !== null) {
|
|
|
|
$this->pathToAuthorizeTemplate = (substr($pathToAuthorizeTemplate, -4) === '.php')
|
|
|
|
? substr($pathToAuthorizeTemplate, 0, -4)
|
|
|
|
: $pathToAuthorizeTemplate;
|
|
|
|
}
|
2013-05-08 03:50:32 +05:30
|
|
|
}
|
|
|
|
|
2013-02-14 01:06:56 +05:30
|
|
|
/**
|
2016-02-20 04:39:39 +05:30
|
|
|
* Respond to an authorization request.
|
2014-11-12 23:40:29 +05:30
|
|
|
*
|
2016-02-11 23:00:01 +05:30
|
|
|
* @param \Psr\Http\Message\ServerRequestInterface $request
|
2016-02-12 15:31:15 +05:30
|
|
|
*
|
|
|
|
* @throws \League\OAuth2\Server\Exception\OAuthServerException
|
2016-02-20 04:39:39 +05:30
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2013-03-31 18:07:02 +05:30
|
|
|
*/
|
2016-02-11 23:00:01 +05:30
|
|
|
protected function respondToAuthorizationRequest(
|
2016-02-12 15:31:15 +05:30
|
|
|
ServerRequestInterface $request
|
2016-02-11 23:00:01 +05:30
|
|
|
) {
|
2016-02-21 20:02:16 +05:30
|
|
|
$clientId = $this->getQueryStringParameter(
|
|
|
|
'client_id',
|
|
|
|
$request,
|
|
|
|
$this->getServerParameter('PHP_AUTH_USER', $request)
|
|
|
|
);
|
|
|
|
if (is_null($clientId)) {
|
2016-02-21 22:10:01 +05:30
|
|
|
throw OAuthServerException::invalidRequest('client_id');
|
2016-02-21 20:02:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
$client = $this->clientRepository->getClientEntity(
|
|
|
|
$clientId,
|
|
|
|
$this->getIdentifier()
|
|
|
|
);
|
2014-08-06 14:23:47 +05:30
|
|
|
|
2016-02-12 19:48:52 +05:30
|
|
|
if ($client instanceof ClientEntityInterface === false) {
|
2016-02-21 22:38:49 +05:30
|
|
|
$this->getEmitter()->emit(new Event('client.authentication.failed', $request));
|
2016-02-12 15:31:15 +05:30
|
|
|
|
2016-02-11 23:00:01 +05:30
|
|
|
throw OAuthServerException::invalidClient();
|
2013-03-31 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
2016-02-21 23:43:39 +05:30
|
|
|
$redirectUriParameter = $this->getQueryStringParameter('redirect_uri', $request, $client->getRedirectUri());
|
|
|
|
if ($redirectUriParameter !== $client->getRedirectUri()) {
|
|
|
|
throw OAuthServerException::invalidClient();
|
|
|
|
}
|
|
|
|
|
2016-02-18 16:19:39 +05:30
|
|
|
$scopes = $this->validateScopes($request, $client, $client->getRedirectUri());
|
2016-02-12 15:31:15 +05:30
|
|
|
$queryString = http_build_query($request->getQueryParams());
|
2016-02-12 17:25:41 +05:30
|
|
|
$postbackUri = new Uri(
|
|
|
|
sprintf(
|
|
|
|
'//%s%s',
|
|
|
|
$request->getServerParams()['HTTP_HOST'],
|
|
|
|
$request->getServerParams()['REQUEST_URI']
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$userId = null;
|
2016-02-12 19:48:52 +05:30
|
|
|
$userHasApprovedClient = null;
|
|
|
|
if ($this->getRequestParameter('action', $request, null) !== null) {
|
|
|
|
$userHasApprovedClient = ($this->getRequestParameter('action', $request) === 'approve');
|
|
|
|
}
|
2016-02-12 15:31:15 +05:30
|
|
|
|
2016-02-12 19:48:52 +05:30
|
|
|
// Check if the user has been authenticated
|
2016-02-12 17:25:41 +05:30
|
|
|
$oauthCookie = $this->getCookieParameter('oauth_authorize_request', $request, null);
|
|
|
|
if ($oauthCookie !== null) {
|
2016-02-12 15:31:15 +05:30
|
|
|
try {
|
2016-02-12 17:25:41 +05:30
|
|
|
$oauthCookiePayload = json_decode(KeyCrypt::decrypt($oauthCookie, $this->pathToPublicKey));
|
2016-02-12 19:48:52 +05:30
|
|
|
if (is_object($oauthCookiePayload)) {
|
|
|
|
$userId = $oauthCookiePayload->user_id;
|
|
|
|
}
|
2016-02-12 15:31:15 +05:30
|
|
|
} catch (\LogicException $e) {
|
|
|
|
throw OAuthServerException::serverError($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 17:25:41 +05:30
|
|
|
// The username + password might be available in $_POST
|
2016-02-12 19:48:52 +05:30
|
|
|
$usernameParameter = $this->getRequestParameter('username', $request, null);
|
|
|
|
$passwordParameter = $this->getRequestParameter('password', $request, null);
|
2016-02-12 17:25:41 +05:30
|
|
|
|
|
|
|
$loginError = null;
|
|
|
|
|
|
|
|
// Assert if the user has logged in already
|
|
|
|
if ($userId === null && $usernameParameter !== null && $passwordParameter !== null) {
|
|
|
|
$userEntity = $this->userRepository->getUserEntityByUserCredentials(
|
|
|
|
$usernameParameter,
|
|
|
|
$passwordParameter
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($userEntity instanceof UserEntityInterface) {
|
|
|
|
$userId = $userEntity->getIdentifier();
|
|
|
|
} else {
|
|
|
|
$loginError = 'Incorrect username or password';
|
2016-02-12 15:31:15 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 17:25:41 +05:30
|
|
|
// The user hasn't logged in yet so show a login form
|
|
|
|
if ($userId === null) {
|
2016-02-12 19:48:52 +05:30
|
|
|
$engine = new Engine(dirname($this->pathToLoginTemplate));
|
2016-02-18 16:19:39 +05:30
|
|
|
$pathParts = explode(DIRECTORY_SEPARATOR, $this->pathToLoginTemplate);
|
2016-02-12 17:25:41 +05:30
|
|
|
$html = $engine->render(
|
2016-02-18 16:19:39 +05:30
|
|
|
end($pathParts),
|
2016-02-12 17:25:41 +05:30
|
|
|
[
|
|
|
|
'error' => $loginError,
|
|
|
|
'postback_uri' => (string) $postbackUri->withQuery($queryString),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
return new Response\HtmlResponse($html);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The user hasn't approved the client yet so show an authorize form
|
|
|
|
if ($userId !== null && $userHasApprovedClient === null) {
|
2016-02-12 19:48:52 +05:30
|
|
|
$engine = new Engine(dirname($this->pathToAuthorizeTemplate));
|
2016-02-18 16:19:39 +05:30
|
|
|
$pathParts = explode(DIRECTORY_SEPARATOR, $this->pathToAuthorizeTemplate);
|
2016-02-12 17:25:41 +05:30
|
|
|
$html = $engine->render(
|
2016-02-18 16:19:39 +05:30
|
|
|
end($pathParts),
|
2016-02-12 17:25:41 +05:30
|
|
|
[
|
|
|
|
'client' => $client,
|
|
|
|
'scopes' => $scopes,
|
|
|
|
'postback_uri' => (string) $postbackUri->withQuery($queryString),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
return new Response\HtmlResponse(
|
|
|
|
$html,
|
|
|
|
200,
|
|
|
|
[
|
|
|
|
'Set-Cookie' => sprintf(
|
|
|
|
'oauth_authorize_request=%s; Expires=%s',
|
2016-02-12 19:48:52 +05:30
|
|
|
urlencode(KeyCrypt::encrypt(
|
2016-02-12 17:25:41 +05:30
|
|
|
json_encode([
|
2016-02-12 19:48:52 +05:30
|
|
|
'user_id' => $userId,
|
2016-02-12 17:25:41 +05:30
|
|
|
]),
|
|
|
|
$this->pathToPrivateKey
|
2016-02-12 19:48:52 +05:30
|
|
|
)),
|
2016-02-12 17:25:41 +05:30
|
|
|
(new \DateTime())->add(new \DateInterval('PT5M'))->format('D, d M Y H:i:s e')
|
|
|
|
),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-22 13:28:12 +05:30
|
|
|
// The user has either approved or denied the client, so redirect them back
|
2016-02-18 16:19:39 +05:30
|
|
|
$redirectUri = new Uri($client->getRedirectUri());
|
2016-02-12 15:31:15 +05:30
|
|
|
parse_str($redirectUri->getQuery(), $redirectPayload);
|
2016-02-22 13:28:12 +05:30
|
|
|
|
|
|
|
$stateParameter = $this->getQueryStringParameter('state', $request);
|
2016-02-12 15:31:15 +05:30
|
|
|
if ($stateParameter !== null) {
|
|
|
|
$redirectPayload['state'] = $stateParameter;
|
|
|
|
}
|
|
|
|
|
2016-02-22 13:28:12 +05:30
|
|
|
// THe user approved the client, redirect them back with an auth code
|
2016-02-12 17:25:41 +05:30
|
|
|
if ($userHasApprovedClient === true) {
|
2016-02-12 15:31:15 +05:30
|
|
|
$authCode = $this->issueAuthCode(
|
|
|
|
$this->authCodeTTL,
|
|
|
|
$client,
|
|
|
|
$userId,
|
|
|
|
$redirectUri,
|
|
|
|
$scopes
|
|
|
|
);
|
|
|
|
|
2016-02-12 18:31:25 +05:30
|
|
|
$redirectPayload['code'] = KeyCrypt::encrypt(
|
|
|
|
json_encode(
|
|
|
|
[
|
|
|
|
'client_id' => $authCode->getClient()->getIdentifier(),
|
2016-02-21 23:43:39 +05:30
|
|
|
'redirect_uri' => $authCode->getRedirectUri(),
|
2016-02-12 18:31:25 +05:30
|
|
|
'auth_code_id' => $authCode->getIdentifier(),
|
|
|
|
'scopes' => $authCode->getScopes(),
|
|
|
|
'user_id' => $authCode->getUserIdentifier(),
|
2016-02-12 19:58:24 +05:30
|
|
|
'expire_time' => (new \DateTime())->add($this->authCodeTTL)->format('U'),
|
2016-02-12 18:31:25 +05:30
|
|
|
]
|
|
|
|
),
|
|
|
|
$this->pathToPrivateKey
|
|
|
|
);
|
2016-02-12 15:31:15 +05:30
|
|
|
|
2016-02-12 17:25:41 +05:30
|
|
|
return new Response\RedirectResponse($redirectUri->withQuery(http_build_query($redirectPayload)));
|
2016-02-12 15:31:15 +05:30
|
|
|
}
|
|
|
|
|
2016-02-22 13:28:12 +05:30
|
|
|
// The user denied the client, redirect them back with an error
|
2016-02-12 15:31:15 +05:30
|
|
|
$exception = OAuthServerException::accessDenied('The user denied the request', (string) $redirectUri);
|
2016-02-20 04:39:39 +05:30
|
|
|
|
2016-02-12 15:31:15 +05:30
|
|
|
return $exception->generateHttpResponse();
|
2016-02-11 23:00:01 +05:30
|
|
|
}
|
2013-03-31 18:07:02 +05:30
|
|
|
|
|
|
|
/**
|
2016-02-20 04:39:39 +05:30
|
|
|
* Respond to an access token request.
|
2013-03-31 18:07:02 +05:30
|
|
|
*
|
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
|
2013-03-31 18:07:02 +05:30
|
|
|
*/
|
2016-02-11 23:00:01 +05:30
|
|
|
protected function respondToAccessTokenRequest(
|
|
|
|
ServerRequestInterface $request,
|
|
|
|
ResponseTypeInterface $responseType,
|
|
|
|
DateInterval $accessTokenTTL
|
|
|
|
) {
|
2016-02-18 16:19:39 +05:30
|
|
|
// The redirect URI is required in this request
|
2016-02-21 23:43:39 +05:30
|
|
|
$redirectUri = $this->getRequestParameter('redirect_uri', $request, null);
|
2016-02-18 16:19:39 +05:30
|
|
|
if (is_null($redirectUri)) {
|
2016-02-21 22:10:01 +05:30
|
|
|
throw OAuthServerException::invalidRequest('redirect_uri');
|
2016-02-18 16:19:39 +05:30
|
|
|
}
|
|
|
|
|
2016-02-12 18:31:25 +05:30
|
|
|
// Validate request
|
|
|
|
$client = $this->validateClient($request);
|
2016-02-12 19:02:58 +05:30
|
|
|
$encryptedAuthCode = $this->getRequestParameter('code', $request, null);
|
2016-02-12 18:31:25 +05:30
|
|
|
|
2016-02-12 19:02:58 +05:30
|
|
|
if ($encryptedAuthCode === null) {
|
2016-02-12 18:31:25 +05:30
|
|
|
throw OAuthServerException::invalidRequest('code');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate the authorization code
|
|
|
|
try {
|
2016-02-12 19:58:24 +05:30
|
|
|
$authCodePayload = json_decode(KeyCrypt::decrypt($encryptedAuthCode, $this->pathToPublicKey));
|
2016-02-12 18:31:25 +05:30
|
|
|
if (time() > $authCodePayload->expire_time) {
|
|
|
|
throw OAuthServerException::invalidRequest('code', 'Authorization code has expired');
|
|
|
|
}
|
2016-02-12 19:02:58 +05:30
|
|
|
|
2016-02-18 17:37:23 +05:30
|
|
|
if ($this->getAuthCodeRepository()->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
|
|
|
|
|
|
|
if ($authCodePayload->redirect_uri !== $redirectUri) {
|
|
|
|
throw OAuthServerException::invalidRequest('redirect_uri', 'Invalid redirect URI');
|
|
|
|
}
|
2016-02-12 18:31:25 +05:30
|
|
|
} catch (\LogicException $e) {
|
2016-02-21 22:10:01 +05:30
|
|
|
throw OAuthServerException::invalidRequest('code', 'Cannot decrypt the authorization code');
|
2016-02-12 18:31:25 +05:30
|
|
|
}
|
|
|
|
|
2016-02-12 19:02:58 +05:30
|
|
|
// Issue and persist access + refresh tokens
|
2016-02-12 18:31:25 +05:30
|
|
|
$accessToken = $this->issueAccessToken(
|
|
|
|
$accessTokenTTL,
|
|
|
|
$client,
|
|
|
|
$authCodePayload->user_id,
|
|
|
|
$authCodePayload->scopes
|
|
|
|
);
|
2016-02-12 19:02:58 +05:30
|
|
|
$refreshToken = $this->issueRefreshToken($accessToken);
|
2016-02-12 18:31:25 +05:30
|
|
|
|
2016-02-12 19:02:58 +05:30
|
|
|
// Inject tokens into response type
|
2016-02-12 18:31:25 +05:30
|
|
|
$responseType->setAccessToken($accessToken);
|
2016-02-12 19:02:58 +05:30
|
|
|
$responseType->setRefreshToken($refreshToken);
|
2014-04-06 23:44:46 +05:30
|
|
|
|
2016-02-12 18:31:25 +05:30
|
|
|
return $responseType;
|
2016-02-11 23:00:01 +05:30
|
|
|
}
|
2013-03-31 18:07:02 +05:30
|
|
|
|
|
|
|
/**
|
2016-02-20 04:39:39 +05:30
|
|
|
* {@inheritdoc}
|
2013-02-14 01:06:56 +05:30
|
|
|
*/
|
2016-02-11 23:00:01 +05:30
|
|
|
public function canRespondToRequest(ServerRequestInterface $request)
|
|
|
|
{
|
2016-02-20 04:39:39 +05:30
|
|
|
return
|
2016-02-11 23:00:01 +05:30
|
|
|
(
|
2016-02-12 19:48:52 +05:30
|
|
|
isset($request->getQueryParams()['response_type'])
|
2016-02-11 23:00:01 +05:30
|
|
|
&& $request->getQueryParams()['response_type'] === 'code'
|
|
|
|
&& isset($request->getQueryParams()['client_id'])
|
2016-02-20 04:39:39 +05:30
|
|
|
) || (parent::canRespondToRequest($request));
|
2013-02-01 16:20:32 +05:30
|
|
|
}
|
2016-02-12 15:31:15 +05:30
|
|
|
|
|
|
|
/**
|
2016-02-20 04:39:39 +05:30
|
|
|
* Return the grant identifier that can be used in matching up requests.
|
2016-02-12 15:31:15 +05:30
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getIdentifier()
|
|
|
|
{
|
|
|
|
return 'authorization_code';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-02-20 04:39:39 +05:30
|
|
|
* {@inheritdoc}
|
2016-02-12 15:31:15 +05:30
|
|
|
*/
|
|
|
|
public function respondToRequest(
|
|
|
|
ServerRequestInterface $request,
|
|
|
|
ResponseTypeInterface $responseType,
|
|
|
|
\DateInterval $accessTokenTTL
|
|
|
|
) {
|
|
|
|
if (
|
2016-02-21 22:38:49 +05:30
|
|
|
array_key_exists('response_type', $request->getQueryParams())
|
2016-02-12 15:31:15 +05:30
|
|
|
&& $request->getQueryParams()['response_type'] === 'code'
|
|
|
|
) {
|
|
|
|
return $this->respondToAuthorizationRequest($request);
|
|
|
|
}
|
2016-02-21 23:43:39 +05:30
|
|
|
|
|
|
|
return $this->respondToAccessTokenRequest($request, $responseType, $accessTokenTTL);
|
2016-02-12 15:31:15 +05:30
|
|
|
}
|
2013-09-07 22:29:44 +05:30
|
|
|
}
|