Blame view

sources/lib/private/appframework/dependencyinjection/dicontainer.php 4.32 KB
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  <?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;
  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\Utility\SimpleContainer;
  use OC\AppFramework\Utility\TimeFactory;
  use OCP\AppFramework\IApi;
  use OCP\AppFramework\IAppContainer;
  use OCP\AppFramework\IMiddleWare;
  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;
  
  		$this->registerParameter('ServerContainer', \OC::$server);
  
  		$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();
  		});
  
  		$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']);
  		});
837968727   Kload   [enh] Upgrade to ...
95
96
  		$middleWares = &$this->middleWares;
  		$this['MiddlewareDispatcher'] = $this->share(function($c) use (&$middleWares) {
31b7f2792   Kload   Upgrade to ownclo...
97
98
99
100
  			$dispatcher = new MiddlewareDispatcher();
  			$dispatcher->registerMiddleware($c['SecurityMiddleware']);
  
  			foreach($middleWares as $middleWare) {
837968727   Kload   [enh] Upgrade to ...
101
  				$dispatcher->registerMiddleware($c[$middleWare]);
31b7f2792   Kload   Upgrade to ownclo...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
  			}
  
  			return $dispatcher;
  		});
  
  
  		/**
  		 * Utilities
  		 */
  		$this['TimeFactory'] = $this->share(function($c){
  			return new TimeFactory();
  		});
  
  
  	}
  
  
  	/**
  	 * @return IApi
  	 */
  	function getCoreApi()
  	{
  		return $this->query('API');
  	}
  
  	/**
  	 * @return \OCP\IServerContainer
  	 */
  	function getServer()
  	{
  		return $this->query('ServerContainer');
  	}
  
  	/**
837968727   Kload   [enh] Upgrade to ...
136
137
  	 * @param string $middleWare
  	 * @return boolean|null
31b7f2792   Kload   Upgrade to ownclo...
138
  	 */
837968727   Kload   [enh] Upgrade to ...
139
  	function registerMiddleWare($middleWare) {
31b7f2792   Kload   Upgrade to ownclo...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
  		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);
  	}
  }