oauth2-server/src/Grant/AuthCodeGrant.php

137 lines
4.7 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-02-11 23:00:01 +05:30
use DateTime;
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
use Psr\Http\Message\ServerRequestInterface;
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-11 23:00:01 +05:30
* @inheritdoc
*/
2016-02-11 23:00:01 +05:30
public function respondToRequest(
ServerRequestInterface $request,
ResponseTypeInterface $responseType,
DateInterval $tokenTTL,
$scopeDelimiter = ' '
) {
2016-02-11 23:00:01 +05:30
if (
isset($request->getQueryParams()['response_type'])
&& $request->getQueryParams()['response_type'] === 'code'
&& isset($request->getQueryParams()['client_id'])
) {
return $this->respondToAuthorizationRequest($request, $scopeDelimiter, $tokenTTL);
} elseif (
isset($request->getParsedBody()['grant_type'])
&& $request->getParsedBody()['grant_type'] === 'authorization_code'
) {
return $this->respondToAccessTokenRequest($request, $responseType, $tokenTTL);
} else {
throw OAuthServerException::serverError('respondToRequest() should not have been called');
}
2013-05-08 03:50:32 +05:30
}
2013-02-14 01:06:56 +05:30
/**
2016-02-11 23:00:01 +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
* @param string $scopeDelimiter
* @param DateTime $tokenTTL
*/
2016-02-11 23:00:01 +05:30
protected function respondToAuthorizationRequest(
ServerRequestInterface $request,
$scopeDelimiter = ' ',
DateTime $tokenTTL
) {
2014-04-06 23:44:46 +05:30
// Get required params
2016-02-11 23:00:01 +05:30
/*$clientId = array_key_exists('client_id', $request->getQueryParams())
? $request->getQueryParams()['client_id'] // $_GET['client_id']
: null;
2014-03-10 01:04:23 +05:30
if (is_null($clientId)) {
2016-02-11 23:00:01 +05:30
throw OAuthServerException::invalidRequest('client_id', null, '`%s` parameter is missing');
}
2016-02-11 23:00:01 +05:30
$redirectUri = array_key_exists('redirect_uri', $request->getQueryParams())
? $request->getQueryParams()['redirect_uri'] // $_GET['redirect_uri']
: null;
2014-03-10 01:04:23 +05:30
if (is_null($redirectUri)) {
2016-02-11 23:00:01 +05:30
throw OAuthServerException::invalidRequest('redirect_uri', null, '`%s` parameter is missing');
}
2014-08-06 14:23:47 +05:30
// Validate client ID and redirect URI
2016-02-11 23:00:01 +05:30
$client = $this->clientRepository->getClientEntity(
2014-08-06 14:23:47 +05:30
$clientId,
2016-02-11 23:00:01 +05:30
$this->getIdentifier(),
2014-08-06 14:23:47 +05:30
null,
2016-02-11 23:00:01 +05:30
$redirectUri
2014-08-06 14:23:47 +05:30
);
2016-02-11 23:00:01 +05:30
if (($client instanceof ClientEntityInterface) === false) {
throw OAuthServerException::invalidClient();
}
2016-02-11 23:00:01 +05:30
$state = array_key_exists('state', $request->getQueryParams())
? $request->getQueryParams()['state'] // $_GET['state']
: null;
2014-03-10 01:04:23 +05:30
// Validate any scopes that are in the request
2016-02-11 23:00:01 +05:30
$scopeParam = array_key_exists('scope', $request->getQueryParams())
? $request->getQueryParams()['scope'] // $_GET['scope']
: '';
$scopes = $this->validateScopes($scopeParam, $scopeDelimiter, $client);
// Create a new authorization code
$authCode = new AuthCodeEntity();
$authCode->setIdentifier(SecureKey::generate());
$authCode->setExpiryDateTime((new \DateTime())->add($authCodeTTL));
$authCode->setClient($client);
$authCode->setUserIdentifier($userEntity->getIdentifier());
// Associate scopes with the session and access token
foreach ($scopes as $scope) {
$authCode->addScope($scope);
}*/
}
/**
2016-02-11 23:00:01 +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-11 23:00:01 +05:30
* @return \League\OAuth2\Server\ResponseTypes\ResponseTypeInterface
*/
2016-02-11 23:00:01 +05:30
protected function respondToAccessTokenRequest(
ServerRequestInterface $request,
ResponseTypeInterface $responseType,
DateInterval $accessTokenTTL
) {
2014-04-06 23:44:46 +05:30
2016-02-11 23:00:01 +05:30
}
/**
2016-02-11 23:00:01 +05:30
* @inheritdoc
2013-02-14 01:06:56 +05:30
*/
2016-02-11 23:00:01 +05:30
public function canRespondToRequest(ServerRequestInterface $request)
{
return (
(
strtoupper($request->getMethod()) === 'GET'
&& isset($request->getQueryParams()['response_type'])
&& $request->getQueryParams()['response_type'] === 'code'
&& isset($request->getQueryParams()['client_id'])
) || (
isset($request->getParsedBody()['grant_type'])
&& $request->getParsedBody()['grant_type'] === 'authorization_code'
)
2014-04-06 23:44:46 +05:30
);
2013-02-01 16:20:32 +05:30
}
2013-09-07 22:29:44 +05:30
}