2016-12-22 03:31:35 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2017-11-06 09:56:42 -05:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud GmbH
|
|
|
|
|
*
|
2020-03-31 04:49:10 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-08-24 08:54:25 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2020-12-16 08:54:15 -05:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2016-12-22 03:31:35 -05: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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-12-22 03:31:35 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2017-07-22 06:40:14 -04:00
|
|
|
namespace OCA\Testing\AppInfo;
|
2016-12-22 03:31:35 -05:00
|
|
|
|
2016-12-22 09:21:09 -05:00
|
|
|
use OCA\Testing\AlternativeHomeUserBackend;
|
2019-11-22 14:52:10 -05:00
|
|
|
use OCP\AppFramework\App;
|
2020-07-22 16:28:04 -04:00
|
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
2016-12-22 03:31:35 -05:00
|
|
|
|
2020-07-22 16:28:04 -04:00
|
|
|
class Application extends App implements IBootstrap {
|
2020-04-09 07:53:40 -04:00
|
|
|
public function __construct(array $urlParams = []) {
|
2020-07-22 16:28:04 -04:00
|
|
|
parent::__construct('testing', $urlParams);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function register(IRegistrationContext $context): void {
|
|
|
|
|
}
|
2016-12-22 09:21:09 -05:00
|
|
|
|
2020-07-22 16:28:04 -04:00
|
|
|
public function boot(IBootContext $context): void {
|
|
|
|
|
$server = $context->getServerContainer();
|
|
|
|
|
$config = $server->getConfig();
|
|
|
|
|
if ($config->getAppValue('testing', 'enable_alt_user_backend', 'no') === 'yes') {
|
|
|
|
|
$userManager = $server->getUserManager();
|
2016-12-22 09:21:09 -05:00
|
|
|
|
|
|
|
|
// replace all user backends with this one
|
|
|
|
|
$userManager->clearBackends();
|
2020-07-22 16:28:04 -04:00
|
|
|
$userManager->registerBackend($context->getAppContainer()->get(AlternativeHomeUserBackend::class));
|
2016-12-22 09:21:09 -05:00
|
|
|
}
|
2016-12-22 03:31:35 -05:00
|
|
|
}
|
|
|
|
|
}
|