2011-03-01 22:20:16 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 10:44:34 +00: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>
|
2015-06-25 09:43:55 +00:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-10-06 07:52:19 +00:00
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
2015-10-26 12:54:55 +00:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @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-22 23:40:13 +00:00
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2012-07-09 19:51:19 +00:00
|
|
|
OC_Util::checkSubAdminUser();
|
2011-03-01 22:20:16 +00:00
|
|
|
|
2011-08-09 13:25:18 +00:00
|
|
|
OC_App::setActiveNavigationEntry( 'core_users' );
|
2011-04-16 12:59:10 +00:00
|
|
|
|
2014-02-18 13:34:08 +00:00
|
|
|
$userManager = \OC_User::getManager();
|
2014-04-14 22:13:23 +00:00
|
|
|
$groupManager = \OC_Group::getManager();
|
2011-03-01 22:20:16 +00:00
|
|
|
|
2015-06-11 15:57:00 +00:00
|
|
|
// Set the sort option: SORT_USERCOUNT or SORT_GROUPNAME
|
|
|
|
$sortGroupsBy = \OC\Group\MetaData::SORT_USERCOUNT;
|
|
|
|
|
2015-09-07 09:28:08 +00:00
|
|
|
if (\OC_App::isEnabled('user_ldap')) {
|
2015-08-13 12:37:17 +00:00
|
|
|
$isLDAPUsed =
|
|
|
|
$groupManager->isBackendUsed('\OCA\user_ldap\GROUP_LDAP')
|
|
|
|
|| $groupManager->isBackendUsed('\OCA\user_ldap\Group_Proxy');
|
2015-06-16 09:31:04 +00:00
|
|
|
if ($isLDAPUsed) {
|
|
|
|
// LDAP user count can be slow, so we sort by group name here
|
|
|
|
$sortGroupsBy = \OC\Group\MetaData::SORT_GROUPNAME;
|
2015-06-11 15:57:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-04 15:48:07 +00:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
2014-04-19 21:53:47 +00:00
|
|
|
$isAdmin = OC_User::isAdminUser(OC_User::getUser());
|
2014-04-17 16:13:35 +00:00
|
|
|
|
2015-10-27 13:09:45 +00:00
|
|
|
$groupsInfo = new \OC\Group\MetaData(
|
|
|
|
OC_User::getUser(),
|
|
|
|
$isAdmin,
|
|
|
|
$groupManager,
|
|
|
|
\OC::$server->getUserSession()
|
|
|
|
);
|
2015-06-11 15:57:00 +00:00
|
|
|
$groupsInfo->setSorting($sortGroupsBy);
|
2014-04-17 16:13:35 +00:00
|
|
|
list($adminGroup, $groups) = $groupsInfo->get();
|
|
|
|
|
2015-04-01 12:24:56 +00:00
|
|
|
$recoveryAdminEnabled = OC_App::isEnabled('encryption') &&
|
|
|
|
$config->getAppValue( 'encryption', 'recoveryAdminEnabled', null );
|
2013-01-15 21:44:40 +00:00
|
|
|
|
2014-04-19 21:53:47 +00:00
|
|
|
if($isAdmin) {
|
Fix typo in variable name
* introduced with #20135 - c6f6a8758b3f08e47c3a8f45a67d09698376b2e2
Fixes following error meessage:
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Undefined variable: subAdmins at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Invalid argument supplied for foreach() at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
2015-11-04 08:44:19 +00:00
|
|
|
$subAdmins = \OC::$server->getGroupManager()->getSubAdmin()->getAllSubAdmins();
|
2015-10-27 13:09:45 +00:00
|
|
|
// New class returns IUser[] so convert back
|
|
|
|
$result = [];
|
|
|
|
foreach ($subAdmins as $subAdmin) {
|
|
|
|
$result[] = [
|
|
|
|
'gid' => $subAdmin['group']->getGID(),
|
|
|
|
'uid' => $subAdmin['user']->getUID(),
|
|
|
|
];
|
|
|
|
}
|
Fix typo in variable name
* introduced with #20135 - c6f6a8758b3f08e47c3a8f45a67d09698376b2e2
Fixes following error meessage:
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Undefined variable: subAdmins at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Invalid argument supplied for foreach() at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
2015-11-04 08:44:19 +00:00
|
|
|
$subAdmins = $result;
|
2012-07-09 19:51:19 +00:00
|
|
|
}else{
|
2014-07-11 05:12:04 +00: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'];
|
|
|
|
}
|
|
|
|
}
|
Fix typo in variable name
* introduced with #20135 - c6f6a8758b3f08e47c3a8f45a67d09698376b2e2
Fixes following error meessage:
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Undefined variable: subAdmins at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Invalid argument supplied for foreach() at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
2015-11-04 08:44:19 +00:00
|
|
|
$subAdmins = false;
|
2011-03-01 22:20:16 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 23:48:12 +00:00
|
|
|
// load preset quotas
|
2014-12-11 14:37:56 +00:00
|
|
|
$quotaPreset=$config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB');
|
2012-12-20 23:48:12 +00:00
|
|
|
$quotaPreset=explode(',', $quotaPreset);
|
|
|
|
foreach($quotaPreset as &$preset) {
|
2013-01-14 19:30:28 +00:00
|
|
|
$preset=trim($preset);
|
2012-12-20 23:48:12 +00:00
|
|
|
}
|
|
|
|
$quotaPreset=array_diff($quotaPreset, array('default', 'none'));
|
|
|
|
|
2014-12-11 14:37:56 +00:00
|
|
|
$defaultQuota=$config->getAppValue('files', 'default_quota', 'none');
|
2013-02-14 22:29:51 +00:00
|
|
|
$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false
|
|
|
|
&& array_search($defaultQuota, array('none', 'default'))===false;
|
2012-12-20 23:48:12 +00:00
|
|
|
|
2014-08-29 15:27:23 +00:00
|
|
|
$tmpl = new OC_Template("settings", "users/main", "user");
|
|
|
|
$tmpl->assign('groups', $groups);
|
2015-06-11 15:57:00 +00:00
|
|
|
$tmpl->assign('sortGroups', $sortGroupsBy);
|
2014-08-29 15:27:23 +00:00
|
|
|
$tmpl->assign('adminGroup', $adminGroup);
|
|
|
|
$tmpl->assign('isAdmin', (int)$isAdmin);
|
Fix typo in variable name
* introduced with #20135 - c6f6a8758b3f08e47c3a8f45a67d09698376b2e2
Fixes following error meessage:
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Undefined variable: subAdmins at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
{"reqId":"GliKwPFSIVn8GC2KNIHY","remoteAddr":"::1","app":"PHP","message":"Invalid argument supplied for foreach() at master\/settings\/users.php#76","level":0,"time":"2015-11-04T08:38:53+00:00","method":"GET","url":"\/master\/index.php\/settings\/users"}
2015-11-04 08:44:19 +00:00
|
|
|
$tmpl->assign('subadmins', $subAdmins);
|
2014-08-29 15:27:23 +00:00
|
|
|
$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));
|
2015-09-25 04:24:08 +00:00
|
|
|
|
|
|
|
$tmpl->assign('show_storage_location', $config->getAppValue('core', 'umgmt_show_storage_location', 'false'));
|
|
|
|
$tmpl->assign('show_last_login', $config->getAppValue('core', 'umgmt_show_last_login', 'false'));
|
|
|
|
$tmpl->assign('show_email', $config->getAppValue('core', 'umgmt_show_email', 'false'));
|
|
|
|
$tmpl->assign('show_backend', $config->getAppValue('core', 'umgmt_show_backend', 'false'));
|
|
|
|
$tmpl->assign('send_email', $config->getAppValue('core', 'umgmt_send_email', 'false'));
|
|
|
|
|
2012-09-28 21:15:19 +00:00
|
|
|
$tmpl->printPage();
|