Last active
April 18, 2016 10:02
-
-
Save alexbilbie/face0c52f60c621edd301c2be5c0f1a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use League\OAuth2\Server\ResourceServer; | |
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([ | |
// Add the resource server to the DI container | |
ResourceServer::class => function () { | |
$server = new ResourceServer( | |
new AccessTokenRepository(), // instance of AccessTokenRepositoryInterface | |
'file://' . __DIR__ . '/../public.key' // the authorization server's public key | |
); | |
return $server; | |
}, | |
]); | |
// Add the resource server middleware which will intercept and validate requests | |
$app->add( | |
new \League\OAuth2\Server\Middleware\ResourceServerMiddleware( | |
$app->getContainer()->get(ResourceServer::class) | |
) | |
); | |
// An example endpoint secured with OAuth 2.0 | |
$app->get( | |
'/users', | |
function (ServerRequestInterface $request, ResponseInterface $response) use ($app) { | |
$users = [ | |
[ | |
'id' => 123, | |
'name' => 'Alex', | |
'email' => '[email protected]', | |
], | |
[ | |
'id' => 124, | |
'name' => 'Frank', | |
'email' => '[email protected]', | |
], | |
[ | |
'id' => 125, | |
'name' => 'Phil', | |
'email' => '[email protected]', | |
], | |
]; | |
// If the access token doesn't have the `basic` scope hide users' names | |
if (in_array('basic', $request->getAttribute('oauth_scopes')) === false) { | |
for ($i = 0; $i < count($users); $i++) { | |
unset($users[$i]['name']); | |
} | |
} | |
// If the access token doesn't have the `email` scope hide users' email addresses | |
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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment