mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @author      Alex Bilbie <hello@alexbilbie.com>
 | 
						|
 * @copyright   Copyright (c) Alex Bilbie
 | 
						|
 * @license     http://mit-license.org/
 | 
						|
 *
 | 
						|
 * @link        https://github.com/thephpleague/oauth2-server
 | 
						|
 */
 | 
						|
 | 
						|
use League\OAuth2\Server\AuthorizationServer;
 | 
						|
use League\OAuth2\Server\Exception\OAuthServerException;
 | 
						|
use League\OAuth2\Server\Grant\AuthCodeGrant;
 | 
						|
use OAuth2ServerExamples\Entities\UserEntity;
 | 
						|
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
 | 
						|
use OAuth2ServerExamples\Repositories\AuthCodeRepository;
 | 
						|
use OAuth2ServerExamples\Repositories\ClientRepository;
 | 
						|
use OAuth2ServerExamples\Repositories\RefreshTokenRepository;
 | 
						|
use OAuth2ServerExamples\Repositories\ScopeRepository;
 | 
						|
use Psr\Http\Message\ResponseInterface;
 | 
						|
use Psr\Http\Message\ServerRequestInterface;
 | 
						|
use Slim\App;
 | 
						|
use Zend\Diactoros\Stream;
 | 
						|
 | 
						|
include __DIR__ . '/../vendor/autoload.php';
 | 
						|
 | 
						|
$app = new App([
 | 
						|
    'settings'    => [
 | 
						|
        'displayErrorDetails' => true,
 | 
						|
    ],
 | 
						|
    AuthorizationServer::class => function () {
 | 
						|
        // Init our repositories
 | 
						|
        $clientRepository = new ClientRepository();
 | 
						|
        $scopeRepository = new ScopeRepository();
 | 
						|
        $accessTokenRepository = new AccessTokenRepository();
 | 
						|
        $authCodeRepository = new AuthCodeRepository();
 | 
						|
        $refreshTokenRepository = new RefreshTokenRepository();
 | 
						|
 | 
						|
        $privateKeyPath = 'file://' . __DIR__ . '/../private.key';
 | 
						|
 | 
						|
        // Setup the authorization server
 | 
						|
        $server = new AuthorizationServer(
 | 
						|
            $clientRepository,
 | 
						|
            $accessTokenRepository,
 | 
						|
            $scopeRepository,
 | 
						|
            $privateKeyPath,
 | 
						|
            'lxZFUEsBCJ2Yb14IF2ygAHI5N4+ZAUXXaSeeJm6+twsUmIen'
 | 
						|
        );
 | 
						|
 | 
						|
        // Enable the authentication code grant on the server with a token TTL of 1 hour
 | 
						|
        $server->enableGrantType(
 | 
						|
            new AuthCodeGrant(
 | 
						|
                $authCodeRepository,
 | 
						|
                $refreshTokenRepository,
 | 
						|
                new \DateInterval('PT10M')
 | 
						|
            ),
 | 
						|
            new \DateInterval('PT1H')
 | 
						|
        );
 | 
						|
 | 
						|
        return $server;
 | 
						|
    },
 | 
						|
]);
 | 
						|
 | 
						|
$app->get('/authorize', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
 | 
						|
    /* @var \League\OAuth2\Server\AuthorizationServer $server */
 | 
						|
    $server = $app->getContainer()->get(AuthorizationServer::class);
 | 
						|
 | 
						|
    try {
 | 
						|
        // Validate the HTTP request and return an AuthorizationRequest object.
 | 
						|
        // The auth request object can be serialized into a user's session
 | 
						|
        $authRequest = $server->validateAuthorizationRequest($request);
 | 
						|
 | 
						|
        // Once the user has logged in set the user on the AuthorizationRequest
 | 
						|
        $authRequest->setUser(new UserEntity());
 | 
						|
 | 
						|
        // Once the user has approved or denied the client update the status
 | 
						|
        // (true = approved, false = denied)
 | 
						|
        $authRequest->setAuthorizationApproved(true);
 | 
						|
 | 
						|
        // Return the HTTP redirect response
 | 
						|
        return $server->completeAuthorizationRequest($authRequest, $response);
 | 
						|
    } catch (OAuthServerException $exception) {
 | 
						|
        return $exception->generateHttpResponse($response);
 | 
						|
    } catch (\Exception $exception) {
 | 
						|
        $body = new Stream('php://temp', 'r+');
 | 
						|
        $body->write($exception->getMessage());
 | 
						|
 | 
						|
        return $response->withStatus(500)->withBody($body);
 | 
						|
    }
 | 
						|
});
 | 
						|
 | 
						|
$app->post('/access_token', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
 | 
						|
    /* @var \League\OAuth2\Server\AuthorizationServer $server */
 | 
						|
    $server = $app->getContainer()->get(AuthorizationServer::class);
 | 
						|
 | 
						|
    try {
 | 
						|
        return $server->respondToAccessTokenRequest($request, $response);
 | 
						|
    } catch (OAuthServerException $exception) {
 | 
						|
        return $exception->generateHttpResponse($response);
 | 
						|
    } catch (\Exception $exception) {
 | 
						|
        $body = new Stream('php://temp', 'r+');
 | 
						|
        $body->write($exception->getMessage());
 | 
						|
 | 
						|
        return $response->withStatus(500)->withBody($body);
 | 
						|
    }
 | 
						|
});
 | 
						|
 | 
						|
$app->run();
 |