From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 1F0A268D9F for ; Fri, 15 Jan 2021 11:06:21 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 14B0A232A9 for ; Fri, 15 Jan 2021 11:06:21 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 7F62423291 for ; Fri, 15 Jan 2021 11:06:19 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 45990447F7 for ; Fri, 15 Jan 2021 11:06:19 +0100 (CET) From: Wolfgang Bumiller To: pbs-devel@lists.proxmox.com Date: Fri, 15 Jan 2021 11:06:18 +0100 Message-Id: <20210115100618.1208-4-w.bumiller@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210115100618.1208-1-w.bumiller@proxmox.com> References: <20210115100618.1208-1-w.bumiller@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.050 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH v2 backup 4/4] gui: tfa configuration X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2021 10:06:21 -0000 Signed-off-by: Wolfgang Bumiller --- Changes to v1: * removed initComponent functions in favor of inlined data * fixed a wrong label copy-pasta www/Makefile | 1 + www/SystemConfiguration.js | 26 ++++++++++++ www/config/WebauthnView.js | 83 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 www/config/WebauthnView.js diff --git a/www/Makefile b/www/Makefile index 3d8d4fa1..c2d80c74 100644 --- a/www/Makefile +++ b/www/Makefile @@ -30,6 +30,7 @@ JSSRC= \ config/ACLView.js \ config/SyncView.js \ config/VerifyView.js \ + config/WebauthnView.js \ window/ACLEdit.js \ window/AddTfaRecovery.js \ window/AddTotp.js \ diff --git a/www/SystemConfiguration.js b/www/SystemConfiguration.js index d82396af..025e0273 100644 --- a/www/SystemConfiguration.js +++ b/www/SystemConfiguration.js @@ -44,6 +44,27 @@ Ext.define('PBS.SystemConfiguration', { }, ], }, + { + title: gettext('Authentication'), + itemId: 'authentication', + xtype: 'panel', + layout: { + type: 'vbox', + align: 'stretch', + multi: true, + }, + defaults: { + collapsible: true, + animCollapse: false, + margin: '10 10 0 10', + }, + items: [ + { + title: gettext('Webauthn'), + xtype: 'pbsWebauthnConfigView', + }, + ], + }, ], initComponent: function() { @@ -55,6 +76,11 @@ Ext.define('PBS.SystemConfiguration', { Ext.Array.forEach(networktime.query(), function(item) { item.relayEvents(networktime, ['activate', 'deactivate', 'destroy']); }); + + let authentication = me.getComponent('authentication'); + Ext.Array.forEach(authentication.query(), function(item) { + item.relayEvents(authentication, ['activate', 'deactivate', 'destroy']); + }); }, }); diff --git a/www/config/WebauthnView.js b/www/config/WebauthnView.js new file mode 100644 index 00000000..914abcdc --- /dev/null +++ b/www/config/WebauthnView.js @@ -0,0 +1,83 @@ +Ext.define('PBS.WebauthnConfigView', { + extend: 'Proxmox.grid.ObjectGrid', + alias: ['widget.pbsWebauthnConfigView'], + + url: "/api2/json/config/access/tfa/webauthn", + cwidth1: 150, + interval: 1000, + + rows: { + rp: { + header: gettext('Relying Party'), + required: true, + }, + origin: { + header: gettext('Origin'), + required: true, + }, + id: { + header: gettext('Id'), + required: true, + }, + }, + + tbar: [ + { + text: gettext("Edit"), + handler: 'runEditor', + }, + ], + controller: { + xclass: 'Ext.app.ViewController', + + runEditor: function() { + let win = Ext.create('PBS.WebauthnConfigEdit'); + win.show(); + }, + + startStore: function() { this.getView().getStore().rstore.startUpdate(); }, + stopStore: function() { this.getView().getStore().rstore.stopUpdate(); }, + }, + + + listeners: { + itemdblclick: 'runEditor', + activate: 'startStore', + deactivate: 'stopStore', + destroy: 'stopStore', + }, +}); + +Ext.define('PBS.WebauthnConfigEdit', { + extend: 'Proxmox.window.Edit', + alias: ['widget.pbsWebauthnConfigEdit'], + + subject: gettext('Webauthn'), + url: "/api2/extjs/config/access/tfa/webauthn", + autoLoad: true, + + fieldDefaults: { + labelWidth: 120, + }, + + items: [ + { + xtype: 'textfield', + fieldLabel: gettext('Relying Party'), + name: 'rp', + allowBlank: false, + }, + { + xtype: 'textfield', + fieldLabel: gettext('Origin'), + name: 'origin', + allowBlank: false, + }, + { + xtype: 'textfield', + fieldLabel: gettext('id'), + name: 'id', + allowBlank: false, + }, + ], +}); -- 2.20.1