oauth2-server/examples/public/implicit.php

82 lines
2.9 KiB
PHP
Raw Normal View History

2016-03-09 02:47:56 +05:30
<?php
2016-04-17 17:36:05 +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
*/
2016-03-09 02:47:56 +05:30
2016-04-17 17:36:17 +05:30
use League\OAuth2\Server\AuthorizationServer;
2016-03-09 02:47:56 +05:30
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Grant\ImplicitGrant;
2016-04-10 19:01:21 +05:30
use OAuth2ServerExamples\Entities\UserEntity;
2016-03-09 02:47:56 +05:30
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
use OAuth2ServerExamples\Repositories\ClientRepository;
use OAuth2ServerExamples\Repositories\ScopeRepository;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Slim\App;
use Zend\Diactoros\Stream;
include __DIR__ . '/../vendor/autoload.php';
$app = new App([
'settings' => [
'displayErrorDetails' => true,
],
2016-04-17 17:24:49 +05:30
AuthorizationServer::class => function () {
2016-03-09 02:47:56 +05:30
// Init our repositories
$clientRepository = new ClientRepository();
$scopeRepository = new ScopeRepository();
$accessTokenRepository = new AccessTokenRepository();
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
// Setup the authorization server
2016-04-17 17:24:49 +05:30
$server = new AuthorizationServer(
2016-03-09 02:47:56 +05:30
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
2017-07-01 23:16:48 +05:30
'lxZFUEsBCJ2Yb14IF2ygAHI5N4+ZAUXXaSeeJm6+twsUmIen'
2016-03-09 02:47:56 +05:30
);
2017-07-01 21:00:36 +05:30
$server->setEncryptionKey('lxZFUEsBCJ2Yb14IF2ygAHI5N4+ZAUXXaSeeJm6+twsUmIen');
2016-03-09 02:47:56 +05:30
// Enable the implicit grant on the server with a token TTL of 1 hour
2016-04-10 20:45:26 +05:30
$server->enableGrantType(new ImplicitGrant(new \DateInterval('PT1H')));
2016-03-09 02:47:56 +05:30
return $server;
},
]);
2016-04-10 19:01:21 +05:30
$app->get('/authorize', function (ServerRequestInterface $request, ResponseInterface $response) use ($app) {
2016-04-17 17:24:49 +05:30
/* @var \League\OAuth2\Server\AuthorizationServer $server */
$server = $app->getContainer()->get(AuthorizationServer::class);
2016-03-09 02:47:56 +05:30
try {
2016-04-10 19:01:21 +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:47:56 +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);
}
});
$app->run();