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-01-08 21:45:29 +05:30
|
|
|
* @copyright Copyright (c) PHP League of Extraordinary Packages
|
2013-02-13 02:03:23 +05:30
|
|
|
* @license http://mit-license.org/
|
2013-05-09 00:00:53 +05:30
|
|
|
* @link http://github.com/php-loep/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
|
|
|
|
2014-01-10 23:00:12 +05:30
|
|
|
use League\OAuth2\Server\Storage\StorageWrapper;
|
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\AuthCodeInterface;
|
|
|
|
use League\OAuth2\Server\Storage\SessionInterface;
|
|
|
|
use League\OAuth2\Server\Storage\ScopeInterface;
|
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-01-10 23:00:12 +05:30
|
|
|
class Resource extends AbstractServer
|
2012-12-29 01:42:16 +05:30
|
|
|
{
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
|
|
|
* The access token
|
2013-12-17 05:17:03 +05:30
|
|
|
* @var League\OAuth2\Server\AccessToken
|
2013-02-13 02:03:23 +05:30
|
|
|
*/
|
2014-01-10 23:00:12 +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-01-10 23:00:12 +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-01-10 23:00:12 +05:30
|
|
|
$this->setStorage('session', $sessionStorage);
|
|
|
|
$this->setStorage('access_token', $accessTokenStorage);
|
|
|
|
$this->setStorage('client', $clientStorage);
|
|
|
|
$this->setStorage('scope', $scopeStorage);
|
|
|
|
|
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-01-05 03:51:24 +05:30
|
|
|
/**
|
2014-01-10 23:00:12 +05:30
|
|
|
* Set the storage
|
|
|
|
* @param string $type Storage type
|
|
|
|
* @param mixed $storage Storage class
|
2013-12-17 05:17:03 +05:30
|
|
|
* @return self
|
2013-01-05 03:51:24 +05:30
|
|
|
*/
|
2014-01-10 23:00:12 +05:30
|
|
|
protected function setStorage($type, $storage)
|
2013-01-05 03:51:24 +05:30
|
|
|
{
|
2014-01-10 23:00:12 +05:30
|
|
|
$storage->setServer($this);
|
|
|
|
$this->storages[$type] = $storage;
|
2013-11-26 05:28:42 +05:30
|
|
|
return $this;
|
2012-12-29 01:42:16 +05:30
|
|
|
}
|
|
|
|
|
2013-02-13 02:03:23 +05:30
|
|
|
/**
|
|
|
|
* Returns the query string key for the access token.
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-02-05 21:50:45 +05:30
|
|
|
public function getTokenKey()
|
|
|
|
{
|
2014-01-10 23:00:12 +05:30
|
|
|
return $this->accessToken->getToken();
|
2013-02-05 21:50:45 +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
|
|
|
*/
|
2013-02-05 21:50:45 +05:30
|
|
|
public function setTokenKey($key)
|
|
|
|
{
|
|
|
|
$this->tokenKey = $key;
|
2013-11-26 05:28:42 +05:30
|
|
|
return $this;
|
2013-02-05 21:50:45 +05:30
|
|
|
}
|
|
|
|
|
2013-01-18 01:49:01 +05:30
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Gets the access token owner ID
|
2013-02-13 02:03:23 +05:30
|
|
|
* @return string
|
2013-01-18 01:49:01 +05:30
|
|
|
*/
|
|
|
|
public function getOwnerId()
|
|
|
|
{
|
2014-01-10 23:00:12 +05:30
|
|
|
return $this->accessToken->getSession()->getOwnerId();
|
2013-01-18 01:49:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Gets the owner type
|
2013-02-13 02:03:23 +05:30
|
|
|
* @return string
|
2013-01-18 01:49:01 +05:30
|
|
|
*/
|
|
|
|
public function getOwnerType()
|
|
|
|
{
|
2014-01-10 23:00:12 +05:30
|
|
|
return $this->accessToken->getSession()->getOwnerType();
|
2013-01-18 01:49:01 +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-01-10 23:00:12 +05:30
|
|
|
return $this->accessToken->getToken();
|
2013-01-22 21:55:51 +05:30
|
|
|
}
|
|
|
|
|
2013-05-09 06:36:18 +05:30
|
|
|
/**
|
|
|
|
* Gets the client ID that created the session
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getClientId()
|
|
|
|
{
|
2014-01-10 23:00:12 +05:30
|
|
|
return $this->accessToken->getSession()->getClient()->getId();
|
2013-05-09 06:36:18 +05:30
|
|
|
}
|
|
|
|
|
2012-12-29 01:42:16 +05:30
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Checks if the access token is valid or not
|
2013-05-28 09:57:30 +05:30
|
|
|
* @param $headersOnly Limit Access Token to Authorization header only
|
2012-12-29 01:42:16 +05:30
|
|
|
* @return bool
|
|
|
|
*/
|
2013-05-28 09:57:30 +05:30
|
|
|
public function isValid($headersOnly = false)
|
2012-12-29 01:42:16 +05:30
|
|
|
{
|
2013-12-17 05:17:03 +05:30
|
|
|
try {
|
2014-01-10 23:00:12 +05:30
|
|
|
$accessTokenString = $this->determineAccessToken($headersOnly);
|
2013-12-17 05:17:03 +05:30
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the access token
|
2014-01-10 23:00:12 +05:30
|
|
|
$this->accessToken = $this->storages['access_token']->get($accessTokenString);
|
2013-12-17 05:17:03 +05:30
|
|
|
|
2014-01-10 23:00:12 +05:30
|
|
|
return ($this->accessToken instanceof AccessToken);
|
2012-12-29 01:42:16 +05:30
|
|
|
}
|
|
|
|
|
2013-05-05 22:46:28 +05:30
|
|
|
/**
|
|
|
|
* Get the session scopes
|
2013-05-09 02:29:17 +05:30
|
|
|
* @return array
|
2013-05-05 22:46:28 +05:30
|
|
|
*/
|
|
|
|
public function getScopes()
|
|
|
|
{
|
2013-12-17 05:17:03 +05:30
|
|
|
return $this->accessToken->getScopes();
|
2013-05-05 22:46:28 +05:30
|
|
|
}
|
|
|
|
|
2012-12-29 01:42:16 +05:30
|
|
|
/**
|
2013-12-17 05:17:03 +05:30
|
|
|
* Checks if the presented access token has the given scope(s)
|
2014-01-08 21:45:29 +05:30
|
|
|
* @param array|string $scopes An array of scopes or a single scope as a string
|
|
|
|
* @return bool Returns bool if all scopes are found, false if any fail
|
2012-12-29 01:42:16 +05:30
|
|
|
*/
|
|
|
|
public function hasScope($scopes)
|
|
|
|
{
|
2014-01-10 23:00:12 +05:30
|
|
|
return $this->accessToken->hasScope($scopes);
|
2012-12-29 01:42:16 +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
|
2013-02-13 02:03:23 +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
|
|
|
{
|
2013-12-17 05:17:03 +05:30
|
|
|
if ($header = $this->getRequest()->headers->get('Authorization')) {
|
2013-05-10 23:30:01 +05:30
|
|
|
// Check for special case, because cURL sometimes does an
|
|
|
|
// internal second request and doubles the authorization header,
|
|
|
|
// which always resulted in an error.
|
|
|
|
//
|
|
|
|
// 1st request: Authorization: Bearer XXX
|
|
|
|
// 2nd request: Authorization: Bearer XXX, Bearer XXX
|
|
|
|
if (strpos($header, ',') !== false) {
|
2013-05-11 01:27:06 +05:30
|
|
|
$headerPart = explode(',', $header);
|
2013-05-11 11:30:47 +05:30
|
|
|
$accessToken = trim(preg_replace('/^(?:\s+)?Bearer\s/', '', $headerPart[0]));
|
2013-05-10 23:30:01 +05:30
|
|
|
} else {
|
2013-05-11 11:30:47 +05:30
|
|
|
$accessToken = trim(preg_replace('/^(?:\s+)?Bearer\s/', '', $header));
|
2013-05-10 23:30:01 +05:30
|
|
|
}
|
2013-05-11 01:27:06 +05:30
|
|
|
$accessToken = ($accessToken === 'Bearer') ? '' : $accessToken;
|
2013-05-28 09:57:30 +05:30
|
|
|
} elseif ($headersOnly === false) {
|
2013-12-17 05:17:03 +05:30
|
|
|
$accessToken = $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)) {
|
2013-02-08 17:10:33 +05:30
|
|
|
throw new Exception\InvalidAccessTokenException('Access token is missing');
|
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
|
|
|
}
|
|
|
|
}
|