Merge branch 'release/1.0.1'

This commit is contained in:
Alex Bilbie 2013-02-19 00:42:26 +00:00
commit 9afa707d54
6 changed files with 23 additions and 41 deletions

View File

@ -2,6 +2,7 @@
"name": "lncd/oauth2", "name": "lncd/oauth2",
"description": "OAuth 2.0 Framework", "description": "OAuth 2.0 Framework",
"version": "1.0.0", "version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.com/lncd/OAuth2", "homepage": "https://github.com/lncd/OAuth2",
"license": "MIT", "license": "MIT",
"require": { "require": {

View File

@ -248,22 +248,13 @@ class AuthServer
*/ */
public function checkAuthoriseParams($inputParams = array()) public function checkAuthoriseParams($inputParams = array())
{ {
$authParams = array(); // Auth params
$authParams = self::getParam(array('client_id', 'redirect_uri', 'response_type', 'scope'), 'get', $inputParams);
// Client ID
$authParams['client_id'] = (isset($inputParams['client_id'])) ?
$inputParams['client_id'] :
self::getRequest()->get('client_id');
if (is_null($authParams['client_id'])) { if (is_null($authParams['client_id'])) {
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'client_id'), 0); throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'client_id'), 0);
} }
// Redirect URI
$authParams['redirect_uri'] = (isset($inputParams['redirect_uri'])) ?
$inputParams['redirect_uri'] :
self::getRequest()->get('redirect_uri');
if (is_null($authParams['redirect_uri'])) { if (is_null($authParams['redirect_uri'])) {
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'redirect_uri'), 0); throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'redirect_uri'), 0);
} }
@ -277,11 +268,6 @@ class AuthServer
$authParams['client_details'] = $clientDetails; $authParams['client_details'] = $clientDetails;
// Response type
$authParams['response_type'] = (isset($inputParams['response_type'])) ?
$inputParams['response_type'] :
self::getRequest()->get('response_type');
if (is_null($authParams['response_type'])) { if (is_null($authParams['response_type'])) {
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'response_type'), 0); throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'response_type'), 0);
} }
@ -291,12 +277,8 @@ class AuthServer
throw new Exception\ClientException(self::$exceptionMessages['unsupported_response_type'], 3); throw new Exception\ClientException(self::$exceptionMessages['unsupported_response_type'], 3);
} }
// Get and validate scopes // Validate scopes
$scopes = (isset($inputParams['scope'])) ? $scopes = explode($this->scopeDelimeter, $authParams['scope']);
$inputParams['scope'] :
self::getRequest()->get('scope', '');
$scopes = explode($this->scopeDelimeter, $scopes);
for ($i = 0; $i < count($scopes); $i++) { for ($i = 0; $i < count($scopes); $i++) {
$scopes[$i] = trim($scopes[$i]); $scopes[$i] = trim($scopes[$i]);
@ -358,9 +340,7 @@ class AuthServer
*/ */
public function issueAccessToken($inputParams = array()) public function issueAccessToken($inputParams = array())
{ {
$grantType = (isset($inputParams['grant_type'])) ? $grantType = self::getParam('grant_type', 'post', $inputParams);
$inputParams['grant_type'] :
self::getRequest()->post('grant_type');
if (is_null($grantType)) { if (is_null($grantType)) {
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'grant_type'), 0); throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'grant_type'), 0);
@ -395,7 +375,7 @@ class AuthServer
public static function getParam($param = '', $method = 'get', $inputParams = array()) public static function getParam($param = '', $method = 'get', $inputParams = array())
{ {
if (is_string($param)) { if (is_string($param)) {
return (isset($inputParams[$param])) ? $inputParams['client_id'] : self::getRequest()->{$method}($param); return (isset($inputParams[$param])) ? $inputParams[$param] : self::getRequest()->{$method}($param);
} else { } else {
$response = array(); $response = array();
foreach ($param as $p) { foreach ($param as $p) {

View File

@ -20,19 +20,17 @@ interface ClientInterface
* *
* <code> * <code>
* # Client ID + redirect URI * # Client ID + redirect URI
* SELECT clients.id FROM clients LEFT JOIN client_endpoints ON * SELECT oauth_clients.id FROM oauth_clients LEFT JOIN client_endpoints ON client_endpoints.client_id
* client_endpoints.client_id = clients.id WHERE clients.id = $clientId AND * = oauth_clients.id WHERE oauth_clients.id = $clientId AND client_endpoints.redirect_uri = $redirectUri
* client_endpoints.redirect_uri = $redirectUri
* *
* # Client ID + client secret * # Client ID + client secret
* SELECT clients.id FROM clients WHERE clients.id = $clientId AND * SELECT oauth_clients.id FROM oauth_clients WHERE oauth_clients.id = $clientId AND
* clients.secret = $clientSecret * oauth_clients.secret = $clientSecret
* *
* # Client ID + client secret + redirect URI * # Client ID + client secret + redirect URI
* SELECT clients.id FROM clients LEFT JOIN client_endpoints ON * SELECT oauth_clients.id FROM oauth_clients LEFT JOIN client_endpoints ON client_endpoints.client_id
* client_endpoints.client_id = clients.id WHERE clients.id = $clientId AND * = oauth_clients.id WHERE oauth_clients.id = $clientId AND oauth_clients.secret = $clientSecret
* clients.secret = $clientSecret AND client_endpoints.redirect_uri = * AND client_endpoints.redirect_uri = $redirectUri
* $redirectUri
* </code> * </code>
* *
* Response: * Response:

View File

@ -19,7 +19,7 @@ interface ScopeInterface
* Example SQL query: * Example SQL query:
* *
* <code> * <code>
* SELECT * FROM scopes WHERE scope = $scope * SELECT * FROM oauth_scopes WHERE scope = $scope
* </code> * </code>
* *
* Response: * Response:

View File

@ -225,9 +225,10 @@ interface SessionInterface
* Example SQL query: * Example SQL query:
* *
* <code> * <code>
* SELECT scopes.scope, scopes.name, scopes.description FROM * SELECT oauth_scopes.scope, oauth_scopes.name, oauth_scopes.description
* oauth_session_scopes JOIN scopes ON oauth_session_scopes.scope = * FROM oauth_session_scopes JOIN oauth_scopes ON
* scopes.scope WHERE access_token = $accessToken * oauth_session_scopes.scope = oauth_scopes.scope
* WHERE access_token = $accessToken
* </code> * </code>
* *
* Response: * Response:

View File

@ -304,7 +304,8 @@ class Authentication_Server_test extends PHPUnit_Framework_TestCase
'name' => 'Foo Name', 'name' => 'Foo Name',
'description' => 'Foo Name Description' 'description' => 'Foo Name Description'
) )
) ),
'scope' => 'foo'
), $v); ), $v);
} }
@ -354,7 +355,8 @@ class Authentication_Server_test extends PHPUnit_Framework_TestCase
'name' => 'Foo Name', 'name' => 'Foo Name',
'description' => 'Foo Name Description' 'description' => 'Foo Name Description'
) )
) ),
'scope' => 'foo'
), $v); ), $v);
} }