2011-03-01 22:20:16 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-08-22 23:40:13 +00:00
|
|
|
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2011-03-01 22:20:16 +00:00
|
|
|
|
2012-07-09 19:51:19 +00:00
|
|
|
OC_Util::checkSubAdminUser();
|
2011-03-01 22:20:16 +00:00
|
|
|
|
2011-04-16 12:59:10 +00:00
|
|
|
// We have some javascript foo!
|
2014-02-26 17:04:55 +00:00
|
|
|
OC_Util::addScript('settings', 'users/deleteHandler');
|
2014-04-02 19:48:35 +00:00
|
|
|
OC_Util::addScript('settings', 'users/filter');
|
2014-02-19 07:44:18 +00:00
|
|
|
OC_Util::addScript( 'settings', 'users/users' );
|
|
|
|
OC_Util::addScript( 'settings', 'users/groups' );
|
2011-10-02 13:56:51 +00:00
|
|
|
OC_Util::addScript( 'core', 'multiselect' );
|
2013-02-11 14:18:14 +00:00
|
|
|
OC_Util::addScript( 'core', 'singleselect' );
|
2012-08-26 21:55:51 +00:00
|
|
|
OC_Util::addScript('core', 'jquery.inview');
|
2011-08-13 02:04:48 +00:00
|
|
|
OC_Util::addStyle( 'settings', 'settings' );
|
2011-08-09 13:25:18 +00:00
|
|
|
OC_App::setActiveNavigationEntry( 'core_users' );
|
2011-04-16 12:59:10 +00:00
|
|
|
|
2011-03-01 22:20:16 +00:00
|
|
|
$users = array();
|
|
|
|
$groups = array();
|
2014-02-19 11:14:46 +00:00
|
|
|
$adminGroup = array();
|
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
|
|
|
|
2014-01-28 16:06:48 +00:00
|
|
|
if (isset($_GET['offset'])) {
|
|
|
|
$offset = $_GET['offset'];
|
|
|
|
} else {
|
|
|
|
$offset = 0;
|
|
|
|
}
|
|
|
|
if (isset($_GET['limit'])) {
|
|
|
|
$limit = $_GET['limit'];
|
|
|
|
} else {
|
|
|
|
$limit = 10;
|
|
|
|
}
|
|
|
|
|
2013-01-15 21:44:40 +00:00
|
|
|
$isadmin = OC_User::isAdminUser(OC_User::getUser());
|
2013-05-16 12:53:04 +00:00
|
|
|
$recoveryAdminEnabled = OC_App::isEnabled('files_encryption') &&
|
|
|
|
OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' );
|
2013-01-15 21:44:40 +00:00
|
|
|
|
|
|
|
if($isadmin) {
|
2012-07-15 14:31:28 +00:00
|
|
|
$accessiblegroups = OC_Group::getGroups();
|
2013-01-25 10:05:00 +00:00
|
|
|
$accessibleusers = OC_User::getDisplayNames('', 30);
|
2012-07-09 19:51:19 +00:00
|
|
|
$subadmins = OC_SubAdmin::getAllSubAdmins();
|
|
|
|
}else{
|
2012-07-15 14:31:28 +00:00
|
|
|
$accessiblegroups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser());
|
2013-01-25 10:48:03 +00:00
|
|
|
$accessibleusers = OC_Group::displayNamesInGroups($accessiblegroups, '', 30);
|
2012-07-09 19:51:19 +00:00
|
|
|
$subadmins = false;
|
2011-03-01 22:20:16 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 23:48:12 +00:00
|
|
|
// load preset quotas
|
|
|
|
$quotaPreset=OC_Appconfig::getValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB');
|
|
|
|
$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'));
|
|
|
|
|
|
|
|
$defaultQuota=OC_Appconfig::getValue('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
|
|
|
|
|
|
|
// load users and quota
|
2013-01-28 12:12:44 +00:00
|
|
|
foreach($accessibleusers as $uid => $displayName) {
|
2013-01-29 20:04:11 +00:00
|
|
|
$quota=OC_Preferences::getValue($uid, 'files', 'quota', 'default');
|
2013-02-14 22:29:51 +00:00
|
|
|
$isQuotaUserDefined=array_search($quota, $quotaPreset)===false
|
|
|
|
&& array_search($quota, array('none', 'default'))===false;
|
2012-12-20 23:48:12 +00:00
|
|
|
|
2013-01-25 10:05:00 +00:00
|
|
|
$name = $displayName;
|
2013-04-17 13:32:03 +00:00
|
|
|
if ( $displayName !== $uid ) {
|
2013-01-25 10:05:00 +00:00
|
|
|
$name = $name . ' ('.$uid.')';
|
2013-08-15 10:19:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-18 13:34:08 +00:00
|
|
|
$user = $userManager->get($uid);
|
2012-09-04 09:19:01 +00:00
|
|
|
$users[] = array(
|
2013-01-28 12:12:44 +00:00
|
|
|
"name" => $uid,
|
2013-08-15 10:19:40 +00:00
|
|
|
"displayName" => $displayName,
|
|
|
|
"groups" => OC_Group::getUserGroups($uid),
|
|
|
|
'quota' => $quota,
|
|
|
|
'isQuotaUserDefined' => $isQuotaUserDefined,
|
|
|
|
'subadmin' => OC_SubAdmin::getSubAdminsGroups($uid),
|
2014-02-18 13:34:08 +00:00
|
|
|
'storageLocation' => $user->getHome(),
|
2014-02-18 17:37:10 +00:00
|
|
|
'lastLogin' => $user->getLastLogin(),
|
2013-08-15 10:19:40 +00:00
|
|
|
);
|
2012-07-09 19:51:19 +00:00
|
|
|
}
|
|
|
|
|
2014-02-19 11:14:46 +00:00
|
|
|
$sortGroupsIndex = 0;
|
|
|
|
$sortGroupsKeys = array();
|
|
|
|
$sortAdminGroupsIndex = 0;
|
|
|
|
$sortAdminGroupsKeys = array();
|
2014-01-28 16:06:48 +00:00
|
|
|
foreach( $accessiblegroups as $gid ) {
|
2014-04-14 22:13:23 +00:00
|
|
|
$group = $groupManager->get($gid);
|
|
|
|
if(!$group) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$usersInGroup = $group->count();
|
2014-02-17 16:02:48 +00:00
|
|
|
if (!OC_User::isAdminUser($gid)) {
|
|
|
|
$groups[] = array(
|
|
|
|
'id' => str_replace(' ','', $gid ),
|
|
|
|
'name' => $gid,
|
2014-02-19 11:14:46 +00:00
|
|
|
'useringroup' => $usersInGroup,
|
2014-02-17 16:02:48 +00:00
|
|
|
);
|
2014-04-14 22:13:23 +00:00
|
|
|
$sortGroupsKeys[$sortGroupsIndex] = $usersInGroup;
|
2014-02-19 11:14:46 +00:00
|
|
|
$sortGroupsIndex++;
|
2014-02-17 16:02:48 +00:00
|
|
|
} else {
|
|
|
|
$adminGroup[] = array(
|
|
|
|
'id' => str_replace(' ','', $gid ),
|
|
|
|
'name' => $gid,
|
2014-02-19 11:14:46 +00:00
|
|
|
'useringroup' => $usersInGroup
|
2014-02-17 16:02:48 +00:00
|
|
|
);
|
2014-04-14 22:13:23 +00:00
|
|
|
$sortAdminGroupsKeys[$sortAdminGroupsIndex] = $usersInGroup;
|
2014-02-19 11:14:46 +00:00
|
|
|
$sortAdminGroupsIndex++;
|
2014-02-17 16:02:48 +00:00
|
|
|
}
|
2011-03-01 22:20:16 +00:00
|
|
|
}
|
2012-02-24 20:19:23 +00:00
|
|
|
|
2014-02-19 11:14:46 +00:00
|
|
|
//sorts groups by number of users (descending)
|
|
|
|
if(!empty($groups)) {
|
|
|
|
array_multisort($sortGroupsKeys, SORT_DESC, $groups);
|
|
|
|
}
|
|
|
|
if(!empty($adminGroup)) {
|
|
|
|
array_multisort($sortAdminGroupsKeys, SORT_DESC, $adminGroup);
|
|
|
|
}
|
|
|
|
|
2014-02-19 15:53:29 +00:00
|
|
|
$tmpl = new OC_Template( "settings", "users/main", "user" );
|
2012-12-20 23:48:12 +00:00
|
|
|
$tmpl->assign( 'users', $users );
|
|
|
|
$tmpl->assign( 'groups', $groups );
|
2014-02-17 16:02:48 +00:00
|
|
|
$tmpl->assign( 'adminGroup', $adminGroup );
|
2012-07-20 13:20:48 +00:00
|
|
|
$tmpl->assign( 'isadmin', (int) $isadmin);
|
2012-07-09 19:51:19 +00:00
|
|
|
$tmpl->assign( 'subadmins', $subadmins);
|
2012-07-15 14:31:28 +00:00
|
|
|
$tmpl->assign( 'numofgroups', count($accessiblegroups));
|
2012-02-24 13:38:40 +00:00
|
|
|
$tmpl->assign( 'quota_preset', $quotaPreset);
|
2012-02-24 20:19:23 +00:00
|
|
|
$tmpl->assign( 'default_quota', $defaultQuota);
|
2012-12-20 23:48:12 +00:00
|
|
|
$tmpl->assign( 'defaultQuotaIsUserDefined', $defaultQuotaIsUserDefined);
|
2013-05-16 12:53:04 +00:00
|
|
|
$tmpl->assign( 'recoveryAdminEnabled', $recoveryAdminEnabled);
|
2013-09-09 14:57:46 +00:00
|
|
|
$tmpl->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true));
|
2012-09-28 21:15:19 +00:00
|
|
|
$tmpl->printPage();
|