2015-04-05 22:48:28 +05:30
|
|
|
<?php
|
2016-04-17 17:30:49 +05:30
|
|
|
/**
|
|
|
|
* @author Alex Bilbie <hello@alexbilbie.com>
|
|
|
|
* @copyright Copyright (c) Alex Bilbie
|
|
|
|
* @license http://mit-license.org/
|
|
|
|
*
|
|
|
|
* @link https://github.com/thephpleague/oauth2-server
|
|
|
|
*/
|
2015-04-05 22:48:28 +05:30
|
|
|
|
2016-04-17 17:30:49 +05:30
|
|
|
use League\OAuth2\Server\AuthorizationServer;
|
2015-11-16 14:57:49 +05:30
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
2015-04-05 22:48:28 +05:30
|
|
|
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-04-17 17:30:49 +05:30
|
|
|
'settings' => [
|
2016-02-12 23:36:31 +05:30
|
|
|
'displayErrorDetails' => true,
|
|
|
|
],
|
2016-04-17 17:30:49 +05:30
|
|
|
AuthorizationServer::class => function () {
|
2016-01-17 19:53:42 +05:30
|
|
|
// Init our repositories
|
2016-04-17 17:30:49 +05:30
|
|
|
$clientRepository = new ClientRepository(); // instance of ClientRepositoryInterface
|
|
|
|
$scopeRepository = new ScopeRepository(); // instance of ScopeRepositoryInterface
|
|
|
|
$accessTokenRepository = new AccessTokenRepository(); // instance of AccessTokenRepositoryInterface
|
2016-01-17 19:53:42 +05:30
|
|
|
|
2016-04-17 17:30:49 +05:30
|
|
|
// Path to public and private keys
|
|
|
|
$privateKey = 'file://path/to/private.key';
|
|
|
|
//$privateKey = new CryptKey('file://path/to/private.key', 'passphrase'); // if private key has a pass phrase
|
|
|
|
$publicKey = 'file://path/to/public.key';
|
2016-01-17 19:53:42 +05:30
|
|
|
|
|
|
|
// Setup the authorization server
|
2016-04-17 17:30:49 +05:30
|
|
|
$server = new AuthorizationServer(
|
2016-01-17 19:53:42 +05:30
|
|
|
$clientRepository,
|
|
|
|
$accessTokenRepository,
|
|
|
|
$scopeRepository,
|
2016-04-17 17:30:49 +05:30
|
|
|
$privateKey,
|
|
|
|
$publicKey
|
2016-01-17 19:53:42 +05:30
|
|
|
);
|
|
|
|
|
2016-04-17 17:30:49 +05:30
|
|
|
// Enable the client credentials grant on the server
|
2016-02-12 23:36:31 +05:30
|
|
|
$server->enableGrantType(
|
2016-04-17 17:30:49 +05:30
|
|
|
new \League\OAuth2\Server\Grant\ClientCredentialsGrant(),
|
|
|
|
new \DateInterval('PT1H') // access tokens will expire after 1 hour
|
2016-02-12 23:36:31 +05:30
|
|
|
);
|
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) {
|
2016-04-17 17:30:49 +05:30
|
|
|
|
|
|
|
/* @var \League\OAuth2\Server\AuthorizationServer $server */
|
|
|
|
$server = $app->getContainer()->get(AuthorizationServer::class);
|
2016-02-12 23:36:31 +05:30
|
|
|
|
2015-11-13 23:10:39 +05:30
|
|
|
try {
|
2016-04-17 17:30:49 +05:30
|
|
|
|
|
|
|
// Try to respond to the request
|
2016-04-09 20:50:30 +05:30
|
|
|
return $server->respondToAccessTokenRequest($request, $response);
|
2016-04-17 17:30:49 +05:30
|
|
|
|
2016-02-12 23:36:31 +05:30
|
|
|
} catch (OAuthServerException $exception) {
|
2016-04-17 17:30:49 +05:30
|
|
|
|
|
|
|
// All instances of OAuthServerException can be formatted into a HTTP response
|
2016-02-12 23:36:31 +05:30
|
|
|
return $exception->generateHttpResponse($response);
|
2016-04-17 17:30:49 +05:30
|
|
|
|
2016-02-12 23:36:31 +05:30
|
|
|
} catch (\Exception $exception) {
|
2016-04-17 17:30:49 +05:30
|
|
|
|
|
|
|
// Unknown exception
|
2016-02-12 23:36:31 +05:30
|
|
|
$body = new Stream('php://temp', 'r+');
|
|
|
|
$body->write($exception->getMessage());
|
|
|
|
|
|
|
|
return $response->withStatus(500)->withBody($body);
|
2016-04-17 17:30:49 +05:30
|
|
|
|
2015-11-13 23:10:39 +05:30
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$app->run();
|