oauth2-server/examples/public/refresh_token.php

70 lines
2.3 KiB
PHP
Raw Normal View History

2016-01-13 05:58:52 +05:30
<?php
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Grant\RefreshTokenGrant;
use League\OAuth2\Server\Server;
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
use OAuth2ServerExamples\Repositories\ClientRepository;
use OAuth2ServerExamples\Repositories\RefreshTokenRepository;
use OAuth2ServerExamples\Repositories\ScopeRepository;
2016-02-12 23:36:31 +05:30
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
2016-01-13 05:58:52 +05:30
use Slim\App;
2016-02-12 23:36:31 +05:30
use Zend\Diactoros\Stream;
2016-01-13 05:58:52 +05:30
2016-02-22 13:30:50 +05:30
include __DIR__ . '/../vendor/autoload.php';
2016-01-13 05:58:52 +05:30
2016-02-12 23:36:31 +05:30
$app = new App([
'settings' => [
'displayErrorDetails' => true,
],
Server::class => function () {
// Init our repositories
$clientRepository = new ClientRepository();
$accessTokenRepository = new AccessTokenRepository();
$scopeRepository = new ScopeRepository();
$refreshTokenRepository = new RefreshTokenRepository();
2016-01-17 19:55:44 +05:30
2016-02-12 23:36:31 +05:30
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
2016-01-13 05:58:52 +05:30
2016-02-12 23:36:31 +05:30
// Setup the authorization server
$server = new Server(
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
$publicKeyPath
);
2016-01-17 19:55:44 +05:30
2016-04-13 00:53:05 +05:30
// Enable the refresh token grant on the server
$grant = new RefreshTokenGrant($refreshTokenRepository);
$grant->setRefreshTokenTTL(new \DateInterval('P1M')); // The refresh token will expire in 1 month
2016-02-12 23:36:31 +05:30
$server->enableGrantType(
2016-04-13 00:53:05 +05:30
$grant,
new \DateInterval('PT1H') // The new access token will expire after 1 hour
2016-02-12 23:36:31 +05:30
);
2016-01-17 19:55:44 +05:30
2016-02-12 23:36:31 +05:30
return $server;
2016-03-09 02:19:05 +05:30
},
2016-02-12 23:36:31 +05:30
]);
2016-01-17 19:55:44 +05:30
2016-02-12 23:36:31 +05:30
$app->post('/access_token', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
/* @var \League\OAuth2\Server\Server $server */
$server = $app->getContainer()->get(Server::class);
2016-01-13 05:58:52 +05:30
try {
return $server->respondToAccessTokenRequest($request, $response);
2016-02-12 23:36:31 +05:30
} 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);
2016-01-13 05:58:52 +05:30
}
});
$app->run();