From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pbs-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id EF7851FF17F for <inbox@lore.proxmox.com>; Mon, 19 May 2025 13:48:08 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 69CA08DFA; Mon, 19 May 2025 13:48:05 +0200 (CEST) From: Christian Ebner <c.ebner@proxmox.com> To: pbs-devel@lists.proxmox.com Date: Mon, 19 May 2025 13:46:29 +0200 Message-Id: <20250519114640.303640-29-c.ebner@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250519114640.303640-1-c.ebner@proxmox.com> References: <20250519114640.303640-1-c.ebner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.031 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment 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] [RFC proxmox-backup 28/39] ui: add S3 client view for configuration X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion <pbs-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pbs-devel>, <mailto:pbs-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pbs-devel/> List-Post: <mailto:pbs-devel@lists.proxmox.com> List-Help: <mailto:pbs-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel>, <mailto:pbs-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox Backup Server development discussion <pbs-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" <pbs-devel-bounces@lists.proxmox.com> Adds the view to configure S3 clients in the Configuration section of the UI. Signed-off-by: Christian Ebner <c.ebner@proxmox.com> --- www/config/S3BucketView.js | 144 +++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 www/config/S3BucketView.js diff --git a/www/config/S3BucketView.js b/www/config/S3BucketView.js new file mode 100644 index 000000000..85ac6c49c --- /dev/null +++ b/www/config/S3BucketView.js @@ -0,0 +1,144 @@ +Ext.define('pmx-s3bucket', { + extend: 'Ext.data.Model', + fields: ['id', 'host', 'bucket', 'port', 'access-key', 'secret-key', 'region', 'fingerprint'], + idProperty: 'id', + proxy: { + type: 'proxmox', + url: '/api2/json/config/s3', + }, +}); + +Ext.define('PBS.config.S3BucketView', { + extend: 'Ext.grid.GridPanel', + alias: 'widget.pbsS3BucketView', + + title: gettext('S3 Buckets'), + + stateful: true, + stateId: 'grid-s3buckets', + tools: [PBS.Utils.get_help_tool("backup-s3-bucket")], + + controller: { + xclass: 'Ext.app.ViewController', + + addS3Bucket: function() { + let me = this; + Ext.create('PBS.window.S3BucketEdit', { + listeners: { + destroy: function() { + me.reload(); + }, + }, + }).show(); + }, + + editS3Bucket: function() { + let me = this; + let view = me.getView(); + let selection = view.getSelection(); + if (selection.length < 1) return; + + Ext.create('PBS.window.S3BucketEdit', { + id: selection[0].data.id, + listeners: { + destroy: function() { + me.reload(); + }, + }, + }).show(); + }, + + reload: function() { this.getView().getStore().rstore.load(); }, + + init: function(view) { + Proxmox.Utils.monStoreErrors(view, view.getStore().rstore); + }, + }, + + listeners: { + activate: 'reload', + itemdblclick: 'editS3Bucket', + }, + + store: { + type: 'diff', + autoDestroy: true, + autoDestroyRstore: true, + sorters: 'id', + rstore: { + type: 'update', + storeid: 'pmx-s3bucket', + model: 'pmx-s3bucket', + autoStart: true, + interval: 5000, + }, + }, + + tbar: [ + { + xtype: 'proxmoxButton', + text: gettext('Add'), + handler: 'addS3Bucket', + selModel: false, + }, + { + xtype: 'proxmoxButton', + text: gettext('Edit'), + handler: 'editS3Bucket', + disabled: true, + }, + { + xtype: 'proxmoxStdRemoveButton', + baseurl: '/config/s3', + callback: 'reload', + }, + ], + + viewConfig: { + trackOver: false, + }, + + columns: [ + { + dataIndex: 'id', + header: gettext('Unique Identifier'), + renderer: Ext.String.htmlEncode, + sortable: true, + width: 200, + }, + { + dataIndex: 'bucket', + header: gettext('Bucket'), + renderer: Ext.String.htmlEncode, + sortable: true, + width: 200, + }, + { + dataIndex: 'host', + header: gettext('Host'), + sortable: true, + width: 200, + }, + { + dataIndex: 'port', + header: gettext('Port'), + renderer: Ext.String.htmlEncode, + sortable: true, + width: 100, + }, + { + dataIndex: 'region', + header: gettext('Region'), + renderer: Ext.String.htmlEncode, + sortable: true, + width: 100, + }, + { + dataIndex: 'fingerprint', + header: gettext('Fingerprint'), + renderer: Ext.String.htmlEncode, + sortable: false, + flex: 1, + }, + ], +}); -- 2.39.5 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel