2013-08-21 02:58:15 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace OC;
|
|
|
|
|
2013-09-05 01:45:11 +04:00
|
|
|
use OC\AppFramework\Http\Request;
|
2013-08-27 01:48:18 +04:00
|
|
|
use OC\AppFramework\Utility\SimpleContainer;
|
2013-09-16 00:24:57 +04:00
|
|
|
use OC\Files\Node\Root;
|
|
|
|
use OC\Files\View;
|
2013-08-31 23:34:29 +04:00
|
|
|
use OCP\IServerContainer;
|
2013-08-21 02:58:15 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Server
|
|
|
|
* @package OC
|
|
|
|
*
|
|
|
|
* TODO: hookup all manager classes
|
|
|
|
*/
|
2013-08-27 01:48:18 +04:00
|
|
|
class Server extends SimpleContainer implements IServerContainer {
|
2013-08-21 02:58:15 +04:00
|
|
|
|
2013-08-27 01:48:18 +04:00
|
|
|
function __construct() {
|
|
|
|
$this->registerService('ContactsManager', function($c){
|
|
|
|
return new ContactsManager();
|
|
|
|
});
|
2013-09-05 01:45:11 +04:00
|
|
|
$this->registerService('Request', function($c){
|
|
|
|
$params = array();
|
|
|
|
|
|
|
|
// we json decode the body only in case of content type json
|
|
|
|
if (isset($_SERVER['CONTENT_TYPE']) && stripos($_SERVER['CONTENT_TYPE'],'json') === true ) {
|
|
|
|
$params = json_decode(file_get_contents('php://input'), true);
|
|
|
|
$params = is_array($params) ? $params: array();
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Request(
|
|
|
|
array(
|
|
|
|
'get' => $_GET,
|
|
|
|
'post' => $_POST,
|
|
|
|
'files' => $_FILES,
|
|
|
|
'server' => $_SERVER,
|
|
|
|
'env' => $_ENV,
|
|
|
|
'session' => $_SESSION,
|
|
|
|
'cookies' => $_COOKIE,
|
|
|
|
'method' => (isset($_SERVER) && isset($_SERVER['REQUEST_METHOD']))
|
|
|
|
? $_SERVER['REQUEST_METHOD']
|
|
|
|
: null,
|
|
|
|
'params' => $params,
|
|
|
|
'urlParams' => $c['urlParams']
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
$this->registerService('PreviewManager', function($c){
|
|
|
|
return new PreviewManager();
|
|
|
|
});
|
2013-09-16 00:24:57 +04:00
|
|
|
$this->registerService('RootFolder', function($c){
|
|
|
|
// TODO: get user and user manager from container as well
|
|
|
|
$user = \OC_User::getUser();
|
|
|
|
$user = \OC_User::getManager()->get($user);
|
|
|
|
$manager = \OC\Files\Filesystem::getMountManager();
|
|
|
|
$view = new View();
|
|
|
|
return new Root($manager, $view, $user);
|
|
|
|
});
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-08-31 23:34:29 +04:00
|
|
|
* @return \OCP\Contacts\IManager
|
2013-08-27 01:48:18 +04:00
|
|
|
*/
|
|
|
|
function getContactsManager() {
|
|
|
|
return $this->query('ContactsManager');
|
|
|
|
}
|
2013-08-31 23:34:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current request object holding all information about the request currently being processed
|
|
|
|
* is returned from this method.
|
|
|
|
* In case the current execution was not initiated by a web request null is returned
|
|
|
|
*
|
|
|
|
* @return \OCP\IRequest|null
|
|
|
|
*/
|
|
|
|
function getRequest()
|
|
|
|
{
|
|
|
|
return $this->query('Request');
|
|
|
|
}
|
2013-09-05 01:45:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the preview manager which can create preview images for a given file
|
|
|
|
*
|
|
|
|
* @return \OCP\IPreview
|
|
|
|
*/
|
|
|
|
function getPreviewManager()
|
|
|
|
{
|
|
|
|
return $this->query('PreviewManager');
|
|
|
|
}
|
2013-09-16 00:24:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the root folder of ownCloud's data directory
|
|
|
|
*
|
|
|
|
* @return \OCP\Files\Folder
|
|
|
|
*/
|
|
|
|
function getRootFolder()
|
|
|
|
{
|
|
|
|
return $this->query('RootFolder');
|
|
|
|
}
|
2013-08-21 02:58:15 +04:00
|
|
|
}
|