79 lines
2.1 KiB
PHP
Raw Normal View History

2016-03-24 15:27:55 +00: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-03-24 15:27:55 +00:00
2016-04-17 12:41:28 +01:00
use League\OAuth2\Server\ResourceServer;
2016-03-24 15:27:55 +00:00
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Slim\App;
include __DIR__ . '/../vendor/autoload.php';
$app = new App([
'settings' => [
'displayErrorDetails' => true,
],
2016-04-17 12:54:49 +01:00
ResourceServer::class => function () {
2016-03-24 15:27:55 +00:00
// Setup the authorization server
2016-04-17 12:41:28 +01:00
$server = new ResourceServer(
2016-03-24 15:27:55 +00:00
new AccessTokenRepository(),
'file://' . __DIR__ . '/../public.key'
);
return $server;
},
]);
$app->add(
new \League\OAuth2\Server\Middleware\ResourceServerMiddleware(
2016-04-17 12:54:49 +01:00
$app->getContainer()->get(ResourceServer::class)
2016-03-24 15:27:55 +00:00
)
);
$app->get('/users', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
$users = [
[
'id' => 123,
'name' => 'Alex',
'email' => 'alex@thephpleague.com',
],
[
'id' => 124,
'name' => 'Frank',
'email' => 'frank@thephpleague.com',
],
[
'id' => 125,
'name' => 'Phil',
'email' => 'phil@thephpleague.com',
],
];
2016-04-17 12:41:28 +01:00
// If the access token doesn't have the `basic` scope hide users' names
2016-03-24 15:27:55 +00:00
if (in_array('basic', $request->getAttribute('oauth_scopes')) === false) {
for ($i = 0; $i < count($users); $i++) {
unset($users[$i]['name']);
}
}
2016-04-17 12:41:28 +01:00
// If the access token doesn't have the `emal` scope hide users' email addresses
2016-03-24 15:27:55 +00:00
if (in_array('email', $request->getAttribute('oauth_scopes')) === false) {
for ($i = 0; $i < count($users); $i++) {
unset($users[$i]['email']);
}
}
$response->getBody()->write(json_encode($users));
return $response->withStatus(200);
});
$app->run();