nextcloud/lib/private/appframework/dependencyinjection/dicontainer.php

196 lines
4.3 KiB
PHP
Raw Normal View History

2013-08-17 13:16:48 +04:00
<?php
/**
* ownCloud - App Framework
*
* @author Bernhard Posselt
* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OC\AppFramework\DependencyInjection;
use OC\AppFramework\Http;
2013-08-17 13:16:48 +04:00
use OC\AppFramework\Http\Request;
use OC\AppFramework\Http\Dispatcher;
use OC\AppFramework\Core\API;
use OC\AppFramework\Middleware\MiddlewareDispatcher;
use OC\AppFramework\Middleware\Security\SecurityMiddleware;
2013-08-20 19:21:14 +04:00
use OC\AppFramework\Utility\SimpleContainer;
2013-08-17 13:16:48 +04:00
use OC\AppFramework\Utility\TimeFactory;
2013-08-21 03:02:15 +04:00
use OCP\AppFramework\IApi;
use OCP\AppFramework\IAppContainer;
use OCP\AppFramework\Middleware;
use OCP\IServerContainer;
2013-08-17 13:16:48 +04:00
2013-08-21 03:02:15 +04:00
class DIContainer extends SimpleContainer implements IAppContainer{
2013-08-17 13:16:48 +04:00
2013-09-27 19:15:26 +04:00
/**
* @var array
*/
2013-09-28 22:40:25 +04:00
private $middleWares = array();
2013-08-17 13:16:48 +04:00
/**
* Put your class dependencies in here
* @param string $appName the name of the app
*/
public function __construct($appName, $urlParams = array()){
2013-08-17 13:16:48 +04:00
$this['AppName'] = $appName;
$this['urlParams'] = $urlParams;
2013-08-17 13:16:48 +04:00
2013-08-21 03:02:15 +04:00
$this->registerParameter('ServerContainer', \OC::$server);
2013-08-17 13:16:48 +04:00
$this['API'] = $this->share(function($c){
return new API($c['AppName']);
});
/**
* Http
*/
$this['Request'] = $this->share(function($c) {
/** @var $c SimpleContainer */
/** @var $server IServerContainer */
$server = $c->query('ServerContainer');
$server->registerParameter('urlParams', $c['urlParams']);
return $server->getRequest();
2013-08-17 13:16:48 +04:00
});
$this['Protocol'] = $this->share(function($c){
if(isset($_SERVER['SERVER_PROTOCOL'])) {
return new Http($_SERVER, $_SERVER['SERVER_PROTOCOL']);
} else {
return new Http($_SERVER);
}
});
$this['Dispatcher'] = $this->share(function($c) {
return new Dispatcher($c['Protocol'], $c['MiddlewareDispatcher']);
});
/**
* Middleware
*/
$app = $this;
$this['SecurityMiddleware'] = $this->share(function($c) use ($app){
return new SecurityMiddleware($app, $c['Request']);
2013-08-17 13:16:48 +04:00
});
$middleWares = $this->middleWares;
$this['MiddlewareDispatcher'] = $this->share(function($c) use ($middleWares) {
2013-08-17 13:16:48 +04:00
$dispatcher = new MiddlewareDispatcher();
$dispatcher->registerMiddleware($c['SecurityMiddleware']);
foreach($middleWares as $middleWare) {
2013-09-27 19:15:26 +04:00
$dispatcher->registerMiddleware($middleWare);
}
2013-08-17 13:16:48 +04:00
return $dispatcher;
});
/**
* Utilities
*/
$this['TimeFactory'] = $this->share(function($c){
return new TimeFactory();
});
}
2013-08-21 03:02:15 +04:00
/**
* @return IApi
*/
function getCoreApi()
{
return $this->query('API');
}
/**
* @return \OCP\IServerContainer
2013-08-21 03:02:15 +04:00
*/
function getServer()
{
return $this->query('ServerContainer');
}
/**
* @param Middleware $middleWare
* @return boolean|null
*/
function registerMiddleWare(Middleware $middleWare) {
2013-09-27 19:15:26 +04:00
array_push($this->middleWares, $middleWare);
}
/**
* used to return the appname of the set application
* @return string the name of your application
*/
function getAppName() {
return $this->query('AppName');
}
/**
* @return boolean
*/
function isLoggedIn() {
return \OC_User::isLoggedIn();
}
/**
* @return boolean
*/
function isAdminUser() {
$uid = $this->getUserId();
return \OC_User::isAdminUser($uid);
}
private function getUserId() {
return \OC::$session->get('user_id');
}
/**
* @param $message
* @param $level
* @return mixed
*/
function log($message, $level) {
switch($level){
case 'debug':
$level = \OCP\Util::DEBUG;
break;
case 'info':
$level = \OCP\Util::INFO;
break;
case 'warn':
$level = \OCP\Util::WARN;
break;
case 'fatal':
$level = \OCP\Util::FATAL;
break;
default:
$level = \OCP\Util::ERROR;
break;
}
\OCP\Util::writeLog($this->getAppName(), $message, $level);
}
2013-08-17 13:16:48 +04:00
}