Blame view
sources/settings/users.php
3.45 KB
|
03e52840d
|
1 2 3 4 5 6 7 8 |
<?php /** * 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. */ OC_Util::checkSubAdminUser(); |
|
03e52840d
|
9 10 |
// We have some javascript foo! |
|
6d9380f96
|
11 12 13 14 |
OC_Util::addScript('settings', 'users/deleteHandler');
OC_Util::addScript('settings', 'users/filter');
OC_Util::addScript( 'settings', 'users/users' );
OC_Util::addScript( 'settings', 'users/groups' );
|
|
03e52840d
|
15 16 17 18 19 20 21 |
OC_Util::addScript( 'core', 'multiselect' );
OC_Util::addScript( 'core', 'singleselect' );
OC_Util::addScript('core', 'jquery.inview');
OC_Util::addStyle( 'settings', 'settings' );
OC_App::setActiveNavigationEntry( 'core_users' );
$users = array();
|
|
6d9380f96
|
22 23 24 25 26 27 28 29 |
$userManager = \OC_User::getManager(); $groupManager = \OC_Group::getManager(); $isAdmin = OC_User::isAdminUser(OC_User::getUser()); $groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager); $groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT); list($adminGroup, $groups) = $groupsInfo->get(); |
|
03e52840d
|
30 |
|
|
03e52840d
|
31 32 |
$recoveryAdminEnabled = OC_App::isEnabled('files_encryption') &&
OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' );
|
|
6d9380f96
|
33 34 |
if($isAdmin) {
$accessibleUsers = OC_User::getDisplayNames('', 30);
|
|
03e52840d
|
35 36 |
$subadmins = OC_SubAdmin::getAllSubAdmins();
}else{
|
|
6d9380f96
|
37 38 39 40 41 42 43 44 |
/* 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'];
}
}
$accessibleUsers = OC_Group::displayNamesInGroups($gids, '', 30);
|
|
03e52840d
|
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
$subadmins = false;
}
// load preset quotas
$quotaPreset=OC_Appconfig::getValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB');
$quotaPreset=explode(',', $quotaPreset);
foreach($quotaPreset as &$preset) {
$preset=trim($preset);
}
$quotaPreset=array_diff($quotaPreset, array('default', 'none'));
$defaultQuota=OC_Appconfig::getValue('files', 'default_quota', 'none');
$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false
&& array_search($defaultQuota, array('none', 'default'))===false;
// load users and quota
|
|
6d9380f96
|
61 |
foreach($accessibleUsers as $uid => $displayName) {
|
|
03e52840d
|
62 63 64 65 66 |
$quota=OC_Preferences::getValue($uid, 'files', 'quota', 'default');
$isQuotaUserDefined=array_search($quota, $quotaPreset)===false
&& array_search($quota, array('none', 'default'))===false;
$name = $displayName;
|
|
31b7f2792
|
67 |
if ( $displayName !== $uid ) {
|
|
03e52840d
|
68 69 |
$name = $name . ' ('.$uid.')';
}
|
|
6d9380f96
|
70 |
$user = $userManager->get($uid); |
|
03e52840d
|
71 72 73 |
$users[] = array( "name" => $uid, "displayName" => $displayName, |
|
31b7f2792
|
74 |
"groups" => OC_Group::getUserGroups($uid), |
|
03e52840d
|
75 76 77 |
'quota' => $quota, 'isQuotaUserDefined' => $isQuotaUserDefined, 'subadmin' => OC_SubAdmin::getSubAdminsGroups($uid), |
|
6d9380f96
|
78 79 |
'storageLocation' => $user->getHome(), 'lastLogin' => $user->getLastLogin(), |
|
03e52840d
|
80 81 |
); } |
|
6d9380f96
|
82 |
$tmpl = new OC_Template( "settings", "users/main", "user" ); |
|
03e52840d
|
83 84 |
$tmpl->assign( 'users', $users ); $tmpl->assign( 'groups', $groups ); |
|
6d9380f96
|
85 86 |
$tmpl->assign( 'adminGroup', $adminGroup ); $tmpl->assign( 'isAdmin', (int) $isAdmin); |
|
03e52840d
|
87 |
$tmpl->assign( 'subadmins', $subadmins); |
|
6d9380f96
|
88 89 |
$tmpl->assign('usercount', count($users));
$tmpl->assign( 'numofgroups', count($groups) + count($adminGroup));
|
|
03e52840d
|
90 91 92 93 |
$tmpl->assign( 'quota_preset', $quotaPreset); $tmpl->assign( 'default_quota', $defaultQuota); $tmpl->assign( 'defaultQuotaIsUserDefined', $defaultQuotaIsUserDefined); $tmpl->assign( 'recoveryAdminEnabled', $recoveryAdminEnabled); |
|
6d9380f96
|
94 |
$tmpl->assign( 'enableAvatars', \OC_Config::getValue('enable_avatars', true));
|
|
03e52840d
|
95 |
$tmpl->printPage(); |