2012-12-29 01:42:16 +05:30
|
|
|
<?php
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
|
|
|
* OAuth 2.0 Resource Server
|
|
|
|
*
|
2014-01-08 21:45:29 +05:30
|
|
|
* @package league/oauth2-server
|
2013-02-13 02:03:23 +05:30
|
|
|
* @author Alex Bilbie <hello@alexbilbie.com>
|
2014-03-10 01:04:23 +05:30
|
|
|
* @copyright Copyright (c) Alex Bilbie
|
2013-02-13 02:03:23 +05:30
|
|
|
* @license http://mit-license.org/
|
2014-03-10 01:35:38 +05:30
|
|
|
* @link https://github.com/thephpleague/oauth2-server
|
2013-02-13 02:03:23 +05:30
|
|
|
*/
|
2012-12-29 01:42:16 +05:30
|
|
|
|
2013-05-09 00:12:23 +05:30
|
|
|
namespace League\OAuth2\Server;
|
2012-12-29 01:42:16 +05:30
|
|
|
|
2013-12-17 05:17:03 +05:30
|
|
|
use League\OAuth2\Server\Storage\ClientInterface;
|
2014-01-10 23:00:12 +05:30
|
|
|
use League\OAuth2\Server\Storage\AccessTokenInterface;
|
|
|
|
use League\OAuth2\Server\Storage\SessionInterface;
|
|
|
|
use League\OAuth2\Server\Storage\ScopeInterface;
|
2014-05-02 21:51:53 +05:30
|
|
|
use League\OAuth2\Server\Entity\AccessTokenEntity;
|
2014-05-07 21:51:24 +05:30
|
|
|
use League\OAuth2\Server\TokenType\Bearer;
|
2014-05-08 14:59:40 +05:30
|
|
|
use League\OAuth2\Server\Exception;
|
2013-12-17 05:17:03 +05:30
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2012-12-29 01:42:16 +05:30
|
|
|
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
|
|
|
* OAuth 2.0 Resource Server
|
|
|
|
*/
|
2014-02-24 20:13:26 +05:30
|
|
|
class ResourceServer extends AbstractServer
|
2012-12-29 01:42:16 +05:30
|
|
|
{
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
|
|
|
* The access token
|
2014-11-07 07:50:06 +05:30
|
|
|
* @var \League\OAuth2\Server\Entity\AccessTokenEntity
|
2013-02-13 02:03:23 +05:30
|
|
|
*/
|
2014-01-17 22:46:52 +05:30
|
|
|
protected $accessToken;
|
2012-12-29 01:42:16 +05:30
|
|
|
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* The query string key which is used by clients to present the access token (default: access_token)
|
2013-02-13 02:03:23 +05:30
|
|
|
* @var string
|
|
|
|
*/
|
2013-12-17 05:17:03 +05:30
|
|
|
protected $tokenKey = 'access_token';
|
2012-12-29 01:42:16 +05:30
|
|
|
|
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Initialise the resource server
|
2014-05-03 15:23:57 +05:30
|
|
|
* @param SessionInterface $sessionStorage
|
|
|
|
* @param AccessTokenInteface $accessTokenStorage
|
|
|
|
* @param ClientInterface $clientStorage
|
|
|
|
* @param ScopeInterface $scopeStorage
|
2013-12-17 05:17:03 +05:30
|
|
|
* @return self
|
2012-12-29 01:42:16 +05:30
|
|
|
*/
|
2013-12-17 05:17:03 +05:30
|
|
|
public function __construct(
|
|
|
|
SessionInterface $sessionStorage,
|
2014-01-10 23:00:12 +05:30
|
|
|
AccessTokenInterface $accessTokenStorage,
|
|
|
|
ClientInterface $clientStorage,
|
|
|
|
ScopeInterface $scopeStorage
|
2013-12-17 05:17:03 +05:30
|
|
|
) {
|
2014-11-07 07:50:06 +05:30
|
|
|
$this->setSessionStorage($sessionStorage);
|
|
|
|
$this->setAccessTokenStorage($accessTokenStorage);
|
|
|
|
$this->setClientStorage($clientStorage);
|
|
|
|
$this->setScopeStorage($scopeStorage);
|
2014-01-10 23:00:12 +05:30
|
|
|
|
2014-05-07 21:40:52 +05:30
|
|
|
// Set Bearer as the default token type
|
2014-09-09 18:06:20 +05:30
|
|
|
$this->setTokenType(new Bearer);
|
2014-05-07 21:40:52 +05:30
|
|
|
|
2014-07-11 19:43:28 +05:30
|
|
|
parent::__construct();
|
|
|
|
|
2013-12-17 05:17:03 +05:30
|
|
|
return $this;
|
2013-01-05 03:51:24 +05:30
|
|
|
}
|
2012-12-29 01:42:16 +05:30
|
|
|
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
|
|
|
* Sets the query string key for the access token.
|
|
|
|
* @param $key The new query string key
|
2013-12-17 05:17:03 +05:30
|
|
|
* @return self
|
2013-02-13 02:03:23 +05:30
|
|
|
*/
|
2014-07-11 22:57:03 +05:30
|
|
|
public function setIdKey($key)
|
2013-02-05 21:50:45 +05:30
|
|
|
{
|
|
|
|
$this->tokenKey = $key;
|
2014-05-03 15:23:57 +05:30
|
|
|
|
2013-11-26 05:28:42 +05:30
|
|
|
return $this;
|
2013-02-05 21:50:45 +05:30
|
|
|
}
|
|
|
|
|
2013-01-22 21:55:51 +05:30
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Gets the access token
|
2013-02-13 02:03:23 +05:30
|
|
|
* @return string
|
2013-01-22 21:55:51 +05:30
|
|
|
*/
|
|
|
|
public function getAccessToken()
|
|
|
|
{
|
2014-07-11 22:57:03 +05:30
|
|
|
return $this->accessToken->getId();
|
2013-01-22 21:55:51 +05:30
|
|
|
}
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
/**
|
|
|
|
* Checks if the access token is valid or not
|
|
|
|
* @param $headersOnly Limit Access Token to Authorization header only
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isValidRequest($headersOnly = true, $accessToken = null)
|
|
|
|
{
|
2014-05-03 15:38:33 +05:30
|
|
|
$accessTokenString = ($accessToken !== null)
|
|
|
|
? $accessToken
|
2014-11-07 07:06:12 +05:30
|
|
|
: $this->determineAccessToken($headersOnly);
|
2014-05-02 21:51:53 +05:30
|
|
|
|
|
|
|
// Set the access token
|
2014-11-07 07:50:06 +05:30
|
|
|
$this->accessToken = $this->getAccessTokenStorage()->get($accessTokenString);
|
2014-05-03 15:23:57 +05:30
|
|
|
|
2014-05-08 14:59:40 +05:30
|
|
|
if (!$this->accessToken instanceof AccessTokenEntity) {
|
|
|
|
throw new Exception\AccessDeniedException;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2014-05-02 21:51:53 +05:30
|
|
|
}
|
|
|
|
|
2013-01-05 03:51:24 +05:30
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Reads in the access token from the headers
|
2013-05-28 09:57:30 +05:30
|
|
|
* @param $headersOnly Limit Access Token to Authorization header only
|
2014-05-03 15:23:57 +05:30
|
|
|
* @throws Exception\MissingAccessTokenException Thrown if there is no access token presented
|
2013-01-05 03:51:24 +05:30
|
|
|
* @return string
|
|
|
|
*/
|
2013-06-06 09:29:29 +05:30
|
|
|
public function determineAccessToken($headersOnly = false)
|
2012-12-29 01:42:16 +05:30
|
|
|
{
|
2014-05-07 21:51:24 +05:30
|
|
|
if ($this->getRequest()->headers->get('Authorization') !== null) {
|
|
|
|
$accessToken = $this->getTokenType()->determineAccessTokenInHeader($this->getRequest());
|
2013-05-28 09:57:30 +05:30
|
|
|
} elseif ($headersOnly === false) {
|
2014-05-08 14:59:40 +05:30
|
|
|
$accessToken = ($this->getRequest()->server->get('REQUEST_METHOD') === 'GET')
|
|
|
|
? $this->getRequest()->query->get($this->tokenKey)
|
|
|
|
: $this->getRequest()->request->get($this->tokenKey);
|
2012-12-29 01:42:16 +05:30
|
|
|
}
|
|
|
|
|
2013-05-05 22:35:46 +05:30
|
|
|
if (empty($accessToken)) {
|
2014-05-01 19:02:54 +05:30
|
|
|
throw new Exception\InvalidRequestException('access token');
|
2012-12-29 01:42:16 +05:30
|
|
|
}
|
|
|
|
|
2013-05-05 22:35:46 +05:30
|
|
|
return $accessToken;
|
2012-12-29 01:42:16 +05:30
|
|
|
}
|
|
|
|
}
|