oauth2-server/examples/public/middleware_use.php

110 lines
3.5 KiB
PHP
Raw Normal View History

2016-01-17 23:10:26 +05:30
<?php
2016-04-17 17:36:05 +05:30
/**
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) Alex Bilbie
* @license http://mit-license.org/
*
* @link https://github.com/thephpleague/oauth2-server
*/
2016-01-17 23:10:26 +05:30
2016-04-17 17:36:17 +05:30
use League\OAuth2\Server\AuthorizationServer;
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-04-17 17:24:49 +05:30
use League\OAuth2\Server\Middleware\AuthorizationServerMiddleware;
2016-02-12 23:36:31 +05:30
use League\OAuth2\Server\Middleware\ResourceServerMiddleware;
2017-07-01 21:49:23 +05:30
use League\OAuth2\Server\ResourceServer;
2016-01-17 23:10:26 +05:30
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;
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([
2016-04-17 17:24:49 +05:30
'settings' => [
2016-01-17 23:10:26 +05:30
'displayErrorDetails' => true,
],
2016-04-17 17:24:49 +05:30
AuthorizationServer::class => function () {
2016-01-17 23:10:26 +05:30
// 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();
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
// Setup the authorization server
2016-04-17 17:24:49 +05:30
$server = new AuthorizationServer(
2016-01-17 23:10:26 +05:30
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
2017-07-01 23:16:48 +05:30
'lxZFUEsBCJ2Yb14IF2ygAHI5N4+ZAUXXaSeeJm6+twsUmIen'
2016-01-17 23:10:26 +05:30
);
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,
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),
new \DateInterval('P1M')
2016-01-17 23:10:26 +05:30
);
return $server;
2016-02-20 04:39:39 +05:30
},
2016-11-08 17:57:49 +05:30
ResourceServer::class => function () {
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
$server = new ResourceServer(
new AccessTokenRepository(),
$publicKeyPath
);
2017-07-01 21:49:23 +05:30
2016-11-08 17:57:49 +05:30
return $server;
},
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 () {
2016-04-17 17:24:49 +05:30
})->add(new AuthorizationServerMiddleware($app->getContainer()->get(AuthorizationServer::class)));
2016-01-17 23:10:26 +05:30
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);
});
2016-11-08 17:57:49 +05:30
})->add(new ResourceServerMiddleware($app->getContainer()->get(ResourceServer::class)));
2016-02-12 23:36:31 +05:30
2016-01-17 23:10:26 +05:30
$app->run();