2016-02-11 23:00:01 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
2016-02-12 19:47:49 +05:30
|
|
|
use League\OAuth2\Server\Grant\AuthCodeGrant;
|
2016-04-10 16:17:09 +05:30
|
|
|
use League\OAuth2\Server\RequestTypes\AuthorizationRequest;
|
2016-02-11 23:00:01 +05:30
|
|
|
use League\OAuth2\Server\Server;
|
2016-04-10 16:17:09 +05:30
|
|
|
use OAuth2ServerExamples\Entities\UserEntity;
|
2016-02-11 23:00:01 +05:30
|
|
|
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
|
2016-02-12 19:02:58 +05:30
|
|
|
use OAuth2ServerExamples\Repositories\AuthCodeRepository;
|
2016-02-11 23:00:01 +05:30
|
|
|
use OAuth2ServerExamples\Repositories\ClientRepository;
|
|
|
|
use OAuth2ServerExamples\Repositories\RefreshTokenRepository;
|
|
|
|
use OAuth2ServerExamples\Repositories\ScopeRepository;
|
2016-02-12 23:36:31 +05:30
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
2016-02-11 23:00:01 +05:30
|
|
|
use Slim\App;
|
2016-02-12 23:36:31 +05:30
|
|
|
use Zend\Diactoros\Stream;
|
2016-02-11 23:00:01 +05:30
|
|
|
|
2016-02-22 13:30:50 +05:30
|
|
|
include __DIR__ . '/../vendor/autoload.php';
|
2016-02-11 23:00:01 +05:30
|
|
|
|
2016-02-12 19:02:58 +05:30
|
|
|
$app = new App([
|
2016-02-12 23:36:31 +05:30
|
|
|
'settings' => [
|
|
|
|
'displayErrorDetails' => true,
|
|
|
|
],
|
2016-02-12 19:02:58 +05:30
|
|
|
Server::class => function () {
|
|
|
|
// Init our repositories
|
|
|
|
$clientRepository = new ClientRepository();
|
|
|
|
$scopeRepository = new ScopeRepository();
|
|
|
|
$accessTokenRepository = new AccessTokenRepository();
|
|
|
|
$authCodeRepository = new AuthCodeRepository();
|
2016-02-12 23:36:31 +05:30
|
|
|
$refreshTokenRepository = new RefreshTokenRepository();
|
2016-02-12 19:02:58 +05:30
|
|
|
|
|
|
|
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
|
|
|
|
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
|
|
|
|
|
|
|
|
// Setup the authorization server
|
|
|
|
$server = new Server(
|
|
|
|
$clientRepository,
|
|
|
|
$accessTokenRepository,
|
|
|
|
$scopeRepository,
|
|
|
|
$privateKeyPath,
|
|
|
|
$publicKeyPath
|
|
|
|
);
|
2016-02-11 23:00:01 +05:30
|
|
|
|
2016-02-12 23:36:31 +05:30
|
|
|
// Enable the authentication code grant on the server with a token TTL of 1 hour
|
2016-02-12 19:02:58 +05:30
|
|
|
$server->enableGrantType(
|
2016-02-12 19:47:49 +05:30
|
|
|
new AuthCodeGrant(
|
2016-02-12 19:02:58 +05:30
|
|
|
$authCodeRepository,
|
|
|
|
$refreshTokenRepository,
|
|
|
|
new \DateInterval('PT10M')
|
|
|
|
),
|
|
|
|
new \DateInterval('PT1H')
|
|
|
|
);
|
|
|
|
|
|
|
|
return $server;
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
|
2016-04-10 16:17:09 +05:30
|
|
|
$app->get('/authorize', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
|
2016-03-09 02:17:02 +05:30
|
|
|
/* @var \League\OAuth2\Server\Server $server */
|
|
|
|
$server = $app->getContainer()->get(Server::class);
|
|
|
|
|
2016-02-12 19:02:58 +05:30
|
|
|
try {
|
2016-04-10 16:17:09 +05:30
|
|
|
// Validate the HTTP request and return an AuthorizationRequest object.
|
|
|
|
// The auth request object can be serialized into a user's session
|
|
|
|
$authRequest = $server->validateAuthorizationRequest($request);
|
|
|
|
|
|
|
|
// Once the user has logged in set the user on the AuthorizationRequest
|
|
|
|
$authRequest->setUser(new UserEntity());
|
|
|
|
|
|
|
|
// Once the user has approved or denied the client update the status
|
|
|
|
// (true = approved, false = denied)
|
|
|
|
$authRequest->setAuthorizationApproved(true);
|
|
|
|
|
|
|
|
// Return the HTTP redirect response
|
|
|
|
return $server->completeAuthorizationRequest($authRequest, $response);
|
2016-03-09 02:17:02 +05:30
|
|
|
} catch (OAuthServerException $exception) {
|
|
|
|
return $exception->generateHttpResponse($response);
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
$body = new Stream('php://temp', 'r+');
|
|
|
|
$body->write($exception->getMessage());
|
2016-04-10 16:18:46 +05:30
|
|
|
|
2016-03-09 02:17:02 +05:30
|
|
|
return $response->withStatus(500)->withBody($body);
|
2016-02-12 19:02:58 +05:30
|
|
|
}
|
2016-02-11 23:00:01 +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);
|
2016-02-11 23:00:01 +05:30
|
|
|
|
|
|
|
try {
|
2016-04-10 16:17:09 +05:30
|
|
|
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);
|
2016-02-11 23:00:01 +05:30
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$app->run();
|