summaryrefslogtreecommitdiffstats
path: root/core/application.php
blob: 3380184775831cd62c5a56125f7651188da74a36 (plain)
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
<?php
/**
 * @author Victor Dubiniuk
 * @copyright 2014 Victor Dubiniuk victor.dubiniuk@gmail.com
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OC\Core;

use \OCP\AppFramework\App;
use OC\Core\LostPassword\Controller\LostController;
use OC\Core\User\UserController;

class Application extends App {


	public function __construct(array $urlParams=array()){
		parent::__construct('core', $urlParams);

		$container = $this->getContainer();

		/**
		 * Controllers
		 */
		$container->registerService('LostController', function($c) {
			return new LostController(
				$c->query('AppName'),
				$c->query('Request'),
				$c->query('ServerContainer')->getURLGenerator(),
				$c->query('ServerContainer')->getUserManager(),
				new \OC_Defaults(),
				$c->query('ServerContainer')->getL10N('core'),
				$c->query('ServerContainer')->getConfig(),
				$c->query('ServerContainer')->getUserSession(),
				\OCP\Util::getDefaultEmailAddress('lostpassword-noreply'),
				\OC_App::isEnabled('files_encryption')
			);
		});
		$container->registerService('UserController', function($c) {
			return new UserController(
				$c->query('AppName'),
				$c->query('Request'),
				$c->query('ServerContainer')->getUserManager(),
				new \OC_Defaults()
			);
		});
	}


}