You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
2.7 KiB
JavaScript
123 lines
2.7 KiB
JavaScript
'use strict'
|
|
/* global __, ngettext */
|
|
define(["dojo/_base/declare"], function (declare) {
|
|
Users = {
|
|
reload: function(sort) {
|
|
const user_search = $("user_search");
|
|
const search = user_search ? user_search.value : "";
|
|
|
|
xhrPost("backend.php", { op: "pref-users", sort: sort, search: search }, (transport) => {
|
|
dijit.byId('userConfigTab').attr('content', transport.responseText);
|
|
Notify.close();
|
|
});
|
|
},
|
|
add: function() {
|
|
const login = prompt(__("Please enter username:"), "");
|
|
|
|
if (login) {
|
|
Notify.progress("Adding user...");
|
|
|
|
xhrPost("backend.php", {op: "pref-users", method: "add", login: login}, (transport) => {
|
|
alert(transport.responseText);
|
|
Users.reload();
|
|
});
|
|
|
|
}
|
|
},
|
|
edit: function(id) {
|
|
const query = "backend.php?op=pref-users&method=edit&id=" +
|
|
encodeURIComponent(id);
|
|
|
|
if (dijit.byId("userEditDlg"))
|
|
dijit.byId("userEditDlg").destroyRecursive();
|
|
|
|
const dialog = new dijit.Dialog({
|
|
id: "userEditDlg",
|
|
title: __("User Editor"),
|
|
style: "width: 600px",
|
|
execute: function () {
|
|
if (this.validate()) {
|
|
Notify.progress("Saving data...", true);
|
|
|
|
xhrPost("backend.php", dojo.formToObject("user_edit_form"), (transport) => {
|
|
dialog.hide();
|
|
Users.reload();
|
|
});
|
|
}
|
|
},
|
|
href: query
|
|
});
|
|
|
|
dialog.show();
|
|
},
|
|
resetSelected: function() {
|
|
const rows = this.getSelection();
|
|
|
|
if (rows.length == 0) {
|
|
alert(__("No users selected."));
|
|
return;
|
|
}
|
|
|
|
if (rows.length > 1) {
|
|
alert(__("Please select one user."));
|
|
return;
|
|
}
|
|
|
|
if (confirm(__("Reset password of selected user?"))) {
|
|
Notify.progress("Resetting password for selected user...");
|
|
|
|
const id = rows[0];
|
|
|
|
xhrPost("backend.php", {op: "pref-users", method: "resetPass", id: id}, (transport) => {
|
|
Notify.close();
|
|
alert(transport.responseText);
|
|
});
|
|
|
|
}
|
|
},
|
|
removeSelected: function() {
|
|
const sel_rows = this.getSelection();
|
|
|
|
if (sel_rows.length > 0) {
|
|
if (confirm(__("Remove selected users? Neither default admin nor your account will be removed."))) {
|
|
Notify.progress("Removing selected users...");
|
|
|
|
const query = {
|
|
op: "pref-users", method: "remove",
|
|
ids: sel_rows.toString()
|
|
};
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
this.reload();
|
|
});
|
|
}
|
|
|
|
} else {
|
|
alert(__("No users selected."));
|
|
}
|
|
},
|
|
editSelected: function() {
|
|
const rows = this.getSelection();
|
|
|
|
if (rows.length == 0) {
|
|
alert(__("No users selected."));
|
|
return;
|
|
}
|
|
|
|
if (rows.length > 1) {
|
|
alert(__("Please select one user."));
|
|
return;
|
|
}
|
|
|
|
this.edit(rows[0]);
|
|
},
|
|
getSelection :function() {
|
|
return Tables.getSelected("prefUserList");
|
|
}
|
|
}
|
|
|
|
return Users;
|
|
});
|
|
|
|
|