oauth2-server/src/League/OAuth2/Server/Grant/AbstractGrant.php

186 lines
5.0 KiB
PHP
Raw Normal View History

<?php
/**
2014-01-08 21:45:29 +05:30
* OAuth 2.0 Abstract grant
*
2014-01-08 21:45:29 +05:30
* @package league/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
2014-01-08 21:45:29 +05:30
* @copyright Copyright (c) PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/php-loep/oauth2-server
*/
namespace League\OAuth2\Server\Grant;
use League\OAuth2\Server\AuthorizationServer;
2014-01-16 22:20:16 +05:30
use League\OAuth2\Server\Entity\Scope;
2014-01-17 16:06:57 +05:30
use League\OAuth2\Server\Exception\ClientException;
2014-01-08 21:45:29 +05:30
/**
* Abstract grant class
*/
abstract class AbstractGrant implements GrantTypeInterface
{
/**
* Grant identifier
* @var string
*/
protected $identifier = '';
/**
2014-01-08 21:45:29 +05:30
* Response type
* @var string
*/
2014-01-10 18:00:13 +05:30
protected $responseType;
2014-01-08 21:45:29 +05:30
/**
* Callback to authenticate a user's name and password
* @var function
*/
2014-01-10 18:00:13 +05:30
protected $callback;
2014-01-08 21:45:29 +05:30
/**
* AuthServer instance
* @var AuthServer
*/
2014-01-10 18:00:13 +05:30
protected $server;
2014-01-08 21:45:29 +05:30
/**
* Access token expires in override
* @var int
*/
2014-01-10 18:00:13 +05:30
protected $accessTokenTTL;
/**
* Return the identifier
* @return string
*/
public function getIdentifier()
{
return $this->identifier;
}
/**
* Return the identifier
* @param string $identifier
* @return self
*/
public function setIdentifier($identifier)
{
$this->identifier = $identifier;
return $this;
}
/**
* Return the response type
* @return string
*/
public function getResponseType()
{
return $this->responseType;
}
/**
* Override the default access token expire time
* @param int $accessTokenTTL
* @return self
*/
public function setAccessTokenTTL($accessTokenTTL)
{
$this->accessTokenTTL = $accessTokenTTL;
return $this;
}
/**
* Inject the authorization server into the grant
* @param AuthorizationServer $server The authorization server instance
* @return self
*/
public function setAuthorizationServer(AuthorizationServer $server)
{
2013-12-24 22:31:56 +05:30
$this->server = $server;
return $this;
}
2014-01-08 21:45:29 +05:30
/**
* Given a list of scopes, validate them and return an arrary of Scope entities
* @param string $scopeParam A string of scopes (e.g. "profile email birthday")
* @return array
* @throws ClientException If scope is invalid, or no scopes passed when required
*/
2013-12-24 22:31:56 +05:30
public function validateScopes($scopeParam = '')
{
$scopesList = explode($this->server->getScopeDelimeter(), $scopeParam);
for ($i = 0; $i < count($scopesList); $i++) {
$scopesList[$i] = trim($scopesList[$i]);
if ($scopesList[$i] === '') unset($scopesList[$i]); // Remove any junk scopes
}
if (
$this->server->scopeParamRequired() === true &&
$this->server->getDefaultScope() === null &&
count($scopesList) === 0
) {
throw new ClientException(sprintf($this->server->getExceptionMessage('invalid_request'), 'scope'), 0);
} elseif (count($scopesList) === 0 && $this->server->getDefaultScope() !== null) {
if (is_array($this->server->getDefaultScope())) {
$scopesList = $this->server->getDefaultScope();
} else {
$scopesList = [0 => $this->server->getDefaultScope()];
}
}
$scopes = [];
foreach ($scopesList as $scopeItem) {
2014-01-10 18:00:13 +05:30
$scope = $this->server->getStorage('scope')->get(
2013-12-24 22:31:56 +05:30
$scopeItem,
$this->getIdentifier()
);
2014-01-08 21:45:29 +05:30
if (($scope instanceof Scope) === false) {
2013-12-24 22:31:56 +05:30
throw new ClientException(sprintf($this->server->getExceptionMessage('invalid_scope'), $scopeItem), 4);
}
2014-01-10 18:00:13 +05:30
$scopes[$scope->getId()] = $scope;
2013-12-24 22:31:56 +05:30
}
return $scopes;
}
2014-01-10 18:00:13 +05:30
/**
* Format the local scopes array
2014-01-16 22:20:16 +05:30
* @param array $unformated Array of Array of \League\OAuth2\Server\Entity\Scope
2014-01-10 18:00:13 +05:30
* @return array
*/
protected function formatScopes($unformated = [])
{
$scopes = [];
foreach ($unformated as $scope) {
if ($scope instanceof Scope) {
$scopes[$scope->getId()] = $scope;
}
}
return $scopes;
}
2014-01-08 21:45:29 +05:30
/**
* Complete the grant flow
*
* Example response:
* <pre>
* array(
* 'access_token' => (string), // The access token
* 'refresh_token' => (string), // The refresh token (only set if the refresh token grant is enabled)
* 'token_type' => 'bearer', // Almost always "bearer" (exceptions: JWT, SAML)
* 'expires' => (int), // The timestamp of when the access token will expire
* 'expires_in' => (int) // The number of seconds before the access token will expire
* )
* </pre>
*
* @return array An array of parameters to be passed back to the client
*/
abstract public function completeFlow();
}