2014-10-03 17:14:22 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-10-03 17:14:22 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-10-03 17:14:22 +04:00
|
|
|
namespace OC\Settings;
|
|
|
|
|
2016-10-27 18:41:15 +03:00
|
|
|
use OC\App\AppStore\Fetcher\AppFetcher;
|
|
|
|
use OC\App\AppStore\Fetcher\CategoryFetcher;
|
|
|
|
use OC\AppFramework\Utility\TimeFactory;
|
2016-10-05 17:31:28 +03:00
|
|
|
use OC\Authentication\Token\IProvider;
|
2016-04-25 15:56:11 +03:00
|
|
|
use OC\Server;
|
2017-04-07 15:51:05 +03:00
|
|
|
use OC\Settings\Mailer\NewUserMailHelper;
|
2014-12-04 16:15:55 +03:00
|
|
|
use OC\Settings\Middleware\SubadminMiddleware;
|
2016-05-18 13:03:22 +03:00
|
|
|
use OCP\AppFramework\App;
|
2017-04-07 23:42:43 +03:00
|
|
|
use OCP\Defaults;
|
2014-12-04 16:15:55 +03:00
|
|
|
use OCP\IContainer;
|
2016-10-05 17:31:28 +03:00
|
|
|
use OCP\Settings\IManager;
|
2016-05-18 13:03:22 +03:00
|
|
|
use OCP\Util;
|
2014-10-03 17:14:22 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @package OC\Settings
|
|
|
|
*/
|
|
|
|
class Application extends App {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $urlParams
|
|
|
|
*/
|
2015-03-26 16:51:33 +03:00
|
|
|
public function __construct(array $urlParams=[]){
|
2014-10-03 17:14:22 +04:00
|
|
|
parent::__construct('settings', $urlParams);
|
|
|
|
|
|
|
|
$container = $this->getContainer();
|
|
|
|
|
2016-10-05 17:31:28 +03:00
|
|
|
// Register Middleware
|
|
|
|
$container->registerAlias('SubadminMiddleware', SubadminMiddleware::class);
|
2016-11-22 15:33:23 +03:00
|
|
|
$container->registerMiddleWare('SubadminMiddleware');
|
|
|
|
|
2014-10-03 17:14:22 +04:00
|
|
|
/**
|
|
|
|
* Core class wrappers
|
|
|
|
*/
|
2014-12-04 16:15:55 +03:00
|
|
|
/** FIXME: Remove once OC_User is non-static and mockable */
|
2016-10-05 17:31:28 +03:00
|
|
|
$container->registerService('isAdmin', function() {
|
2014-12-04 16:15:55 +03:00
|
|
|
return \OC_User::isAdminUser(\OC_User::getUser());
|
|
|
|
});
|
|
|
|
/** FIXME: Remove once OC_SubAdmin is non-static and mockable */
|
2016-10-05 17:31:28 +03:00
|
|
|
$container->registerService('isSubAdmin', function(IContainer $c) {
|
2015-10-27 16:09:45 +03:00
|
|
|
$userObject = \OC::$server->getUserSession()->getUser();
|
|
|
|
$isSubAdmin = false;
|
|
|
|
if($userObject !== null) {
|
|
|
|
$isSubAdmin = \OC::$server->getGroupManager()->getSubAdmin()->isSubAdmin($userObject);
|
|
|
|
}
|
|
|
|
return $isSubAdmin;
|
2015-01-30 16:16:16 +03:00
|
|
|
});
|
2016-10-05 17:31:28 +03:00
|
|
|
$container->registerService('userCertificateManager', function(IContainer $c) {
|
2015-04-15 15:21:23 +03:00
|
|
|
return $c->query('ServerContainer')->getCertificateManager();
|
2016-10-05 17:31:28 +03:00
|
|
|
}, false);
|
|
|
|
$container->registerService('systemCertificateManager', function (IContainer $c) {
|
2015-12-22 19:42:28 +03:00
|
|
|
return $c->query('ServerContainer')->getCertificateManager(null);
|
2016-10-05 17:31:28 +03:00
|
|
|
}, false);
|
|
|
|
$container->registerService(IProvider::class, function (IContainer $c) {
|
|
|
|
return $c->query('ServerContainer')->query(IProvider::class);
|
2015-12-22 19:42:28 +03:00
|
|
|
});
|
2016-10-05 17:31:28 +03:00
|
|
|
$container->registerService(IManager::class, function (IContainer $c) {
|
2016-08-09 00:31:26 +03:00
|
|
|
return $c->query('ServerContainer')->getSettingsManager();
|
|
|
|
});
|
2017-04-07 15:51:05 +03:00
|
|
|
|
|
|
|
$container->registerService(NewUserMailHelper::class, function (IContainer $c) {
|
|
|
|
/** @var Server $server */
|
|
|
|
$server = $c->query('ServerContainer');
|
2017-04-07 23:42:43 +03:00
|
|
|
/** @var Defaults $defaults */
|
|
|
|
$defaults = $server->query(Defaults::class);
|
2017-04-07 15:51:05 +03:00
|
|
|
|
|
|
|
return new NewUserMailHelper(
|
2017-04-07 23:42:43 +03:00
|
|
|
$defaults,
|
2017-04-07 15:51:05 +03:00
|
|
|
$server->getURLGenerator(),
|
|
|
|
$server->getL10N('settings'),
|
|
|
|
$server->getMailer(),
|
|
|
|
$server->getSecureRandom(),
|
|
|
|
new TimeFactory(),
|
|
|
|
$server->getConfig(),
|
|
|
|
$server->getCrypto(),
|
|
|
|
Util::getDefaultEmailAddress('no-reply')
|
|
|
|
);
|
|
|
|
});
|
2016-10-27 18:41:15 +03:00
|
|
|
$container->registerService(AppFetcher::class, function (IContainer $c) {
|
|
|
|
/** @var Server $server */
|
|
|
|
$server = $c->query('ServerContainer');
|
|
|
|
return new AppFetcher(
|
|
|
|
$server->getAppDataDir('appstore'),
|
|
|
|
$server->getHTTPClientService(),
|
2016-10-28 13:56:41 +03:00
|
|
|
$server->query(TimeFactory::class),
|
2016-10-27 18:41:15 +03:00
|
|
|
$server->getConfig()
|
|
|
|
);
|
|
|
|
});
|
|
|
|
$container->registerService(CategoryFetcher::class, function (IContainer $c) {
|
|
|
|
/** @var Server $server */
|
|
|
|
$server = $c->query('ServerContainer');
|
|
|
|
return new CategoryFetcher(
|
|
|
|
$server->getAppDataDir('appstore'),
|
|
|
|
$server->getHTTPClientService(),
|
2016-12-16 00:04:03 +03:00
|
|
|
$server->query(TimeFactory::class),
|
|
|
|
$server->getConfig()
|
2016-10-27 18:41:15 +03:00
|
|
|
);
|
|
|
|
});
|
2014-10-03 17:14:22 +04:00
|
|
|
}
|
|
|
|
}
|