/** * Copyright (c) 2011, Robin Appelman * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ var UserList = { useUndo: true, /** * @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; // Set undo flag UserList.deleteCanceled = false; // Provide user with option to undo $('#notification').data('deleteuser', true); OC.Notification.showHtml(t('users', 'deleted') + ' ' + escapeHTML(uid) + '' + t('users', 'undo') + ''); }, /** * @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) { // Check deletion has not been undone if (!UserList.deleteCanceled && UserList.deleteUid) { // 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')); } } }); } }, add: function (username, displayname, groups, subadmin, quota, sort) { var tr = $('tbody tr').first().clone(); tr.attr('data-uid', username); tr.attr('data-displayName', displayname); tr.find('td.name').text(username); tr.find('td.displayName').text(username); var groupsSelect = $('').attr('data-username', username).attr('data-user-groups', groups); tr.find('td.groups').empty(); if (tr.find('td.subadmins').length > 0) { var subadminSelect = $(''); 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($('●●●●●●●')); img.css('display', ''); }); }); $('table').on('click', 'td.password', function (event) { $(this).children('img').click(); }); $('table').on('click', 'td.displayName>img', function (event) { event.stopPropagation(); var img = $(this); var uid = img.parent().parent().attr('data-uid'); var displayName = escapeHTML(img.parent().parent().attr('data-displayName')); var input = $(''); 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 () { $(this).replaceWith(escapeHTML($(this).val())); img.css('display', ''); }); }); $('table').on('click', 'td.displayName', function (event) { $(this).children('img').click(); }); $('select.quota, select.quota-user').singleSelect().on('change', function () { var uid = $(this).parent().parent().attr('data-uid'); var quota = $(this).val(); setQuota(uid, quota); }); $('#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 { if($('tr[data-uid="' + username + '"]').length === 0) { UserList.add(username, username, result.data.groups, null, 'default', true); } } } ); }); // 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); }); });