oauth2-server/examples/public/middleware_use.php

96 lines
3.1 KiB
PHP
Raw Normal View History

2016-01-17 23:10:26 +05:30
<?php
2016-02-12 23:36:31 +05:30
use League\OAuth2\Server\Grant\AuthCodeGrant;
2016-02-12 18:49:47 +05:30
use League\OAuth2\Server\Grant\RefreshTokenGrant;
2016-01-17 23:10:26 +05:30
use League\OAuth2\Server\Middleware\AuthenticationServerMiddleware;
2016-02-12 23:36:31 +05:30
use League\OAuth2\Server\Middleware\ResourceServerMiddleware;
2016-01-17 23:10:26 +05:30
use League\OAuth2\Server\Server;
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
2016-02-12 23:36:31 +05:30
use OAuth2ServerExamples\Repositories\AuthCodeRepository;
2016-01-17 23:10:26 +05:30
use OAuth2ServerExamples\Repositories\ClientRepository;
use OAuth2ServerExamples\Repositories\RefreshTokenRepository;
use OAuth2ServerExamples\Repositories\ScopeRepository;
use OAuth2ServerExamples\Repositories\UserRepository;
2016-02-12 23:36:31 +05:30
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
2016-01-17 23:10:26 +05:30
use Slim\App;
2016-02-12 23:36:31 +05:30
use Zend\Diactoros\Stream;
2016-01-17 23:10:26 +05:30
2016-02-22 13:30:50 +05:30
include __DIR__ . '/../vendor/autoload.php';
2016-01-17 23:10:26 +05:30
$app = new App([
'settings' => [
'displayErrorDetails' => true,
],
Server::class => function () {
// Init our repositories
$clientRepository = new ClientRepository();
$accessTokenRepository = new AccessTokenRepository();
$scopeRepository = new ScopeRepository();
2016-02-12 23:36:31 +05:30
$authCodeRepository = new AuthCodeRepository();
2016-01-17 23:10:26 +05:30
$refreshTokenRepository = new RefreshTokenRepository();
2016-02-12 23:36:31 +05:30
$userRepository = new UserRepository();
2016-01-17 23:10:26 +05:30
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
// Setup the authorization server
$server = new Server(
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
$publicKeyPath
);
2016-02-12 23:36:31 +05:30
// Enable the authentication code grant on the server with a token TTL of 1 hour
2016-01-17 23:10:26 +05:30
$server->enableGrantType(
2016-02-12 23:36:31 +05:30
new AuthCodeGrant(
$authCodeRepository,
$refreshTokenRepository,
$userRepository,
new \DateInterval('PT10M')
),
2016-01-17 23:10:26 +05:30
new \DateInterval('PT1H')
);
2016-02-12 23:36:31 +05:30
// Enable the refresh token grant on the server with a token TTL of 1 month
2016-01-17 23:10:26 +05:30
$server->enableGrantType(
new RefreshTokenGrant($refreshTokenRepository),
2016-02-12 23:36:31 +05:30
new \DateInterval('PT1M')
2016-01-17 23:10:26 +05:30
);
return $server;
2016-02-20 04:39:39 +05:30
},
2016-01-17 23:10:26 +05:30
]);
2016-02-12 23:36:31 +05:30
// Access token issuer
2016-01-17 23:10:26 +05:30
$app->post('/access_token', function () {
})->add(new AuthenticationServerMiddleware($app->getContainer()->get(Server::class)));
2016-02-12 23:36:31 +05:30
// Secured API
2016-03-09 02:19:05 +05:30
$app->group('/api', function () {
2016-02-12 23:36:31 +05:30
$this->get('/user', function (ServerRequestInterface $request, ResponseInterface $response) {
$params = [];
if (in_array('basic', $request->getAttribute('oauth_scopes', []))) {
$params = [
'id' => 1,
'name' => 'Alex',
2016-03-09 02:19:05 +05:30
'city' => 'London',
2016-02-12 23:36:31 +05:30
];
}
if (in_array('email', $request->getAttribute('oauth_scopes', []))) {
$params['email'] = 'alex@example.com';
}
$body = new Stream('php://temp', 'r+');
$body->write(json_encode($params));
return $response->withBody($body);
});
})->add(new ResourceServerMiddleware($app->getContainer()->get(Server::class)));
2016-01-17 23:10:26 +05:30
$app->run();