mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
Updated implicit grant
This commit is contained in:
@ -87,22 +87,14 @@ class Implict implements GrantTypeInterface {
|
|||||||
$accessTokenExpires = time() + $this->authServer->getExpiresIn();
|
$accessTokenExpires = time() + $this->authServer->getExpiresIn();
|
||||||
|
|
||||||
// Create a new session
|
// Create a new session
|
||||||
$sessionId = $this->authServer->getStorage('session')->createSession(
|
$sessionId = $this->authServer->getStorage('session')->createSession($authParams['client_id'], 'user', $authParams['user_id']);
|
||||||
$authParams['client_id'],
|
|
||||||
$authParams['redirect_uri'],
|
|
||||||
'user',
|
|
||||||
$authParams['user_id'],
|
|
||||||
null,
|
|
||||||
$accessToken,
|
|
||||||
null,
|
|
||||||
$accessTokenExpires,
|
|
||||||
'granted'
|
|
||||||
);
|
|
||||||
|
|
||||||
// Associate scopes with the new session
|
// Create an access token
|
||||||
foreach ($authParams['scopes'] as $scope)
|
$accessTokenId = $this->authServer->getStorage('session')->associateAccessToken($sessionId, $accessToken, $accessTokenExpires);
|
||||||
{
|
|
||||||
$this->authServer->getStorage('session')->associateScope($sessionId, $scope['id']);
|
// Associate scopes with the access token
|
||||||
|
foreach ($authParams['scopes'] as $scope) {
|
||||||
|
$this->authServer->getStorage('session')->associateScope($accessTokenId, $scope['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$response = array(
|
$response = array(
|
||||||
@ -111,6 +103,5 @@ class Implict implements GrantTypeInterface {
|
|||||||
|
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user