oauth2-server/examples/public/password.php

76 lines
2.5 KiB
PHP
Raw Normal View History

2015-04-06 01:41:10 +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
*/
2015-04-06 01:41:10 +05:30
2016-04-17 17:36:17 +05:30
use League\OAuth2\Server\AuthorizationServer;
2015-11-16 18:28:50 +05:30
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Grant\PasswordGrant;
2015-04-06 01:41:10 +05:30
use OAuth2ServerExamples\Repositories\AccessTokenRepository;
use OAuth2ServerExamples\Repositories\ClientRepository;
2016-01-13 06:17:41 +05:30
use OAuth2ServerExamples\Repositories\RefreshTokenRepository;
2015-04-06 01:41:10 +05:30
use OAuth2ServerExamples\Repositories\ScopeRepository;
use OAuth2ServerExamples\Repositories\UserRepository;
2016-02-12 23:36:31 +05:30
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
2015-11-16 18:28:50 +05:30
use Slim\App;
2016-02-12 23:36:31 +05:30
use Zend\Diactoros\Stream;
2015-04-06 01:41:10 +05:30
2016-02-22 13:30:50 +05:30
include __DIR__ . '/../vendor/autoload.php';
2015-04-06 01:41:10 +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-04-17 17:24:49 +05:30
AuthorizationServer::class => function () {
2016-01-17 19:53:42 +05:30
// 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
$userRepository = new UserRepository();
$refreshTokenRepository = new RefreshTokenRepository();
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
// Setup the authorization server
2016-04-17 17:24:49 +05:30
$server = new AuthorizationServer(
2016-01-17 19:53:42 +05:30
$clientRepository,
$accessTokenRepository,
$scopeRepository,
$privateKeyPath,
$publicKeyPath
);
2016-01-17 23:10:26 +05:30
// Enable the password grant on the server with a token TTL of 1 hour
2016-01-17 19:53:42 +05:30
$server->enableGrantType(
new PasswordGrant($userRepository, $refreshTokenRepository),
new \DateInterval('PT1H')
);
return $server;
2016-02-20 04:39:39 +05:30
},
2016-01-17 19:53:42 +05:30
]);
2015-04-06 01:41:10 +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:24:49 +05:30
/* @var \League\OAuth2\Server\AuthorizationServer $server */
$server = $app->getContainer()->get(AuthorizationServer::class);
2016-02-12 23:36:31 +05:30
2015-04-06 01:41:10 +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-04-06 01:41:10 +05:30
}
});
2015-11-16 18:28:50 +05:30
$app->run();