oauth2-server/src/AbstractServer.php

76 lines
1.7 KiB
PHP
Raw Normal View History

2014-01-10 23:00:12 +05:30
<?php
/**
* OAuth 2.0 Abstract Server
*
* @package league/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
2014-03-10 01:04:23 +05:30
* @copyright Copyright (c) Alex Bilbie
2014-01-10 23:00:12 +05:30
* @license http://mit-license.org/
2014-03-10 01:35:38 +05:30
* @link https://github.com/thephpleague/oauth2-server
2014-01-10 23:00:12 +05:30
*/
namespace League\OAuth2\Server;
use Symfony\Component\HttpFoundation\Request;
/**
* OAuth 2.0 Resource Server
*/
abstract class AbstractServer
{
/**
* The request object
*
* @var Util\RequestInterface
*/
protected $request;
/**
* Storage classes
* @var array
*/
protected $storages = [];
/**
* Sets the Request Object
* @param \Symfony\Component\HttpFoundation\Request The Request Object
* @return self
*/
public function setRequest(Request $request)
{
$this->request = $request;
2014-05-03 15:23:43 +05:30
2014-01-10 23:00:12 +05:30
return $this;
}
/**
* Gets the Request object. It will create one from the globals if one is not set.
* @return \Symfony\Component\HttpFoundation\Request
*/
public function getRequest()
{
if ($this->request === null) {
2014-05-02 19:44:25 +05:30
$this->request = Request::createFromGlobals();
2014-01-10 23:00:12 +05:30
}
return $this->request;
}
/**
* Return a storage class
2014-05-03 15:23:43 +05:30
* @param string $obj The class required
2014-01-10 23:00:12 +05:30
* @return Storage\ClientInterface|Storage\ScopeInterface|Storage\SessionInterface
*/
public function getStorage($obj)
{
if (!isset($this->storages[$obj])) {
2014-04-25 15:54:42 +05:30
throw new Exception\ServerErrorException(
2014-01-16 22:20:16 +05:30
'The `'.$obj.'` storage interface has not been registered with the server'
2014-01-10 23:00:12 +05:30
);
}
2014-05-03 15:23:43 +05:30
2014-01-10 23:00:12 +05:30
return $this->storages[$obj];
}
2014-05-03 15:23:43 +05:30
}