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;
|
2015-11-13 23:10:39 +05:30
|
|
|
use Slim\App;
|
|
|
|
use Slim\Http\Request;
|
|
|
|
use Slim\Http\Response;
|
|
|
|
|
2016-02-20 04:39:39 +05:30
|
|
|
include __DIR__.'/../vendor/autoload.php';
|
2015-04-05 22:48:28 +05:30
|
|
|
|
2015-11-13 23:10:39 +05:30
|
|
|
// App
|
2016-01-17 19:53:42 +05:30
|
|
|
$app = new App([
|
|
|
|
Server::class => function () {
|
|
|
|
|
|
|
|
// Init our repositories
|
|
|
|
$clientRepository = new ClientRepository();
|
|
|
|
$scopeRepository = new ScopeRepository();
|
|
|
|
$accessTokenRepository = new AccessTokenRepository();
|
|
|
|
|
2016-02-20 04:39:39 +05:30
|
|
|
$privateKeyPath = 'file://'.__DIR__.'/../private.key';
|
|
|
|
$publicKeyPath = 'file://'.__DIR__.'/../public.key';
|
2016-01-17 19:53:42 +05:30
|
|
|
|
|
|
|
// 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
|
|
|
|
$server->enableGrantType(new ClientCredentialsGrant(), new \DateInterval('PT1H'));
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
$app->post('/access_token', function (Request $request, Response $response) {
|
|
|
|
/** @var Server $server */
|
2016-01-13 06:17:41 +05:30
|
|
|
$server = $this->get(Server::class);
|
2015-11-13 23:10:39 +05:30
|
|
|
try {
|
2016-01-15 18:32:47 +05:30
|
|
|
return $server->respondToRequest($request, $response);
|
2015-11-16 14:57:49 +05:30
|
|
|
} catch (OAuthServerException $e) {
|
2016-01-15 18:32:47 +05:30
|
|
|
return $e->generateHttpResponse($response);
|
2015-11-13 23:10:39 +05:30
|
|
|
} catch (\Exception $e) {
|
|
|
|
return $response->withStatus(500)->write($e->getMessage());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$app->run();
|