2012-06-08 19:42:00 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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;
|
2014-02-18 19:36:02 +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');
|
2016-05-13 12:22:28 +03:00
|
|
|
$userStoragesService = $appContainer->query('OCA\Files_External\Service\UserStoragesService');
|
2016-06-21 14:55:07 +03:00
|
|
|
$globalAuth = $appContainer->query('OCA\Files_External\Lib\Auth\Password\GlobalAuth');
|
2015-03-16 14:18:01 +03:00
|
|
|
|
2012-06-08 19:42:00 +04:00
|
|
|
$tmpl = new OCP\Template('files_external', 'settings');
|
2015-03-31 17:25:33 +03:00
|
|
|
$tmpl->assign('encryptionEnabled', \OC::$server->getEncryptionManager()->isEnabled());
|
2015-09-14 15:57:49 +03:00
|
|
|
$tmpl->assign('visibilityType', BackendService::VISIBILITY_PERSONAL);
|
2015-09-23 17:35:17 +03:00
|
|
|
$tmpl->assign('storages', $userStoragesService->getStorages());
|
2015-08-11 20:45:07 +03:00
|
|
|
$tmpl->assign('dependencies', OC_Mount_Config::dependencyMessage($backendService->getBackends()));
|
2015-09-14 15:57:49 +03:00
|
|
|
$tmpl->assign('backends', $backendService->getAvailableBackends());
|
|
|
|
$tmpl->assign('authMechanisms', $backendService->getAuthMechanisms());
|
2016-06-21 14:55:07 +03:00
|
|
|
$uid = \OC::$server->getUserSession()->getUser()->getUID();
|
|
|
|
$tmpl->assign('globalCredentials', $globalAuth->getAuth($uid));
|
|
|
|
$tmpl->assign('globalCredentialsUid', $uid);
|
2016-03-17 01:06:49 +03:00
|
|
|
$tmpl->assign('allowUserMounting', $backendService->isUserMountingAllowed());
|
2012-06-08 19:42:00 +04:00
|
|
|
return $tmpl->fetchPage();
|