mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 09:47:46 +05:30
Added requireStateParam() method. Fixes #9
This commit is contained in:
parent
f5b6b43bef
commit
34a7d14557
@ -61,7 +61,13 @@ class AuthServer
|
|||||||
* Require the "scope" parameter to be in checkAuthoriseParams()
|
* Require the "scope" parameter to be in checkAuthoriseParams()
|
||||||
* @var boolean
|
* @var boolean
|
||||||
*/
|
*/
|
||||||
protected $requireScopes = true;
|
protected $requireScopeParam = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Require the "state" parameter to be in checkAuthoriseParams()
|
||||||
|
* @var boolean
|
||||||
|
*/
|
||||||
|
protected $requireStateParam = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The request object
|
* The request object
|
||||||
@ -175,9 +181,19 @@ class AuthServer
|
|||||||
* @param boolean $require
|
* @param boolean $require
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function requireScopes($require = true)
|
public function requireScopeParam($require = true)
|
||||||
{
|
{
|
||||||
$this->requireScopes = $require;
|
$this->requireScopeParam = $require;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Require the "state" paremter in checkAuthoriseParams()
|
||||||
|
* @param boolean $require
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function requireStateParam($require = false)
|
||||||
|
{
|
||||||
|
$this->requireStateParam = $require;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -275,6 +291,10 @@ class AuthServer
|
|||||||
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'redirect_uri'), 0);
|
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'redirect_uri'), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($this->requireStateParam === true && is_null($authParams['redirect_uri'])) {
|
||||||
|
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'redirect_uri'), 0);
|
||||||
|
}
|
||||||
|
|
||||||
// Validate client ID and redirect URI
|
// Validate client ID and redirect URI
|
||||||
$clientDetails = self::getStorage('client')->getClient($authParams['client_id'], null, $authParams['redirect_uri']);
|
$clientDetails = self::getStorage('client')->getClient($authParams['client_id'], null, $authParams['redirect_uri']);
|
||||||
|
|
||||||
@ -301,7 +321,7 @@ class AuthServer
|
|||||||
if ($scopes[$i] === '') unset($scopes[$i]); // Remove any junk scopes
|
if ($scopes[$i] === '') unset($scopes[$i]); // Remove any junk scopes
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->requireScopes === true && count($scopes) === 0) {
|
if ($this->requireScopeParam === true && count($scopes) === 0) {
|
||||||
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'scope'), 0);
|
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'scope'), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,19 +89,32 @@ class Authorization_Server_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals(';', $a->getScopeDelimeter());
|
$this->assertEquals(';', $a->getScopeDelimeter());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_requireScopes()
|
public function test_requireScopeParam()
|
||||||
{
|
{
|
||||||
$a = $this->returnDefault();
|
$a = $this->returnDefault();
|
||||||
$a->requireScopes(false);
|
$a->requireScopeParam(false);
|
||||||
|
|
||||||
$reflector = new ReflectionClass($a);
|
$reflector = new ReflectionClass($a);
|
||||||
$requestProperty = $reflector->getProperty('requireScopes');
|
$requestProperty = $reflector->getProperty('requireScopeParam');
|
||||||
$requestProperty->setAccessible(true);
|
$requestProperty->setAccessible(true);
|
||||||
$v = $requestProperty->getValue($a);
|
$v = $requestProperty->getValue($a);
|
||||||
|
|
||||||
$this->assertFalse($v);
|
$this->assertFalse($v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function test_requireStateParam()
|
||||||
|
{
|
||||||
|
$a = $this->returnDefault();
|
||||||
|
$a->requireStateParam(true);
|
||||||
|
|
||||||
|
$reflector = new ReflectionClass($a);
|
||||||
|
$requestProperty = $reflector->getProperty('requireStateParam');
|
||||||
|
$requestProperty->setAccessible(true);
|
||||||
|
$v = $requestProperty->getValue($a);
|
||||||
|
|
||||||
|
$this->assertTrue($v);
|
||||||
|
}
|
||||||
|
|
||||||
public function test_getExpiresIn()
|
public function test_getExpiresIn()
|
||||||
{
|
{
|
||||||
$a = $this->returnDefault();
|
$a = $this->returnDefault();
|
||||||
|
Loading…
Reference in New Issue
Block a user