oauth2-server/examples/public/middleware_use.php

110 lines
3.5 KiB
PHP
Raw Normal View History

2016-01-17 18:40:26 +01:00
<?php
2016-04-17 13:06:05 +01:00
/**
* @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 18:40:26 +01:00
2016-04-17 08:06:17 -04:00
use League\OAuth2\Server\AuthorizationServer;
2016-02-12 19:06:31 +01:00
use League\OAuth2\Server\Grant\AuthCodeGrant;
2016-02-12 14:19:47 +01:00
use League\OAuth2\Server\Grant\RefreshTokenGrant;
2016-04-17 12:54:49 +01:00
use League\OAuth2\Server\Middleware\AuthorizationServerMiddleware;
2016-02-12 19:06:31 +01:00
use League\OAuth2\Server\Middleware\ResourceServerMiddleware;
2017-07-01 16:19:23 +00:00
use League\OAuth2\Server\ResourceServer;
2016-01-17 18:40:26 +01:00
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
2016-02-12 19:06:31 +01:00
use OAuth2ServerExamples\Repositories\AuthCodeRepository;
2016-01-17 18:40:26 +01:00
use OAuth2ServerExamples\Repositories\ClientRepository;
use OAuth2ServerExamples\Repositories\RefreshTokenRepository;
use OAuth2ServerExamples\Repositories\ScopeRepository;
2016-02-12 19:06:31 +01:00
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
2016-01-17 18:40:26 +01:00
use Slim\App;
2016-02-12 19:06:31 +01:00
use Zend\Diactoros\Stream;
2016-01-17 18:40:26 +01:00
2016-02-22 03:00:50 -05:00
include __DIR__ . '/../vendor/autoload.php';
2016-01-17 18:40:26 +01:00
$app = new App([
2016-04-17 12:54:49 +01:00
'settings' => [
2016-01-17 18:40:26 +01:00
'displayErrorDetails' => true,
],
2016-04-17 12:54:49 +01:00
AuthorizationServer::class => function () {
2016-01-17 18:40:26 +01:00
// Init our repositories
$clientRepository = new ClientRepository();
$accessTokenRepository = new AccessTokenRepository();
$scopeRepository = new ScopeRepository();
2016-02-12 19:06:31 +01:00
$authCodeRepository = new AuthCodeRepository();
2016-01-17 18:40:26 +01:00
$refreshTokenRepository = new RefreshTokenRepository();
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
// Setup the authorization server
2016-04-17 12:54:49 +01:00
$server = new AuthorizationServer(
2016-01-17 18:40:26 +01:00
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
2017-07-01 18:46:48 +01:00
'lxZFUEsBCJ2Yb14IF2ygAHI5N4+ZAUXXaSeeJm6+twsUmIen'
2016-01-17 18:40:26 +01:00
);
2016-02-12 19:06:31 +01:00
// Enable the authentication code grant on the server with a token TTL of 1 hour
2016-01-17 18:40:26 +01:00
$server->enableGrantType(
2016-02-12 19:06:31 +01:00
new AuthCodeGrant(
$authCodeRepository,
$refreshTokenRepository,
new \DateInterval('PT10M')
),
2016-01-17 18:40:26 +01:00
new \DateInterval('PT1H')
);
2016-02-12 19:06:31 +01:00
// Enable the refresh token grant on the server with a token TTL of 1 month
2016-01-17 18:40:26 +01:00
$server->enableGrantType(
new RefreshTokenGrant($refreshTokenRepository),
new \DateInterval('P1M')
2016-01-17 18:40:26 +01:00
);
return $server;
2016-02-19 18:09:39 -05:00
},
2016-11-08 12:27:49 +00:00
ResourceServer::class => function () {
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
$server = new ResourceServer(
new AccessTokenRepository(),
$publicKeyPath
);
2017-07-01 16:19:23 +00:00
2016-11-08 12:27:49 +00:00
return $server;
},
2016-01-17 18:40:26 +01:00
]);
2016-02-12 19:06:31 +01:00
// Access token issuer
2016-01-17 18:40:26 +01:00
$app->post('/access_token', function () {
2016-04-17 12:54:49 +01:00
})->add(new AuthorizationServerMiddleware($app->getContainer()->get(AuthorizationServer::class)));
2016-01-17 18:40:26 +01:00
2016-02-12 19:06:31 +01:00
// Secured API
2016-03-08 21:49:05 +01:00
$app->group('/api', function () {
2016-02-12 19:06:31 +01:00
$this->get('/user', function (ServerRequestInterface $request, ResponseInterface $response) {
$params = [];
if (in_array('basic', $request->getAttribute('oauth_scopes', []))) {
$params = [
'id' => 1,
'name' => 'Alex',
2016-03-08 21:49:05 +01:00
'city' => 'London',
2016-02-12 19:06:31 +01:00
];
}
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 12:27:49 +00:00
})->add(new ResourceServerMiddleware($app->getContainer()->get(ResourceServer::class)));
2016-02-12 19:06:31 +01:00
2016-01-17 18:40:26 +01:00
$app->run();