mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	Объединены сущности для авторизации посредством JWT токенов и токенов, выданных через oAuth2.
Все действия, связанные с аккаунтами, теперь вызываются через url `/api/v1/accounts/<id>/<action>`. Добавлена вменяемая система разграничения прав на основе RBAC. Теперь oAuth2 токены генерируются как случайная строка в 40 символов длинной, а не UUID. Исправлен баг с неправильным временем жизни токена в ответе успешного запроса аутентификации. Теперь все unit тесты можно успешно прогнать без наличия интернета.
This commit is contained in:
		@@ -6,7 +6,7 @@ use api\components\OAuth2\Entities\AuthCodeEntity;
 | 
			
		||||
use api\components\OAuth2\Entities\ClientEntity;
 | 
			
		||||
use api\components\OAuth2\Entities\RefreshTokenEntity;
 | 
			
		||||
use api\components\OAuth2\Entities\SessionEntity;
 | 
			
		||||
use common\models\OauthScope;
 | 
			
		||||
use api\components\OAuth2\Storage\ScopeStorage;
 | 
			
		||||
use League\OAuth2\Server\Entity\AuthCodeEntity as BaseAuthCodeEntity;
 | 
			
		||||
use League\OAuth2\Server\Entity\ClientEntity as BaseClientEntity;
 | 
			
		||||
use League\OAuth2\Server\Event\ClientAuthenticationFailedEvent;
 | 
			
		||||
@@ -178,7 +178,7 @@ class AuthCodeGrant extends AbstractGrant {
 | 
			
		||||
 | 
			
		||||
        // Generate the access token
 | 
			
		||||
        $accessToken = new AccessTokenEntity($this->server);
 | 
			
		||||
        $accessToken->setId(SecureKey::generate()); // TODO: generate code based on permissions
 | 
			
		||||
        $accessToken->setId(SecureKey::generate());
 | 
			
		||||
        $accessToken->setExpireTime($this->getAccessTokenTTL() + time());
 | 
			
		||||
 | 
			
		||||
        foreach ($authCodeScopes as $authCodeScope) {
 | 
			
		||||
@@ -194,7 +194,7 @@ class AuthCodeGrant extends AbstractGrant {
 | 
			
		||||
        $this->server->getTokenType()->setParam('expires_in', $this->getAccessTokenTTL());
 | 
			
		||||
 | 
			
		||||
        // Выдаём refresh_token, если запрошен offline_access
 | 
			
		||||
        if (isset($accessToken->getScopes()[OauthScope::OFFLINE_ACCESS])) {
 | 
			
		||||
        if (isset($accessToken->getScopes()[ScopeStorage::OFFLINE_ACCESS])) {
 | 
			
		||||
            /** @var RefreshTokenGrant $refreshTokenGrant */
 | 
			
		||||
            $refreshTokenGrant = $this->server->getGrantType('refresh_token');
 | 
			
		||||
            $refreshToken = new RefreshTokenEntity($this->server);
 | 
			
		||||
@@ -223,12 +223,12 @@ class AuthCodeGrant extends AbstractGrant {
 | 
			
		||||
     * Так что оборачиваем функцию разбора скоупов, заменяя пробелы на запятые.
 | 
			
		||||
     *
 | 
			
		||||
     * @param string       $scopeParam
 | 
			
		||||
     * @param ClientEntity $client
 | 
			
		||||
     * @param BaseClientEntity $client
 | 
			
		||||
     * @param string $redirectUri
 | 
			
		||||
     *
 | 
			
		||||
     * @return \League\OAuth2\Server\Entity\ScopeEntity[]
 | 
			
		||||
     */
 | 
			
		||||
    public function validateScopes($scopeParam = '', ClientEntity $client, $redirectUri = null) {
 | 
			
		||||
    public function validateScopes($scopeParam = '', BaseClientEntity $client, $redirectUri = null) {
 | 
			
		||||
        $scopes = str_replace(' ', $this->server->getScopeDelimiter(), $scopeParam);
 | 
			
		||||
        return parent::validateScopes($scopes, $client, $redirectUri);
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -18,14 +18,12 @@ class ClientCredentialsGrant extends AbstractGrant {
 | 
			
		||||
     * @throws \League\OAuth2\Server\Exception\OAuthException
 | 
			
		||||
     */
 | 
			
		||||
    public function completeFlow(): array {
 | 
			
		||||
        // Get the required params
 | 
			
		||||
        $clientId = $this->server->getRequest()->request->get('client_id', $this->server->getRequest()->getUser());
 | 
			
		||||
        if ($clientId === null) {
 | 
			
		||||
            throw new Exception\InvalidRequestException('client_id');
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $clientSecret = $this->server->getRequest()->request->get('client_secret',
 | 
			
		||||
            $this->server->getRequest()->getPassword());
 | 
			
		||||
        $clientSecret = $this->server->getRequest()->request->get('client_secret');
 | 
			
		||||
        if ($clientSecret === null) {
 | 
			
		||||
            throw new Exception\InvalidRequestException('client_secret');
 | 
			
		||||
        }
 | 
			
		||||
@@ -74,12 +72,12 @@ class ClientCredentialsGrant extends AbstractGrant {
 | 
			
		||||
     * Так что оборачиваем функцию разбора скоупов, заменяя пробелы на запятые.
 | 
			
		||||
     *
 | 
			
		||||
     * @param string       $scopeParam
 | 
			
		||||
     * @param ClientEntity $client
 | 
			
		||||
     * @param BaseClientEntity $client
 | 
			
		||||
     * @param string $redirectUri
 | 
			
		||||
     *
 | 
			
		||||
     * @return \League\OAuth2\Server\Entity\ScopeEntity[]
 | 
			
		||||
     */
 | 
			
		||||
    public function validateScopes($scopeParam = '', ClientEntity $client, $redirectUri = null) {
 | 
			
		||||
    public function validateScopes($scopeParam = '', BaseClientEntity $client, $redirectUri = null) {
 | 
			
		||||
        $scopes = str_replace(' ', $this->server->getScopeDelimiter(), $scopeParam);
 | 
			
		||||
        return parent::validateScopes($scopes, $client, $redirectUri);
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -51,12 +51,12 @@ class RefreshTokenGrant extends AbstractGrant {
 | 
			
		||||
     * Так что оборачиваем функцию разбора скоупов, заменяя пробелы на запятые.
 | 
			
		||||
     *
 | 
			
		||||
     * @param string       $scopeParam
 | 
			
		||||
     * @param ClientEntity $client
 | 
			
		||||
     * @param BaseClientEntity $client
 | 
			
		||||
     * @param string $redirectUri
 | 
			
		||||
     *
 | 
			
		||||
     * @return \League\OAuth2\Server\Entity\ScopeEntity[]
 | 
			
		||||
     */
 | 
			
		||||
    public function validateScopes($scopeParam = '', ClientEntity $client, $redirectUri = null) {
 | 
			
		||||
    public function validateScopes($scopeParam = '', BaseClientEntity $client, $redirectUri = null) {
 | 
			
		||||
        $scopes = str_replace(' ', $this->server->getScopeDelimiter(), $scopeParam);
 | 
			
		||||
        return parent::validateScopes($scopes, $client, $redirectUri);
 | 
			
		||||
    }
 | 
			
		||||
@@ -143,7 +143,7 @@ class RefreshTokenGrant extends AbstractGrant {
 | 
			
		||||
 | 
			
		||||
        // Generate a new access token and assign it the correct sessions
 | 
			
		||||
        $newAccessToken = new AccessTokenEntity($this->server);
 | 
			
		||||
        $newAccessToken->setId(SecureKey::generate()); // TODO: generate based on permissions
 | 
			
		||||
        $newAccessToken->setId(SecureKey::generate());
 | 
			
		||||
        $newAccessToken->setExpireTime($this->getAccessTokenTTL() + time());
 | 
			
		||||
        $newAccessToken->setSession($session);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user