oauth2-server/examples/public/password.php

65 lines
1.9 KiB
PHP
Raw Normal View History

2015-04-06 01:41:10 +05:30
<?php
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 League\OAuth2\Server\Server;
2015-11-16 18:28:50 +05:30
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;
2015-11-16 18:28:50 +05:30
use Slim\App;
use Slim\Http\Request;
use Slim\Http\Response;
2015-04-06 01:41:10 +05:30
include(__DIR__ . '/../vendor/autoload.php');
2015-11-16 18:28:50 +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();
$userRepository = new UserRepository();
$refreshTokenRepository = new RefreshTokenRepository();
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
// Setup the authorization server
$server = new Server(
$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;
}
]);
2015-04-06 01:41:10 +05:30
2015-11-16 18:28:50 +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-04-06 01:41:10 +05:30
try {
2016-01-15 18:32:47 +05:30
return $server->respondToRequest($request, $response);
2015-11-16 18:28:50 +05:30
} catch (OAuthServerException $e) {
2016-01-15 18:32:47 +05:30
return $e->generateHttpResponse($response);
2015-11-16 18:28:50 +05:30
} catch (\Exception $e) {
return $response->withStatus(500)->write($e->getMessage());
2015-04-06 01:41:10 +05:30
}
});
2015-11-16 18:28:50 +05:30
$app->run();