server/lib/private/appframework/dependencyinjection/dicontainer.php
Bernhard Posselt f195123765 Intelligent container
* resolves dependencies by type hint or variable name
* simpler route.php
* implementation of https://github.com/owncloud/core/issues/12829

Generates and injects parameters automatically. You can now build full classes like

    $c->query('MyClassName')

without having to register it as a service. The resolved object's instance will be saved by using registerService. If a constructor parameter is not type hinted, the parameter name will be taken.

Therefore the following two implementations are identical:

    class Class1 { function __construct(MyClassName $class)
    class Class1 { function __construct($MyClassName)

This makes it possible to also inject primitive values such as strings, arrays etc.

In addition if the query could not be resolved, a `QueryException` is now thrown

Routes can now be returned as an array from `routes.php` and an `appinfo/application.php` is optional

Old commit messages:

make it possible to return the routes instead of having to intialize the application
try to get the controller by convention
add first implementation of automatic resolve
add another test just to be sure
store the resolved object
more tests
add phpdoc to public app.php method
use the same variable for the public app.php method
deprecate old methods and add services for public interfaces
deprecated getServer method
disallow private api injection for apps other than core or settings (settings should be an app goddamnit :D)
register userid because its such an often used variable
fix indention and leading slash
use test namespace
add deprecation reasons, remove private api usage checks and remove deprecation from getServer()
add additional public interfaces
add public interface for rootfolder
fix syntax error
remove deprecation from methods where no alternative is there yet
remove deprecated from method which has no alternative
add timezone public service for #12881
add another deprecation hint
move deprecation into separate branch
remove dead comment
first try to get the namespace from the info.xml, if it does not exist, just uppercase the first letter
also trim the namespace name
add an interface for timefactory
move timefactory to public and add icontrollermethodreflector
keep core interface
fix copyright date in headers
2014-12-23 09:50:42 +01:00

402 lines
10 KiB
PHP

<?php
/**
* ownCloud - App Framework
*
* @author Bernhard Posselt
* @copyright 2012 Bernhard Posselt <dev@bernhard-posselt.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;
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;
use OC\AppFramework\Middleware\Security\CORSMiddleware;
use OC\AppFramework\Middleware\SessionMiddleware;
use OC\AppFramework\Utility\SimpleContainer;
use OC\AppFramework\Utility\TimeFactory;
use OC\AppFramework\Utility\ControllerMethodReflector;
use OCP\AppFramework\IApi;
use OCP\AppFramework\QueryException;
use OCP\AppFramework\IAppContainer;
use OCP\AppFramework\Middleware;
use OCP\IServerContainer;
class DIContainer extends SimpleContainer implements IAppContainer {
/**
* @var array
*/
private $middleWares = array();
/**
* Put your class dependencies in here
* @param string $appName the name of the app
*/
public function __construct($appName, $urlParams = array()){
$this['AppName'] = $appName;
$this['urlParams'] = $urlParams;
/**
* Core services
*/
$this->registerService('OCP\\IAppConfig', function($c) {
return \OC::$server->getAppConfig();
});
$this->registerService('OCP\\IAppManager', function($c) {
return \OC::$server->getAppManager();
});
$this->registerService('OCP\\IAvatarManager', function($c) {
return \OC::$server->getAvatarManager();
});
$this->registerService('OCP\\Activity\\IManager', function($c) {
return \OC::$server->getActivityManager();
});
$this->registerService('OCP\\ICache', function($c) {
return \OC::$server->getCache();
});
$this->registerService('OCP\\ICacheFactory', function($c) {
return \OC::$server->getMemCacheFactory();
});
$this->registerService('OCP\\IConfig', function($c) {
return \OC::$server->getConfig();
});
$this->registerService('OCP\\Contacts\\IManager', function($c) {
return \OC::$server->getContactsManager();
});
$this->registerService('OCP\\IDateTimeZone', function($c) {
return \OC::$server->getDateTimeZone();
});
$this->registerService('OCP\\IDb', function($c) {
return \OC::$server->getDb();
});
$this->registerService('OCP\\IDBConnection', function($c) {
return \OC::$server->getDatabaseConnection();
});
$this->registerService('OCP\\Diagnostics\\IEventLogger', function($c) {
return \OC::$server->getEventLogger();
});
$this->registerService('OCP\\Diagnostics\\IQueryLogger', function($c) {
return \OC::$server->getQueryLogger();
});
$this->registerService('OCP\\Files\\Config\\IMountProviderCollection', function($c) {
return \OC::$server->getMountProviderCollection();
});
$this->registerService('OCP\\Files\\IRootFolder', function($c) {
return \OC::$server->getRootFolder();
});
$this->registerService('OCP\\IGroupManager', function($c) {
return \OC::$server->getGroupManager();
});
$this->registerService('OCP\\IL10N', function($c) {
return \OC::$server->getL10N($c->query('AppName'));
});
$this->registerService('OCP\\ILogger', function($c) {
return \OC::$server->getLogger();
});
$this->registerService('OCP\\BackgroundJob\\IJobList', function($c) {
return \OC::$server->getJobList();
});
$this->registerService('OCP\\AppFramework\\Utility\\IControllerMethodReflector', function($c) {
return $c->query('ControllerMethodReflector');
});
$this->registerService('OCP\\INavigationManager', function($c) {
return \OC::$server->getNavigationManager();
});
$this->registerService('OCP\\IPreview', function($c) {
return \OC::$server->getPreviewManager();
});
$this->registerService('OCP\\IRequest', function($c) {
return $c->query('Request');
});
$this->registerService('OCP\\ITagManager', function($c) {
return \OC::$server->getTagManager();
});
$this->registerService('OCP\\ITempManager', function($c) {
return \OC::$server->getTempManager();
});
$this->registerService('OCP\\AppFramework\\Utility\\ITimeFactory', function($c) {
return $c->query('TimeFactory');
});
$this->registerService('OCP\\Route\\IRouter', function($c) {
return \OC::$server->getRouter();
});
$this->registerService('OCP\\ISearch', function($c) {
return \OC::$server->getSearch();
});
$this->registerService('OCP\\ISearch', function($c) {
return \OC::$server->getSearch();
});
$this->registerService('OCP\\Security\\ICrypto', function($c) {
return \OC::$server->getCrypto();
});
$this->registerService('OCP\\Security\\IHasher', function($c) {
return \OC::$server->getHasher();
});
$this->registerService('OCP\\Security\\ISecureRandom', function($c) {
return \OC::$server->getSecureRandom();
});
$this->registerService('OCP\\IURLGenerator', function($c) {
return \OC::$server->getURLGenerator();
});
$this->registerService('OCP\\IUserManager', function($c) {
return \OC::$server->getUserManager();
});
$this->registerService('OCP\\IUserSession', function($c) {
return \OC::$server->getUserSession();
});
$this->registerService('ServerContainer', function ($c) {
$c->query('OCP\\ILogger')->warning(
'Accessing the server container is deprecated. Use type ' .
'annotations to inject core services instead!'
);
return \OC::$server;
});
// commonly used attributes
$this->registerService('UserId', function ($c) {
return $c->query('OCP\\IUserSession')->getSession()->get('user_id');
});
$this->registerService('WebRoot', function ($c) {
return $c->query('ServerContainer')->getWebRoot();
});
/**
* App Framework APIs
*/
$this->registerService('API', function($c){
$c->query('OCP\\ILogger')->warning(
'Accessing the API class is deprecated! Use the appropriate ' .
'services instead!'
);
return new API($c['AppName']);
});
$this->registerService('Request', function($c) {
/** @var $c SimpleContainer */
/** @var $server SimpleContainer */
$server = $c->query('ServerContainer');
$server->registerParameter('urlParams', $c['urlParams']);
/** @var $server IServerContainer */
return $server->getRequest();
});
$this->registerService('Protocol', function($c){
if(isset($_SERVER['SERVER_PROTOCOL'])) {
return new Http($_SERVER, $_SERVER['SERVER_PROTOCOL']);
} else {
return new Http($_SERVER);
}
});
$this->registerService('Dispatcher', function($c) {
return new Dispatcher(
$c['Protocol'],
$c['MiddlewareDispatcher'],
$c['ControllerMethodReflector'],
$c['Request']
);
});
/**
* Middleware
*/
$app = $this;
$this->registerService('SecurityMiddleware', function($c) use ($app){
return new SecurityMiddleware(
$c['Request'],
$c['ControllerMethodReflector'],
$app->getServer()->getNavigationManager(),
$app->getServer()->getURLGenerator(),
$app->getServer()->getLogger(),
$c['AppName'],
$app->isLoggedIn(),
$app->isAdminUser()
);
});
$this->registerService('CORSMiddleware', function($c) {
return new CORSMiddleware(
$c['Request'],
$c['ControllerMethodReflector']
);
});
$this->registerService('SessionMiddleware', function($c) use ($app) {
return new SessionMiddleware(
$c['Request'],
$c['ControllerMethodReflector'],
$app->getServer()->getSession()
);
});
$middleWares = &$this->middleWares;
$this->registerService('MiddlewareDispatcher', function($c) use (&$middleWares) {
$dispatcher = new MiddlewareDispatcher();
$dispatcher->registerMiddleware($c['SecurityMiddleware']);
$dispatcher->registerMiddleware($c['CORSMiddleware']);
foreach($middleWares as $middleWare) {
$dispatcher->registerMiddleware($c[$middleWare]);
}
$dispatcher->registerMiddleware($c['SessionMiddleware']);
return $dispatcher;
});
/**
* Utilities
*/
$this->registerService('TimeFactory', function($c){
return new TimeFactory();
});
$this->registerService('ControllerMethodReflector', function($c) {
return new ControllerMethodReflector();
});
}
/**
* @deprecated implements only deprecated methods
* @return IApi
*/
function getCoreApi()
{
return $this->query('API');
}
/**
* @return \OCP\IServerContainer
*/
function getServer()
{
return $this->query('ServerContainer');
}
/**
* @param string $middleWare
* @return boolean|null
*/
function registerMiddleWare($middleWare) {
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');
}
/**
* @deprecated use IUserSession->isLoggedIn()
* @return boolean
*/
function isLoggedIn() {
return \OC_User::isLoggedIn();
}
/**
* @deprecated use IGroupManager->isAdmin($userId)
* @return boolean
*/
function isAdminUser() {
$uid = $this->getUserId();
return \OC_User::isAdminUser($uid);
}
private function getUserId() {
return \OC::$server->getSession()->get('user_id');
}
/**
* @deprecated use the ILogger instead
* @param string $message
* @param string $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);
}
}