2011-03-02 01:20:16 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
|
|
|
* @author Daniel Molkentin <daniel@molkentin.de>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Stephan Peijnik <speijnik@anexia-it.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
2011-08-23 03:40:13 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2012-07-09 23:51:19 +04:00
|
|
|
OC_Util::checkSubAdminUser();
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2011-08-09 17:25:18 +04:00
|
|
|
OC_App::setActiveNavigationEntry( 'core_users' );
|
2011-04-16 16:59:10 +04:00
|
|
|
|
2014-02-18 17:34:08 +04:00
|
|
|
$userManager = \OC_User::getManager();
|
2014-04-15 02:13:23 +04:00
|
|
|
$groupManager = \OC_Group::getManager();
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2014-12-04 18:48:07 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
2014-04-20 01:53:47 +04:00
|
|
|
$isAdmin = OC_User::isAdminUser(OC_User::getUser());
|
2014-04-17 20:13:35 +04:00
|
|
|
|
2014-04-20 01:53:47 +04:00
|
|
|
$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager);
|
2014-04-17 20:13:35 +04:00
|
|
|
$groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT);
|
|
|
|
list($adminGroup, $groups) = $groupsInfo->get();
|
|
|
|
|
2013-05-16 16:53:04 +04:00
|
|
|
$recoveryAdminEnabled = OC_App::isEnabled('files_encryption') &&
|
2014-12-04 18:48:07 +03:00
|
|
|
$config->getAppValue( 'files_encryption', 'recoveryAdminEnabled', null );
|
2013-01-16 01:44:40 +04:00
|
|
|
|
2014-04-20 01:53:47 +04:00
|
|
|
if($isAdmin) {
|
2012-07-09 23:51:19 +04:00
|
|
|
$subadmins = OC_SubAdmin::getAllSubAdmins();
|
|
|
|
}else{
|
2014-07-11 09:12:04 +04:00
|
|
|
/* Retrieve group IDs from $groups array, so we can pass that information into OC_Group::displayNamesInGroups() */
|
|
|
|
$gids = array();
|
|
|
|
foreach($groups as $group) {
|
|
|
|
if (isset($group['id'])) {
|
|
|
|
$gids[] = $group['id'];
|
|
|
|
}
|
|
|
|
}
|
2012-07-09 23:51:19 +04:00
|
|
|
$subadmins = false;
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
|
|
|
|
2012-12-21 03:48:12 +04:00
|
|
|
// load preset quotas
|
2014-12-11 17:37:56 +03:00
|
|
|
$quotaPreset=$config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB');
|
2012-12-21 03:48:12 +04:00
|
|
|
$quotaPreset=explode(',', $quotaPreset);
|
|
|
|
foreach($quotaPreset as &$preset) {
|
2013-01-14 23:30:28 +04:00
|
|
|
$preset=trim($preset);
|
2012-12-21 03:48:12 +04:00
|
|
|
}
|
|
|
|
$quotaPreset=array_diff($quotaPreset, array('default', 'none'));
|
|
|
|
|
2014-12-11 17:37:56 +03:00
|
|
|
$defaultQuota=$config->getAppValue('files', 'default_quota', 'none');
|
2013-02-15 02:29:51 +04:00
|
|
|
$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false
|
|
|
|
&& array_search($defaultQuota, array('none', 'default'))===false;
|
2012-12-21 03:48:12 +04:00
|
|
|
|
2014-08-29 19:27:23 +04:00
|
|
|
$tmpl = new OC_Template("settings", "users/main", "user");
|
|
|
|
$tmpl->assign('groups', $groups);
|
|
|
|
$tmpl->assign('adminGroup', $adminGroup);
|
|
|
|
$tmpl->assign('isAdmin', (int)$isAdmin);
|
|
|
|
$tmpl->assign('subadmins', $subadmins);
|
|
|
|
$tmpl->assign('numofgroups', count($groups) + count($adminGroup));
|
|
|
|
$tmpl->assign('quota_preset', $quotaPreset);
|
|
|
|
$tmpl->assign('default_quota', $defaultQuota);
|
|
|
|
$tmpl->assign('defaultQuotaIsUserDefined', $defaultQuotaIsUserDefined);
|
|
|
|
$tmpl->assign('recoveryAdminEnabled', $recoveryAdminEnabled);
|
|
|
|
$tmpl->assign('enableAvatars', \OC::$server->getConfig()->getSystemValue('enable_avatars', true));
|
2012-09-29 01:15:19 +04:00
|
|
|
$tmpl->printPage();
|