forked from proxmox-mirrors/proxmox-backup

Use `proxmox-biome format --write`, which is a small wrapper around [Biome] that sets the desired config options for matching the Proxmox style guide as close as possible. Note that the space between function key word and parameter parenthesis for anonymous functions or function names and parameter parenthesis for named functions is rather odd and not per our style guide, but this is not configurable and while it would be relatively simple to change in the formatter code of biome, we would like to avoid doing so for both maintenance reason and as this is seemingly the default in the "web" industry, as prettier–one of the most popular formatters for web projects–uses this and Biome copied the style mostly from there. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> [TL: add commit message with some background] Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
140 lines
3.8 KiB
JavaScript
140 lines
3.8 KiB
JavaScript
Ext.define('PBS.WebauthnConfigView', {
|
|
extend: 'Proxmox.grid.ObjectGrid',
|
|
alias: ['widget.pbsWebauthnConfigView'],
|
|
|
|
url: '/api2/json/config/access/tfa/webauthn',
|
|
cwidth1: 150,
|
|
interval: 2500,
|
|
|
|
rows: {
|
|
rp: {
|
|
header: gettext('Relying Party'),
|
|
required: true,
|
|
defaultValue: gettext('Not configured'),
|
|
},
|
|
origin: {
|
|
header: gettext('Origin'),
|
|
required: true,
|
|
defaultValue: gettext('Not configured'),
|
|
},
|
|
id: {
|
|
header: 'ID',
|
|
required: true,
|
|
defaultValue: gettext('Not configured'),
|
|
},
|
|
},
|
|
|
|
tbar: [
|
|
{
|
|
text: gettext('Edit'),
|
|
handler: 'runEditor',
|
|
},
|
|
],
|
|
controller: {
|
|
xclass: 'Ext.app.ViewController',
|
|
|
|
runEditor: () => Ext.create('PBS.WebauthnConfigEdit', { autoShow: true }),
|
|
|
|
startStore: function () {
|
|
this.getView().getStore().rstore.startUpdate();
|
|
},
|
|
stopStore: function () {
|
|
this.getView().getStore().rstore.stopUpdate();
|
|
},
|
|
},
|
|
|
|
listeners: {
|
|
itemdblclick: 'runEditor',
|
|
activate: 'startStore',
|
|
deactivate: 'stopStore',
|
|
beforedestroy: 'stopStore',
|
|
},
|
|
});
|
|
|
|
Ext.define('PBS.WebauthnConfigEdit', {
|
|
extend: 'Proxmox.window.Edit',
|
|
alias: ['widget.pbsWebauthnConfigEdit'],
|
|
|
|
subject: gettext('Webauthn'),
|
|
url: '/api2/extjs/config/access/tfa/webauthn',
|
|
autoLoad: true,
|
|
|
|
width: 512,
|
|
|
|
fieldDefaults: {
|
|
labelWidth: 120,
|
|
},
|
|
|
|
setValues: function (values) {
|
|
let me = this;
|
|
|
|
me.relayingPartySet = values && typeof values.rp === 'string';
|
|
|
|
me.callParent(arguments);
|
|
},
|
|
|
|
items: [
|
|
{
|
|
xtype: 'textfield',
|
|
fieldLabel: gettext('Relying Party'),
|
|
name: 'rp',
|
|
allowBlank: false,
|
|
listeners: {
|
|
dirtychange: function (field, isDirty) {
|
|
let win = field.up('window');
|
|
let warningBox = win.down('box[id=rpChangeWarning]');
|
|
warningBox.setHidden(!win.relayingPartySet || !isDirty);
|
|
},
|
|
},
|
|
},
|
|
{
|
|
xtype: 'textfield',
|
|
fieldLabel: gettext('Origin'),
|
|
name: 'origin',
|
|
allowBlank: false,
|
|
},
|
|
{
|
|
xtype: 'textfield',
|
|
fieldLabel: 'ID',
|
|
name: 'id',
|
|
allowBlank: false,
|
|
},
|
|
{
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
items: [
|
|
{
|
|
xtype: 'box',
|
|
flex: 1,
|
|
},
|
|
{
|
|
xtype: 'button',
|
|
text: gettext('Auto-fill'),
|
|
iconCls: 'fa fa-fw fa-pencil-square-o',
|
|
handler: function (button, ev) {
|
|
let panel = this.up('panel');
|
|
panel.down('field[name=rp]').setValue(document.location.hostname);
|
|
panel.down('field[name=origin]').setValue(document.location.origin);
|
|
panel.down('field[name=id]').setValue(document.location.hostname);
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
xtype: 'box',
|
|
html:
|
|
`<span class='pmx-hint'>${gettext('Note:')}</span> ` +
|
|
gettext('WebAuthn requires using a trusted certificate.'),
|
|
},
|
|
{
|
|
xtype: 'box',
|
|
id: 'rpChangeWarning',
|
|
hidden: true,
|
|
padding: '5 0 0 0',
|
|
html:
|
|
'<i class="fa fa-exclamation-triangle warning"></i> ' +
|
|
gettext('Changing the Relying Party may break existing webAuthn TFA entries.'),
|
|
},
|
|
],
|
|
});
|