35967c263a
Ext.util.Sorter does not have an 'order' property, so 'order: DESC' didn't have an effect. The default is 'ASC' and it is arguably the preferred direction for all affected sorters anyways. Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
262 lines
5.2 KiB
JavaScript
262 lines
5.2 KiB
JavaScript
Ext.define('PVE.dc.ACLAdd', {
|
|
extend: 'Proxmox.window.Edit',
|
|
alias: ['widget.pveACLAdd'],
|
|
|
|
url: '/access/acl',
|
|
method: 'PUT',
|
|
isAdd: true,
|
|
isCreate: true,
|
|
|
|
width: 400,
|
|
|
|
initComponent: function() {
|
|
let me = this;
|
|
|
|
let items = [
|
|
{
|
|
xtype: me.path ? 'hiddenfield' : 'pvePermPathSelector',
|
|
name: 'path',
|
|
value: me.path,
|
|
allowBlank: false,
|
|
fieldLabel: gettext('Path'),
|
|
},
|
|
];
|
|
|
|
if (me.aclType === 'group') {
|
|
me.subject = gettext("Group Permission");
|
|
items.push({
|
|
xtype: 'pveGroupSelector',
|
|
name: 'groups',
|
|
fieldLabel: gettext('Group'),
|
|
});
|
|
} else if (me.aclType === 'user') {
|
|
me.subject = gettext("User Permission");
|
|
items.push({
|
|
xtype: 'pmxUserSelector',
|
|
name: 'users',
|
|
fieldLabel: gettext('User'),
|
|
});
|
|
} else if (me.aclType === 'token') {
|
|
me.subject = gettext("API Token Permission");
|
|
items.push({
|
|
xtype: 'pveTokenSelector',
|
|
name: 'tokens',
|
|
fieldLabel: gettext('API Token'),
|
|
});
|
|
} else {
|
|
throw "unknown ACL type";
|
|
}
|
|
|
|
items.push({
|
|
xtype: 'pmxRoleSelector',
|
|
name: 'roles',
|
|
value: 'NoAccess',
|
|
fieldLabel: gettext('Role'),
|
|
});
|
|
|
|
if (!me.path) {
|
|
items.push({
|
|
xtype: 'proxmoxcheckbox',
|
|
name: 'propagate',
|
|
checked: true,
|
|
uncheckedValue: 0,
|
|
fieldLabel: gettext('Propagate'),
|
|
});
|
|
}
|
|
|
|
let ipanel = Ext.create('Proxmox.panel.InputPanel', {
|
|
items: items,
|
|
onlineHelp: 'pveum_permission_management',
|
|
});
|
|
|
|
Ext.apply(me, {
|
|
items: [ipanel],
|
|
});
|
|
|
|
me.callParent();
|
|
},
|
|
});
|
|
|
|
Ext.define('PVE.dc.ACLView', {
|
|
extend: 'Ext.grid.GridPanel',
|
|
|
|
alias: ['widget.pveACLView'],
|
|
|
|
onlineHelp: 'chapter_user_management',
|
|
|
|
stateful: true,
|
|
stateId: 'grid-acls',
|
|
|
|
// use fixed path
|
|
path: undefined,
|
|
|
|
initComponent: function() {
|
|
let me = this;
|
|
|
|
let store = Ext.create('Ext.data.Store', {
|
|
model: 'pve-acl',
|
|
proxy: {
|
|
type: 'proxmox',
|
|
url: "/api2/json/access/acl",
|
|
},
|
|
sorters: {
|
|
property: 'path',
|
|
direction: 'ASC',
|
|
},
|
|
});
|
|
|
|
if (me.path) {
|
|
store.addFilter(Ext.create('Ext.util.Filter', {
|
|
filterFn: item => item.data.path === me.path,
|
|
}));
|
|
}
|
|
|
|
let render_ugid = function(ugid, metaData, record) {
|
|
if (record.data.type === 'group') {
|
|
return '@' + ugid;
|
|
}
|
|
|
|
return Ext.String.htmlEncode(ugid);
|
|
};
|
|
|
|
let columns = [
|
|
{
|
|
header: gettext('User') + '/' + gettext('Group') + '/' + gettext('API Token'),
|
|
flex: 1,
|
|
sortable: true,
|
|
renderer: render_ugid,
|
|
dataIndex: 'ugid',
|
|
},
|
|
{
|
|
header: gettext('Role'),
|
|
flex: 1,
|
|
sortable: true,
|
|
dataIndex: 'roleid',
|
|
},
|
|
];
|
|
|
|
if (!me.path) {
|
|
columns.unshift({
|
|
header: gettext('Path'),
|
|
flex: 1,
|
|
sortable: true,
|
|
dataIndex: 'path',
|
|
});
|
|
columns.push({
|
|
header: gettext('Propagate'),
|
|
width: 80,
|
|
sortable: true,
|
|
dataIndex: 'propagate',
|
|
});
|
|
}
|
|
|
|
let sm = Ext.create('Ext.selection.RowModel', {});
|
|
|
|
let remove_btn = new Proxmox.button.Button({
|
|
text: gettext('Remove'),
|
|
disabled: true,
|
|
selModel: sm,
|
|
confirmMsg: gettext('Are you sure you want to remove this entry'),
|
|
handler: function(btn, event, rec) {
|
|
var params = {
|
|
'delete': 1,
|
|
path: rec.data.path,
|
|
roles: rec.data.roleid,
|
|
};
|
|
if (rec.data.type === 'group') {
|
|
params.groups = rec.data.ugid;
|
|
} else if (rec.data.type === 'user') {
|
|
params.users = rec.data.ugid;
|
|
} else if (rec.data.type === 'token') {
|
|
params.tokens = rec.data.ugid;
|
|
} else {
|
|
throw 'unknown data type';
|
|
}
|
|
|
|
Proxmox.Utils.API2Request({
|
|
url: '/access/acl',
|
|
params: params,
|
|
method: 'PUT',
|
|
waitMsgTarget: me,
|
|
callback: () => store.load(),
|
|
failure: response => Ext.Msg.alert(gettext('Error'), response.htmlStatus),
|
|
});
|
|
},
|
|
});
|
|
|
|
Proxmox.Utils.monStoreErrors(me, store);
|
|
|
|
Ext.apply(me, {
|
|
store: store,
|
|
selModel: sm,
|
|
tbar: [
|
|
{
|
|
text: gettext('Add'),
|
|
menu: {
|
|
xtype: 'menu',
|
|
items: [
|
|
{
|
|
text: gettext('Group Permission'),
|
|
iconCls: 'fa fa-fw fa-group',
|
|
handler: function() {
|
|
var win = Ext.create('PVE.dc.ACLAdd', {
|
|
aclType: 'group',
|
|
path: me.path,
|
|
});
|
|
win.on('destroy', () => store.load());
|
|
win.show();
|
|
},
|
|
},
|
|
{
|
|
text: gettext('User Permission'),
|
|
iconCls: 'fa fa-fw fa-user',
|
|
handler: function() {
|
|
var win = Ext.create('PVE.dc.ACLAdd', {
|
|
aclType: 'user',
|
|
path: me.path,
|
|
});
|
|
win.on('destroy', () => store.load());
|
|
win.show();
|
|
},
|
|
},
|
|
{
|
|
text: gettext('API Token Permission'),
|
|
iconCls: 'fa fa-fw fa-user-o',
|
|
handler: function() {
|
|
let win = Ext.create('PVE.dc.ACLAdd', {
|
|
aclType: 'token',
|
|
path: me.path,
|
|
});
|
|
win.on('destroy', () => store.load());
|
|
win.show();
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
remove_btn,
|
|
],
|
|
viewConfig: {
|
|
trackOver: false,
|
|
},
|
|
columns: columns,
|
|
listeners: {
|
|
activate: () => store.load(),
|
|
},
|
|
});
|
|
|
|
me.callParent();
|
|
},
|
|
}, function() {
|
|
Ext.define('pve-acl', {
|
|
extend: 'Ext.data.Model',
|
|
fields: [
|
|
'path', 'type', 'ugid', 'roleid',
|
|
{
|
|
name: 'propagate',
|
|
type: 'boolean',
|
|
},
|
|
],
|
|
});
|
|
});
|