oauth2-server/examples/public/client_credentials.php

65 lines
2.0 KiB
PHP
Raw Normal View History

2015-04-05 22:48:28 +05:30
<?php
2015-11-16 14:57:49 +05:30
use League\OAuth2\Server\Exception\OAuthServerException;
2015-10-14 14:21:53 +05:30
use League\OAuth2\Server\Grant\ClientCredentialsGrant;
2015-04-05 22:48:28 +05:30
use League\OAuth2\Server\Server;
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
use OAuth2ServerExamples\Repositories\ClientRepository;
use OAuth2ServerExamples\Repositories\ScopeRepository;
2016-02-12 23:36:31 +05:30
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
2015-11-13 23:10:39 +05:30
use Slim\App;
2016-02-12 23:36:31 +05:30
use Zend\Diactoros\Stream;
2015-11-13 23:10:39 +05:30
2016-02-22 13:30:50 +05:30
include __DIR__ . '/../vendor/autoload.php';
2015-04-05 22:48:28 +05:30
2016-01-17 19:53:42 +05:30
$app = new App([
2016-02-12 23:36:31 +05:30
'settings' => [
'displayErrorDetails' => true,
],
2016-01-17 19:53:42 +05:30
Server::class => function () {
// Init our repositories
$clientRepository = new ClientRepository();
$accessTokenRepository = new AccessTokenRepository();
2016-02-12 23:36:31 +05:30
$scopeRepository = new ScopeRepository();
2016-01-17 19:53:42 +05:30
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
// Setup the authorization server
$server = new Server(
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
$publicKeyPath
);
// Enable the client credentials grant on the server with a token TTL of 1 hour
2016-02-12 23:36:31 +05:30
$server->enableGrantType(
new ClientCredentialsGrant(),
new \DateInterval('PT1H')
);
2016-01-17 19:53:42 +05:30
return $server;
2016-02-20 04:39:39 +05:30
},
2016-01-17 19:53:42 +05:30
]);
2015-11-13 23:10:39 +05:30
2016-02-12 23:36:31 +05:30
$app->post('/access_token', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
/* @var \League\OAuth2\Server\Server $server */
$server = $app->getContainer()->get(Server::class);
2015-11-13 23:10:39 +05:30
try {
return $server->respondToAccessTokenRequest($request, $response);
2016-02-12 23:36:31 +05:30
} catch (OAuthServerException $exception) {
return $exception->generateHttpResponse($response);
} catch (\Exception $exception) {
$body = new Stream('php://temp', 'r+');
$body->write($exception->getMessage());
return $response->withStatus(500)->withBody($body);
2015-11-13 23:10:39 +05:30
}
});
$app->run();