2015-10-29 19:27:14 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-10-29 19:27:14 +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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
\OC_Util::checkAdminUser();
|
|
|
|
|
|
|
|
$template = new OCP\Template('federation', 'settings-admin');
|
|
|
|
|
|
|
|
$dbHandler = new \OCA\Federation\DbHandler(
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC::$server->getL10N('federation')
|
|
|
|
);
|
|
|
|
|
|
|
|
$trustedServers = new \OCA\Federation\TrustedServers(
|
|
|
|
$dbHandler,
|
|
|
|
\OC::$server->getHTTPClientService(),
|
2015-11-10 12:50:59 +03:00
|
|
|
\OC::$server->getLogger(),
|
|
|
|
\OC::$server->getJobList(),
|
2015-11-18 17:07:41 +03:00
|
|
|
\OC::$server->getSecureRandom(),
|
2016-02-26 18:59:53 +03:00
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getEventDispatcher()
|
2015-10-29 19:27:14 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
$template->assign('trustedServers', $trustedServers->getServers());
|
2015-11-18 17:07:41 +03:00
|
|
|
$template->assign('autoAddServers', $trustedServers->getAutoAddServers());
|
2015-10-29 19:27:14 +03:00
|
|
|
|
|
|
|
return $template->fetchPage();
|