mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace RelationalExample\Storage;
 | 
						|
 | 
						|
use League\OAuth2\Server\Storage\AuthCodeInterface;
 | 
						|
use League\OAuth2\Server\Storage\Adapter;
 | 
						|
use League\OAuth2\Server\Entity\AuthCodeEntity;
 | 
						|
use League\OAuth2\Server\Entity\ScopeEntity;
 | 
						|
 | 
						|
use Illuminate\Database\Capsule\Manager as Capsule;
 | 
						|
 | 
						|
class AuthCodeStorage extends Adapter implements AuthCodeInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function get($code)
 | 
						|
    {
 | 
						|
        $result = Capsule::table('oauth_auth_codes')
 | 
						|
                            ->where('auth_code', $code)
 | 
						|
                            ->where('expire_time', '>=', time())
 | 
						|
                            ->get();
 | 
						|
 | 
						|
        if (count($result) === 1) {
 | 
						|
            $token = new AuthCodeEntity($this->server);
 | 
						|
            $token->setId($result[0]['auth_code']);
 | 
						|
            $token->setRedirectUri($result[0]['client_redirect_uri']);
 | 
						|
            return $token;
 | 
						|
        }
 | 
						|
 | 
						|
        return null;
 | 
						|
    }
 | 
						|
 | 
						|
    public function create($token, $expireTime, $sessionId, $redirectUri)
 | 
						|
    {
 | 
						|
        Capsule::table('oauth_auth_codes')
 | 
						|
                    ->insert([
 | 
						|
                        'auth_code'     =>  $token,
 | 
						|
                        'client_redirect_uri'  =>  $redirectUri,
 | 
						|
                        'session_id'    =>  $sessionId,
 | 
						|
                        'expire_time'   =>  $expireTime
 | 
						|
                    ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function getScopes(AuthCodeEntity $token)
 | 
						|
    {
 | 
						|
        $result = Capsule::table('oauth_auth_code_scopes')
 | 
						|
                                    ->select(['oauth_scopes.id', 'oauth_scopes.description'])
 | 
						|
                                    ->join('oauth_scopes', 'oauth_auth_code_scopes.scope', '=', 'oauth_scopes.id')
 | 
						|
                                    ->where('auth_code', $token->getId())
 | 
						|
                                    ->get();
 | 
						|
 | 
						|
        $response = [];
 | 
						|
 | 
						|
        if (count($result) > 0) {
 | 
						|
            foreach ($result as $row) {
 | 
						|
                $scope = (new ScopeEntity($this->server))->hydrate([
 | 
						|
                    'id'            =>  $row['id'],
 | 
						|
                    'description'   =>  $row['description']
 | 
						|
                ]);
 | 
						|
                $response[] = $scope;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        return $response;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function associateScope(AuthCodeEntity $token, ScopeEntity $scope)
 | 
						|
    {
 | 
						|
        Capsule::table('oauth_auth_code_scopes')
 | 
						|
                    ->insert([
 | 
						|
                        'auth_code' =>  $token->getId(),
 | 
						|
                        'scope'     =>  $scope->getId()
 | 
						|
                    ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function delete(AuthCodeEntity $token)
 | 
						|
    {
 | 
						|
        Capsule::table('oauth_auth_codes')
 | 
						|
                    ->where('auth_code', $token->getId())
 | 
						|
                    ->delete();
 | 
						|
    }
 | 
						|
}
 |