oauth2-server/src/Server.php

194 lines
6.3 KiB
PHP
Raw Normal View History

2015-04-05 21:33:06 +05:30
<?php
2015-04-05 21:33:06 +05:30
namespace League\OAuth2\Server;
2016-01-16 00:07:26 +05:30
use DateInterval;
2015-10-14 14:21:53 +05:30
use League\Event\EmitterAwareInterface;
use League\Event\EmitterAwareTrait;
2015-11-13 23:11:05 +05:30
use League\OAuth2\Server\Exception\OAuthServerException;
2015-10-14 14:21:53 +05:30
use League\OAuth2\Server\Grant\GrantTypeInterface;
2016-01-17 19:33:41 +05:30
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
use League\OAuth2\Server\Repositories\ScopeRepositoryInterface;
2015-11-13 23:11:05 +05:30
use League\OAuth2\Server\ResponseTypes\BearerTokenResponse;
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
2016-01-15 18:32:47 +05:30
use Psr\Http\Message\ResponseInterface;
2015-10-14 14:21:53 +05:30
use Psr\Http\Message\ServerRequestInterface;
2016-01-15 18:32:47 +05:30
use Zend\Diactoros\Response;
2015-10-14 14:21:53 +05:30
use Zend\Diactoros\ServerRequestFactory;
2015-04-05 21:33:06 +05:30
2015-10-14 14:21:53 +05:30
class Server implements EmitterAwareInterface
2015-04-05 21:33:06 +05:30
{
2015-10-14 14:21:53 +05:30
use EmitterAwareTrait;
2015-04-05 21:33:06 +05:30
/**
* @var \League\OAuth2\Server\Grant\GrantTypeInterface[]
*/
protected $enabledGrantTypes = [];
/**
2015-11-13 23:11:05 +05:30
* @var ResponseTypeInterface[]
2015-04-05 21:33:06 +05:30
*/
2015-11-13 23:11:05 +05:30
protected $grantResponseTypes = [];
2015-04-05 21:33:06 +05:30
/**
* @var DateInterval[]
*/
protected $grantTypeAccessTokenTTL = [];
2016-01-15 17:11:48 +05:30
/**
* @var string
*/
protected $defaultPrivateKeyPath;
2015-04-05 21:33:06 +05:30
/**
2015-11-13 23:11:05 +05:30
* @var ResponseTypeInterface
2015-04-05 21:33:06 +05:30
*/
2015-11-13 23:11:05 +05:30
protected $defaultResponseType;
2015-04-05 21:33:06 +05:30
/**
* @var string
*/
2016-01-17 19:33:41 +05:30
private $defaultPublicKeyPath;
2015-04-05 21:33:06 +05:30
2015-10-14 14:21:53 +05:30
/**
2016-01-17 19:33:41 +05:30
* @var \League\OAuth2\Server\Repositories\ClientRepositoryInterface
2015-10-14 14:21:53 +05:30
*/
2016-01-17 19:33:41 +05:30
private $clientRepository;
/**
* @var \League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface
*/
private $accessTokenRepository;
/**
* @var \League\OAuth2\Server\Repositories\ScopeRepositoryInterface
*/
private $scopeRepository;
/**
2016-01-17 19:33:41 +05:30
* New server instance
2015-04-05 21:33:06 +05:30
*
2016-01-17 19:33:41 +05:30
* @param \League\OAuth2\Server\Repositories\ClientRepositoryInterface $clientRepository
* @param \League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface $accessTokenRepository
* @param \League\OAuth2\Server\Repositories\ScopeRepositoryInterface $scopeRepository
* @param string $defaultPrivateKeyPath
* @param string $defaultPublicKeyPath
* @param null|\League\OAuth2\Server\ResponseTypes\ResponseTypeInterface $responseType
2015-04-05 21:33:06 +05:30
*/
2016-01-17 19:33:41 +05:30
public function __construct(
ClientRepositoryInterface $clientRepository,
AccessTokenRepositoryInterface $accessTokenRepository,
ScopeRepositoryInterface $scopeRepository,
$defaultPrivateKeyPath,
$defaultPublicKeyPath,
ResponseTypeInterface $responseType = null
) {
$this->defaultPrivateKeyPath = $defaultPrivateKeyPath;
$this->defaultPublicKeyPath = $defaultPublicKeyPath;
$this->clientRepository = $clientRepository;
$this->accessTokenRepository = $accessTokenRepository;
$this->scopeRepository = $scopeRepository;
$this->defaultResponseType = $responseType;
}
2015-04-05 21:33:06 +05:30
2016-01-15 17:11:48 +05:30
/**
* Get the default token type that grants will return
*
* @return ResponseTypeInterface
*/
protected function getDefaultResponseType()
{
if (!$this->defaultResponseType instanceof ResponseTypeInterface) {
2016-01-17 19:33:07 +05:30
$this->defaultResponseType = new BearerTokenResponse(
$this->defaultPrivateKeyPath,
$this->defaultPublicKeyPath,
$this->accessTokenRepository
);
2016-01-15 17:11:48 +05:30
}
return $this->defaultResponseType;
}
2015-04-05 21:33:06 +05:30
/**
2015-10-14 14:21:53 +05:30
* Enable a grant type on the server
2015-04-05 21:33:06 +05:30
*
2015-10-14 14:21:53 +05:30
* @param \League\OAuth2\Server\Grant\GrantTypeInterface $grantType
* @param DateInterval $accessTokenTTL
2015-04-05 21:33:06 +05:30
*/
public function enableGrantType(
2015-10-14 14:21:53 +05:30
GrantTypeInterface $grantType,
\DateInterval $accessTokenTTL
2015-04-05 21:33:06 +05:30
) {
2016-01-17 19:33:07 +05:30
$grantType->setAccessTokenRepository($this->accessTokenRepository);
$grantType->setClientRepository($this->clientRepository);
$grantType->setScopeRepository($this->scopeRepository);
2015-10-14 14:21:53 +05:30
$grantType->setEmitter($this->getEmitter());
$this->enabledGrantTypes[$grantType->getIdentifier()] = $grantType;
2015-04-05 21:33:06 +05:30
// Set grant response type
2016-01-17 19:33:33 +05:30
$this->grantResponseTypes[$grantType->getIdentifier()] = $this->getDefaultResponseType();
2015-04-05 21:33:06 +05:30
// Set grant access token TTL
2016-01-17 19:33:33 +05:30
$this->grantTypeAccessTokenTTL[$grantType->getIdentifier()] = $accessTokenTTL;
2015-04-05 21:33:06 +05:30
}
/**
* Return an access token response
*
2016-01-16 00:06:34 +05:30
* @param \Psr\Http\Message\ServerRequestInterface|null $request
* @param \Psr\Http\Message\ResponseInterface|null $response
2015-04-05 21:33:06 +05:30
*
2016-01-15 18:32:47 +05:30
* @return \Psr\Http\Message\ResponseInterface
2015-11-13 23:11:05 +05:30
* @throws \League\OAuth2\Server\Exception\OAuthServerException
2015-04-05 21:33:06 +05:30
*/
2016-01-15 18:32:47 +05:30
public function respondToRequest(ServerRequestInterface $request = null, ResponseInterface $response = null)
2015-04-05 21:33:06 +05:30
{
2016-01-15 18:32:47 +05:30
if (!$request instanceof ServerRequestInterface) {
2015-10-14 14:21:53 +05:30
$request = ServerRequestFactory::fromGlobals();
2015-04-05 21:33:06 +05:30
}
2016-01-15 18:32:47 +05:30
if (!$response instanceof ResponseInterface) {
$response = new Response();
}
2015-11-13 23:11:05 +05:30
$tokenResponse = null;
2015-10-14 14:21:53 +05:30
foreach ($this->enabledGrantTypes as $grantType) {
if ($grantType->canRespondToRequest($request)) {
2015-11-13 23:11:05 +05:30
$tokenResponse = $grantType->respondToRequest(
2015-10-14 14:21:53 +05:30
$request,
2015-11-13 23:11:05 +05:30
$this->grantResponseTypes[$grantType->getIdentifier()],
$this->grantTypeAccessTokenTTL[$grantType->getIdentifier()]
2015-10-14 14:21:53 +05:30
);
}
2015-04-05 21:33:06 +05:30
}
2016-01-15 18:32:47 +05:30
if (!$tokenResponse instanceof ResponseTypeInterface) {
return OAuthServerException::unsupportedGrantType()->generateHttpResponse($response);
}
return $tokenResponse->generateHttpResponse($response);
}
/**
* PSR7 middleware callable
*
* @param \Psr\Http\Message\ServerRequestInterface $request
* @param \Psr\Http\Message\ResponseInterface $response
2016-01-16 00:07:26 +05:30
* @param callable $next
2016-01-15 18:32:47 +05:30
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next)
{
$response = $this->respondToRequest($request, $response);
if (in_array($response->getStatusCode(), [400, 401, 500])) {
return $response;
2015-10-14 14:21:53 +05:30
}
2015-04-05 21:33:06 +05:30
2016-01-15 18:32:47 +05:30
return $next($request, $response);
2015-04-05 21:33:06 +05:30
}
}