2011-08-23 03:40:13 +04: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.
|
|
|
|
*/
|
|
|
|
|
2012-12-20 12:59:09 +04:00
|
|
|
var UserList = {
|
2013-02-11 18:18:14 +04:00
|
|
|
useUndo: true,
|
2012-07-04 17:28:08 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
/**
|
|
|
|
* @brief Initiate user deletion process in UI
|
|
|
|
* @param string uid the user ID to be deleted
|
|
|
|
*
|
|
|
|
* Does not actually delete the user; it sets them for
|
|
|
|
* deletion when the current page is unloaded, at which point
|
|
|
|
* finishDelete() completes the process. This allows for 'undo'.
|
|
|
|
*/
|
|
|
|
do_delete: function (uid) {
|
|
|
|
if (typeof UserList.deleteUid !== 'undefined') {
|
|
|
|
//Already a user in the undo queue
|
|
|
|
UserList.finishDelete(null);
|
|
|
|
}
|
|
|
|
UserList.deleteUid = uid;
|
2012-08-12 00:01:43 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
// Set undo flag
|
|
|
|
UserList.deleteCanceled = false;
|
2012-08-12 00:01:43 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
// Provide user with option to undo
|
|
|
|
$('#notification').data('deleteuser', true);
|
2013-03-04 03:11:46 +04:00
|
|
|
OC.Notification.showHtml(t('users', 'deleted') + ' ' + escapeHTML(uid) + '<span class="undo">' + t('users', 'undo') + '</span>');
|
2013-02-11 18:18:14 +04:00
|
|
|
},
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
/**
|
|
|
|
* @brief Delete a user via ajax
|
|
|
|
* @param bool ready whether to use ready() upon completion
|
|
|
|
*
|
|
|
|
* Executes deletion via ajax of user identified by property deleteUid
|
|
|
|
* if 'undo' has not been used. Completes the user deletion procedure
|
|
|
|
* and reflects success in UI.
|
|
|
|
*/
|
|
|
|
finishDelete: function (ready) {
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
// Check deletion has not been undone
|
|
|
|
if (!UserList.deleteCanceled && UserList.deleteUid) {
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
// Delete user via ajax
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: OC.filePath('settings', 'ajax', 'removeuser.php'),
|
|
|
|
async: false,
|
|
|
|
data: { username: UserList.deleteUid },
|
|
|
|
success: function (result) {
|
|
|
|
if (result.status == 'success') {
|
|
|
|
// Remove undo option, & remove user from table
|
|
|
|
OC.Notification.hide();
|
|
|
|
$('tr').filterAttr('data-uid', UserList.deleteUid).remove();
|
|
|
|
UserList.deleteCanceled = true;
|
|
|
|
if (ready) {
|
|
|
|
ready();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
oc.dialogs.alert(result.data.message, t('settings', 'Unable to remove user'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-22 17:51:21 +04:00
|
|
|
add: function (username, displayname, groups, subadmin, quota, sort) {
|
2013-02-11 18:18:14 +04:00
|
|
|
var tr = $('tbody tr').first().clone();
|
|
|
|
tr.attr('data-uid', username);
|
2013-02-22 17:51:21 +04:00
|
|
|
tr.attr('data-displayName', displayname);
|
2013-02-11 18:18:14 +04:00
|
|
|
tr.find('td.name').text(username);
|
|
|
|
tr.find('td.displayName').text(username);
|
|
|
|
var groupsSelect = $('<select multiple="multiple" class="groupsselect" data-placehoder="Groups" title="' + t('settings', 'Groups') + '"></select>').attr('data-username', username).attr('data-user-groups', groups);
|
|
|
|
tr.find('td.groups').empty();
|
|
|
|
if (tr.find('td.subadmins').length > 0) {
|
|
|
|
var subadminSelect = $('<select multiple="multiple" class="subadminsselect" data-placehoder="subadmins" title="' + t('settings', 'Group Admin') + '">').attr('data-username', username).attr('data-user-groups', groups).attr('data-subadmin', subadmin);
|
|
|
|
tr.find('td.subadmins').empty();
|
|
|
|
}
|
|
|
|
var allGroups = String($('#content table').attr('data-groups')).split(', ');
|
|
|
|
$.each(allGroups, function (i, group) {
|
2013-03-04 03:11:46 +04:00
|
|
|
groupsSelect.append($('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>'));
|
2013-02-11 18:18:14 +04:00
|
|
|
if (typeof subadminSelect !== 'undefined' && group != 'admin') {
|
2013-03-04 03:11:46 +04:00
|
|
|
subadminSelect.append($('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>'));
|
2013-02-11 18:18:14 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
tr.find('td.groups').append(groupsSelect);
|
|
|
|
UserList.applyMultiplySelect(groupsSelect);
|
|
|
|
if (tr.find('td.subadmins').length > 0) {
|
|
|
|
tr.find('td.subadmins').append(subadminSelect);
|
|
|
|
UserList.applyMultiplySelect(subadminSelect);
|
|
|
|
}
|
|
|
|
if (tr.find('td.remove img').length == 0 && OC.currentUser != username) {
|
2013-02-14 15:59:59 +04:00
|
|
|
var rm_img = $('<img class="svg action">').attr({
|
2013-02-11 18:18:14 +04:00
|
|
|
src: OC.imagePath('core', 'actions/delete')
|
|
|
|
});
|
2013-02-14 15:59:59 +04:00
|
|
|
var rm_link = $('<a class="action delete">')
|
|
|
|
.attr({ href: '#', 'original-title': t('settings', 'Delete')})
|
|
|
|
.append(rm_img);
|
2013-02-11 18:18:14 +04:00
|
|
|
tr.find('td.remove').append(rm_link);
|
|
|
|
} else if (OC.currentUser == username) {
|
|
|
|
tr.find('td.remove a').remove();
|
|
|
|
}
|
|
|
|
var quotaSelect = tr.find('select.quota-user');
|
|
|
|
if (quota == 'default') {
|
|
|
|
quotaSelect.find('option').attr('selected', null);
|
|
|
|
quotaSelect.find('option').first().attr('selected', 'selected');
|
|
|
|
quotaSelect.data('previous', 'default');
|
|
|
|
} else {
|
|
|
|
if (quotaSelect.find('option[value="' + quota + '"]').length > 0) {
|
|
|
|
quotaSelect.find('option[value="' + quota + '"]').attr('selected', 'selected');
|
|
|
|
} else {
|
2013-03-04 03:11:46 +04:00
|
|
|
quotaSelect.append('<option value="' + escapeHTML(quota) + '" selected="selected">' + escapeHTML(quota) + '</option>');
|
2013-02-11 18:18:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
var added = false;
|
|
|
|
if (sort) {
|
2013-02-27 01:56:55 +04:00
|
|
|
displayname = displayname.toLowerCase();
|
2013-02-11 18:18:14 +04:00
|
|
|
$('tbody tr').each(function () {
|
2013-02-27 01:56:55 +04:00
|
|
|
if (displayname < $(this).attr('data-uid').toLowerCase()) {
|
2013-02-11 18:18:14 +04:00
|
|
|
$(tr).insertBefore($(this));
|
|
|
|
added = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (!added) {
|
|
|
|
$(tr).appendTo('tbody');
|
|
|
|
}
|
|
|
|
return tr;
|
|
|
|
},
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
update: function () {
|
|
|
|
if (typeof UserList.offset === 'undefined') {
|
|
|
|
UserList.offset = $('tbody tr').length;
|
|
|
|
}
|
|
|
|
$.get(OC.Router.generate('settings_ajax_userlist', { offset: UserList.offset }), function (result) {
|
|
|
|
if (result.status === 'success') {
|
|
|
|
$.each(result.data, function (index, user) {
|
2013-02-22 17:51:21 +04:00
|
|
|
var tr = UserList.add(user.name, user.displayname, user.groups, user.subadmin, user.quota, false);
|
2013-02-11 18:18:14 +04:00
|
|
|
UserList.offset++;
|
|
|
|
if (index == 9) {
|
|
|
|
$(tr).bind('inview', function (event, isInView, visiblePartX, visiblePartY) {
|
|
|
|
$(this).unbind(event);
|
|
|
|
UserList.update();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
applyMultiplySelect: function (element) {
|
|
|
|
var checked = [];
|
|
|
|
var user = element.attr('data-username');
|
|
|
|
if ($(element).attr('class') == 'groupsselect') {
|
|
|
|
if (element.data('userGroups')) {
|
|
|
|
checked = String(element.data('userGroups')).split(', ');
|
|
|
|
}
|
|
|
|
if (user) {
|
|
|
|
var checkHandeler = function (group) {
|
|
|
|
if (user == OC.currentUser && group == 'admin') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isadmin && checked.length == 1 && checked[0] == group) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$.post(
|
|
|
|
OC.filePath('settings', 'ajax', 'togglegroups.php'),
|
|
|
|
{
|
|
|
|
username: user,
|
|
|
|
group: group
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
checkHandeler = false;
|
|
|
|
}
|
|
|
|
var addGroup = function (select, group) {
|
|
|
|
$('select[multiple]').each(function (index, element) {
|
|
|
|
if ($(element).find('option[value="' + group + '"]').length === 0 && select.data('msid') !== $(element).data('msid')) {
|
2013-02-18 11:04:35 +04:00
|
|
|
$(element).append('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>');
|
2013-02-11 18:18:14 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|
|
|
|
var label;
|
|
|
|
if (isadmin) {
|
|
|
|
label = t('settings', 'add group');
|
|
|
|
} else {
|
|
|
|
label = null;
|
|
|
|
}
|
|
|
|
element.multiSelect({
|
|
|
|
createCallback: addGroup,
|
|
|
|
createText: label,
|
|
|
|
selectedFirst: true,
|
|
|
|
checked: checked,
|
|
|
|
oncheck: checkHandeler,
|
|
|
|
onuncheck: checkHandeler,
|
|
|
|
minWidth: 100
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if ($(element).attr('class') == 'subadminsselect') {
|
|
|
|
if (element.data('subadmin')) {
|
|
|
|
checked = String(element.data('subadmin')).split(', ');
|
|
|
|
}
|
|
|
|
var checkHandeler = function (group) {
|
|
|
|
if (group == 'admin') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$.post(
|
|
|
|
OC.filePath('settings', 'ajax', 'togglesubadmins.php'),
|
|
|
|
{
|
|
|
|
username: user,
|
|
|
|
group: group
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
var addSubAdmin = function (group) {
|
|
|
|
$('select[multiple]').each(function (index, element) {
|
|
|
|
if ($(element).find('option[value="' + group + '"]').length == 0) {
|
2013-03-04 03:11:46 +04:00
|
|
|
$(element).append('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>');
|
2013-02-11 18:18:14 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|
|
|
|
element.multiSelect({
|
|
|
|
createCallback: addSubAdmin,
|
|
|
|
createText: null,
|
|
|
|
checked: checked,
|
|
|
|
oncheck: checkHandeler,
|
|
|
|
onuncheck: checkHandeler,
|
|
|
|
minWidth: 100
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2013-02-01 03:33:14 +04:00
|
|
|
};
|
2012-08-12 00:01:43 +04:00
|
|
|
|
2012-12-20 12:59:09 +04:00
|
|
|
$(document).ready(function () {
|
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('tbody tr:last').bind('inview', function (event, isInView, visiblePartX, visiblePartY) {
|
|
|
|
OC.Router.registerLoadedCallback(function () {
|
|
|
|
UserList.update();
|
2013-02-01 03:33:14 +04:00
|
|
|
});
|
2013-02-11 18:18:14 +04:00
|
|
|
});
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
function setQuota (uid, quota, ready) {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('settings', 'ajax', 'setquota.php'),
|
|
|
|
{username: uid, quota: quota},
|
|
|
|
function (result) {
|
|
|
|
if (ready) {
|
|
|
|
ready(result.data.quota);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('select[multiple]').each(function (index, element) {
|
|
|
|
UserList.applyMultiplySelect($(element));
|
|
|
|
});
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('table').on('click', 'td.remove>a', function (event) {
|
|
|
|
var row = $(this).parent().parent();
|
|
|
|
var uid = $(row).attr('data-uid');
|
|
|
|
$(row).hide();
|
|
|
|
// Call function for handling delete/undo
|
|
|
|
UserList.do_delete(uid);
|
|
|
|
});
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('table').on('click', 'td.password>img', function (event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
var img = $(this);
|
|
|
|
var uid = img.parent().parent().attr('data-uid');
|
|
|
|
var input = $('<input type="password">');
|
|
|
|
img.css('display', 'none');
|
|
|
|
img.parent().children('span').replaceWith(input);
|
|
|
|
input.focus();
|
|
|
|
input.keypress(function (event) {
|
|
|
|
if (event.keyCode == 13) {
|
|
|
|
if ($(this).val().length > 0) {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('settings', 'ajax', 'changepassword.php'),
|
|
|
|
{username: uid, password: $(this).val()},
|
|
|
|
function (result) {
|
|
|
|
}
|
|
|
|
);
|
|
|
|
input.blur();
|
|
|
|
} else {
|
|
|
|
input.blur();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
input.blur(function () {
|
|
|
|
$(this).replaceWith($('<span>●●●●●●●</span>'));
|
|
|
|
img.css('display', '');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('table').on('click', 'td.password', function (event) {
|
|
|
|
$(this).children('img').click();
|
|
|
|
});
|
2012-12-20 12:59:09 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('table').on('click', 'td.displayName>img', function (event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
var img = $(this);
|
|
|
|
var uid = img.parent().parent().attr('data-uid');
|
2013-02-14 21:15:14 +04:00
|
|
|
var displayName = escapeHTML(img.parent().parent().attr('data-displayName'));
|
2013-02-11 18:18:14 +04:00
|
|
|
var input = $('<input type="text" value="' + displayName + '">');
|
|
|
|
img.css('display', 'none');
|
|
|
|
img.parent().children('span').replaceWith(input);
|
|
|
|
input.focus();
|
|
|
|
input.keypress(function (event) {
|
|
|
|
if (event.keyCode == 13) {
|
|
|
|
if ($(this).val().length > 0) {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('settings', 'ajax', 'changedisplayname.php'),
|
|
|
|
{username: uid, displayName: $(this).val()},
|
|
|
|
function (result) {
|
|
|
|
}
|
|
|
|
);
|
|
|
|
input.blur();
|
|
|
|
} else {
|
|
|
|
input.blur();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
input.blur(function () {
|
2013-02-14 21:15:14 +04:00
|
|
|
$(this).replaceWith(escapeHTML($(this).val()));
|
2013-02-11 18:18:14 +04:00
|
|
|
img.css('display', '');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('table').on('click', 'td.displayName', function (event) {
|
|
|
|
$(this).children('img').click();
|
|
|
|
});
|
2012-08-12 00:01:43 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('select.quota, select.quota-user').singleSelect().on('change', function () {
|
|
|
|
var uid = $(this).parent().parent().attr('data-uid');
|
|
|
|
var quota = $(this).val();
|
|
|
|
setQuota(uid, quota);
|
|
|
|
});
|
2012-08-12 00:01:43 +04:00
|
|
|
|
2013-02-11 18:18:14 +04:00
|
|
|
$('#newuser').submit(function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var username = $('#newusername').val();
|
|
|
|
var password = $('#newuserpassword').val();
|
|
|
|
if ($.trim(username) == '') {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
t('settings', 'A valid username must be provided'),
|
|
|
|
t('settings', 'Error creating user'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ($.trim(password) == '') {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
t('settings', 'A valid password must be provided'),
|
|
|
|
t('settings', 'Error creating user'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
var groups = $('#newusergroups').prev().children('div').data('settings').checked;
|
|
|
|
$('#newuser').get(0).reset();
|
|
|
|
$.post(
|
|
|
|
OC.filePath('settings', 'ajax', 'createuser.php'),
|
|
|
|
{
|
|
|
|
username: username,
|
|
|
|
password: password,
|
|
|
|
groups: groups
|
|
|
|
},
|
|
|
|
function (result) {
|
|
|
|
if (result.status != 'success') {
|
|
|
|
OC.dialogs.alert(result.data.message,
|
|
|
|
t('settings', 'Error creating user'));
|
|
|
|
} else {
|
2013-02-22 17:51:21 +04:00
|
|
|
UserList.add(username, username, result.data.groups, null, 'default', true);
|
2013-02-11 18:18:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
// Handle undo notifications
|
|
|
|
OC.Notification.hide();
|
|
|
|
$('#notification').on('click', '.undo', function () {
|
|
|
|
if ($('#notification').data('deleteuser')) {
|
|
|
|
$('tbody tr').filterAttr('data-uid', UserList.deleteUid).show();
|
|
|
|
UserList.deleteCanceled = true;
|
|
|
|
}
|
|
|
|
OC.Notification.hide();
|
|
|
|
});
|
|
|
|
UserList.useUndo = ('onbeforeunload' in window)
|
|
|
|
$(window).bind('beforeunload', function () {
|
|
|
|
UserList.finishDelete(null);
|
|
|
|
});
|
2011-08-09 17:25:18 +04:00
|
|
|
});
|