2012-05-24 19:06:03 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-10-06 10:52:19 +03:00
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-08-11 20:45:07 +03:00
|
|
|
use \OCA\Files_External\Service\BackendService;
|
|
|
|
|
2015-08-19 00:49:29 +03:00
|
|
|
\OCP\User::checkAdminUser();
|
2012-12-17 17:46:57 +04:00
|
|
|
|
2015-08-12 23:43:29 +03:00
|
|
|
// we must use the same container
|
|
|
|
$appContainer = \OC_Mount_Config::$app->getContainer();
|
2015-08-11 20:45:07 +03:00
|
|
|
$backendService = $appContainer->query('OCA\Files_External\Service\BackendService');
|
|
|
|
$globalStoragesService = $appContainer->query('OCA\Files_external\Service\GlobalStoragesService');
|
|
|
|
|
2012-06-08 19:42:00 +04:00
|
|
|
OCP\Util::addScript('files_external', 'settings');
|
|
|
|
OCP\Util::addStyle('files_external', 'settings');
|
2014-05-08 17:25:46 +04:00
|
|
|
|
2014-11-06 11:27:12 +03:00
|
|
|
\OC_Util::addVendorScript('select2/select2');
|
|
|
|
\OC_Util::addVendorStyle('select2/select2');
|
2014-02-18 19:36:02 +04:00
|
|
|
|
2015-08-28 17:52:29 +03:00
|
|
|
$backends = array_filter($backendService->getAvailableBackends(), function($backend) {
|
2015-09-17 12:24:19 +03:00
|
|
|
return $backend->isVisibleFor(BackendService::VISIBILITY_ADMIN);
|
2015-08-28 17:52:29 +03:00
|
|
|
});
|
|
|
|
$authMechanisms = array_filter($backendService->getAuthMechanisms(), function($authMechanism) {
|
2015-09-17 12:24:19 +03:00
|
|
|
return $authMechanism->isVisibleFor(BackendService::VISIBILITY_ADMIN);
|
2015-08-28 17:52:29 +03:00
|
|
|
});
|
2015-08-11 21:18:36 +03:00
|
|
|
foreach ($backends as $backend) {
|
|
|
|
if ($backend->getCustomJs()) {
|
|
|
|
\OCP\Util::addScript('files_external', $backend->getCustomJs());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($authMechanisms as $authMechanism) {
|
|
|
|
if ($authMechanism->getCustomJs()) {
|
|
|
|
\OCP\Util::addScript('files_external', $authMechanism->getCustomJs());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-28 17:52:29 +03:00
|
|
|
$userBackends = array_filter($backendService->getAvailableBackends(), function($backend) {
|
2015-09-17 12:24:19 +03:00
|
|
|
return $backend->isAllowedVisibleFor(BackendService::VISIBILITY_PERSONAL);
|
2015-08-28 17:52:29 +03:00
|
|
|
});
|
|
|
|
|
2012-05-24 19:06:03 +04:00
|
|
|
$tmpl = new OCP\Template('files_external', 'settings');
|
2015-03-31 17:25:33 +03:00
|
|
|
$tmpl->assign('encryptionEnabled', \OC::$server->getEncryptionManager()->isEnabled());
|
2013-02-28 00:31:27 +04:00
|
|
|
$tmpl->assign('isAdminPage', true);
|
2015-09-23 17:35:17 +03:00
|
|
|
$tmpl->assign('storages', $globalStoragesService->getStorages());
|
2015-08-11 21:18:36 +03:00
|
|
|
$tmpl->assign('backends', $backends);
|
|
|
|
$tmpl->assign('authMechanisms', $authMechanisms);
|
2015-08-28 17:52:29 +03:00
|
|
|
$tmpl->assign('userBackends', $userBackends);
|
2015-08-11 20:45:07 +03:00
|
|
|
$tmpl->assign('dependencies', OC_Mount_Config::dependencyMessage($backendService->getBackends()));
|
|
|
|
$tmpl->assign('allowUserMounting', $backendService->isUserMountingAllowed());
|
2012-05-24 19:06:03 +04:00
|
|
|
return $tmpl->fetchPage();
|