openstackid/app/libs/oauth2/endpoints/AuthorizationEndpoint.php
smarcet ad1844984e Implements: blueprint openid-oauth2-implicit-client-flow
Change-Id: Iee3c9412a3f75a4aba5421e8c5f881a60b396df0
2014-01-06 18:07:55 -03:00

50 lines
1.7 KiB
PHP

<?php
namespace oauth2\endpoints;
use oauth2\requests\OAuth2Request;
use oauth2\exceptions\InvalidOAuth2Request;
use oauth2\IOAuth2Protocol;
use oauth2\exceptions\InvalidGrantTypeException;
/**
* Class AuthorizationEndpoint
* Authorization Endpoint Implementation
* The authorization endpoint is used to interact with the resource
* owner and obtain an authorization grant. The authorization server
* MUST first verify the identity of the resource owner. The way in
* which the authorization server authenticates the resource owner
* (e.g., username and password login, session cookies) is beyond the
* scope of this specification.
* http://tools.ietf.org/html/rfc6749#section-3.1
* @package oauth2\endpoints
*/
class AuthorizationEndpoint implements IOAuth2Endpoint {
private $protocol;
public function __construct(IOAuth2Protocol $protocol){
$this->protocol = $protocol;
}
/**
* @param OAuth2Request $request
* @return mixed
* @throws \oauth2\exceptions\InvalidOAuth2Request
* @throws \oauth2\exceptions\InvalidClientException
* @throws \oauth2\exceptions\UriNotAllowedException
* @throws \oauth2\exceptions\ScopeNotAllowedException
* @throws \oauth2\exceptions\UnsupportedResponseTypeException
* @throws \oauth2\exceptions\UnAuthorizedClientException
* @throws \oauth2\exceptions\AccessDeniedException
* @throws \oauth2\exceptions\OAuth2GenericException
*/
public function handle(OAuth2Request $request)
{
foreach($this->protocol->getAvailableGrants() as $key => $grant){
if($grant->canHandle($request))
return $grant->handle($request);
}
throw new InvalidOAuth2Request;
}
}