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