mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
|
use League\OAuth2\Server\Grant\ClientCredentialsGrant;
|
|
use League\OAuth2\Server\Server;
|
|
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
|
|
use OAuth2ServerExamples\Repositories\ClientRepository;
|
|
use OAuth2ServerExamples\Repositories\ScopeRepository;
|
|
use Slim\App;
|
|
use Slim\Http\Request;
|
|
use Slim\Http\Response;
|
|
|
|
include __DIR__.'/../vendor/autoload.php';
|
|
|
|
// App
|
|
$app = new App([
|
|
Server::class => function () {
|
|
|
|
// Init our repositories
|
|
$clientRepository = new ClientRepository();
|
|
$scopeRepository = new ScopeRepository();
|
|
$accessTokenRepository = new AccessTokenRepository();
|
|
|
|
$privateKeyPath = 'file://'.__DIR__.'/../private.key';
|
|
$publicKeyPath = 'file://'.__DIR__.'/../public.key';
|
|
|
|
// Setup the authorization server
|
|
$server = new Server(
|
|
$clientRepository,
|
|
$accessTokenRepository,
|
|
$scopeRepository,
|
|
$privateKeyPath,
|
|
$publicKeyPath
|
|
);
|
|
|
|
// Enable the client credentials grant on the server with a token TTL of 1 hour
|
|
$server->enableGrantType(new ClientCredentialsGrant(), new \DateInterval('PT1H'));
|
|
|
|
return $server;
|
|
},
|
|
]);
|
|
|
|
$app->post('/access_token', function (Request $request, Response $response) {
|
|
/** @var Server $server */
|
|
$server = $this->get(Server::class);
|
|
try {
|
|
return $server->respondToRequest($request, $response);
|
|
} catch (OAuthServerException $e) {
|
|
return $e->generateHttpResponse($response);
|
|
} catch (\Exception $e) {
|
|
return $response->withStatus(500)->write($e->getMessage());
|
|
}
|
|
});
|
|
|
|
$app->run();
|