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 ED3FD6BA06 for ; Wed, 27 Jan 2021 11:35:03 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 259E2211CB for ; Wed, 27 Jan 2021 11:34:10 +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 0EC1721018 for ; Wed, 27 Jan 2021 11:34:04 +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 B97DF46133 for ; Wed, 27 Jan 2021 11:34:03 +0100 (CET) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Wed, 27 Jan 2021 11:33:58 +0100 Message-Id: <20210127103401.32535-13-d.csapak@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210127103401.32535-1-d.csapak@proxmox.com> References: <20210127103401.32535-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.254 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 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [a.data, record.data, b.data] Subject: [pbs-devel] [PATCH proxmox-backup 12/15] ui: tape: add DriveConfig panel 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: Wed, 27 Jan 2021 10:35:04 -0000 mostly typical CRUD interface for managing drives, with an additional actioncolumn containing some useful actions, e.g. * reading the label * show volume-statistics * show the status * label the inserted tape Signed-off-by: Dominik Csapak --- www/Makefile | 1 + www/tape/DriveConfig.js | 316 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 317 insertions(+) create mode 100644 www/tape/DriveConfig.js diff --git a/www/Makefile b/www/Makefile index db486f71..9a6ff357 100644 --- a/www/Makefile +++ b/www/Makefile @@ -22,6 +22,7 @@ TAPE_UI_FILES= \ tape/window/TapeBackup.js \ tape/BackupOverview.js \ tape/ChangerStatus.js \ + tape/DriveConfig.js \ TapeManagement.js endif diff --git a/www/tape/DriveConfig.js b/www/tape/DriveConfig.js new file mode 100644 index 00000000..8eb40da3 --- /dev/null +++ b/www/tape/DriveConfig.js @@ -0,0 +1,316 @@ +Ext.define('pbs-model-drives', { + extend: 'Ext.data.Model', + fields: ['path', 'model', 'name', 'serial', 'vendor', 'changer', 'changer-slot'], + idProperty: 'name', +}); + +Ext.define('PBS.TapeManagement.DrivePanel', { + extend: 'Ext.grid.Panel', + alias: 'widget.pbsTapeDrivePanel', + + controller: { + xclass: 'Ext.app.ViewController', + + onAdd: function() { + let me = this; + Ext.create('PBS.TapeManagement.DriveEditWindow', { + listeners: { + destroy: function() { + me.reload(); + }, + }, + }).show(); + }, + + onEdit: function() { + let me = this; + let view = me.getView(); + let selection = view.getSelection(); + if (!selection || selection.length < 1) { + return; + } + Ext.create('PBS.TapeManagement.DriveEditWindow', { + driveid: selection[0].data.name, + autoLoad: true, + listeners: { + destroy: () => me.reload(), + }, + }).show(); + }, + + status: function(view, rI, cI, button, el, record) { + let me = this; + let drive = record.data.name; + me.driveCommand(drive, 'status', function(response) { + let lines = []; + for (const [key, val] of Object.entries(response.result.data)) { + lines.push(`${key}: ${val}`); + } + + let txt = lines.join('
'); + + Ext.Msg.show({ + title: gettext('Label Information'), + message: txt, + icon: undefined, + }); + }); + }, + + readLabel: function(view, rI, cI, button, el, record) { + let me = this; + let drive = record.data.name; + me.driveCommand(drive, 'read-label', function(response) { + let lines = []; + for (const [key, val] of Object.entries(response.result.data)) { + lines.push(`${key}: ${val}`); + } + + let txt = lines.join('
'); + + Ext.Msg.show({ + title: gettext('Label Information'), + message: txt, + icon: undefined, + }); + }); + }, + + volumeStatistics: function(view, rI, cI, button, el, record) { + let me = this; + let drive = record.data.name; + me.driveCommand(drive, 'volume-statistics', function(response) { + Ext.create('Ext.window.Window', { + title: gettext('Volume Statistics'), + modal: true, + width: 600, + height: 450, + layout: 'fit', + scrollable: true, + items: [ + { + xtype: 'grid', + store: { + data: response.result.data, + }, + columns: [ + { + text: gettext('ID'), + dataIndex: 'id', + width: 60, + }, + { + text: gettext('Name'), + dataIndex: 'name', + flex: 2, + }, + { + text: gettext('Value'), + dataIndex: 'value', + flex: 1, + }, + ], + }, + ], + }).show(); + }); + }, + + cartridgeMemory: function(view, rI, cI, button, el, record) { + let me = this; + let drive = record.data.name; + me.driveCommand(drive, 'cartridge-memory', function(response) { + Ext.create('Ext.window.Window', { + title: gettext('Cartridge Memory'), + modal: true, + width: 600, + height: 450, + layout: 'fit', + scrollable: true, + items: [ + { + xtype: 'grid', + store: { + data: response.result.data, + }, + columns: [ + { + text: gettext('ID'), + dataIndex: 'id', + width: 60, + }, + { + text: gettext('Name'), + dataIndex: 'name', + flex: 2, + }, + { + text: gettext('Value'), + dataIndex: 'value', + flex: 1, + }, + ], + }, + ], + }).show(); + }); + }, + + driveCommand: function(driveid, command, callback, params, method) { + let me = this; + let view = me.getView(); + params = params || {}; + method = method || 'GET'; + Proxmox.Utils.API2Request({ + url: `/api2/extjs/tape/drive/${driveid}/${command}`, + method, + waitMsgTarget: view, + params, + success: function(response) { + callback(response); + }, + failure: function(response) { + Ext.Msg.alert(gettext('Error'), response.htmlStatus); + }, + }); + }, + + labelMedia: function(view, rI, cI, button, el, record) { + let me = this; + let driveid = record.data.name; + + Ext.create('PBS.TapeManagement.LabelMediaWindow', { + driveid, + }).show(); + }, + + reload: function() { + this.getView().getStore().rstore.load(); + }, + + stopStore: function() { + this.getView().getStore().rstore.stopUpdate(); + }, + + startStore: function() { + this.getView().getStore().rstore.startUpdate(); + }, + }, + + listeners: { + beforedestroy: 'stopStore', + deactivate: 'stopStore', + activate: 'startStore', + itemdblclick: 'onEdit', + }, + + store: { + type: 'diff', + rstore: { + type: 'update', + storeid: 'proxmox-tape-drives', + model: 'pbs-model-drives', + proxy: { + type: 'proxmox', + url: "/api2/json/tape/drive", + }, + }, + sorters: 'name', + }, + + tbar: [ + { + text: gettext('Add'), + xtype: 'proxmoxButton', + handler: 'onAdd', + selModel: false, + }, + '-', + { + text: gettext('Edit'), + xtype: 'proxmoxButton', + handler: 'onEdit', + disabled: true, + }, + { + xtype: 'proxmoxStdRemoveButton', + baseurl: '/api2/extjs/config/drive', + callback: 'reload', + }, + ], + columns: [ + { + text: gettext('Name'), + dataIndex: 'name', + flex: 1, + }, + { + text: gettext('Path'), + dataIndex: 'path', + flex: 2, + }, + { + text: gettext('Vendor'), + dataIndex: 'vendor', + flex: 1, + }, + { + text: gettext('Model'), + dataIndex: 'model', + flex: 1, + }, + { + text: gettext('Serial'), + dataIndex: 'serial', + flex: 1, + }, + { + text: gettext('Changer'), + flex: 1, + dataIndex: 'changer', + renderer: function(value, mD, record) { + if (!value) { + return ""; + } + let drive_num = record.data['changer-drivenum'] || 0; + let drive_text = gettext("Drive {0}"); + return `${value} (${Ext.String.format(drive_text, drive_num)})`; + }, + sorter: function(a, b) { + let ch_a = a.data.changer || ""; + let ch_b = b.data.changer || ""; + let num_a = a.data['changer-drivenum'] || 0; + let num_b = b.data['changer-drivenum'] || 0; + return ch_a > ch_b ? -1 : ch_a < ch_b ? 1 : num_b - num_a; + }, + }, + { + text: gettext('Actions'), + width: 120, + xtype: 'actioncolumn', + items: [ + { + iconCls: 'fa fa-hdd-o', + handler: 'cartridgeMemory', + }, + { + iconCls: 'fa fa-line-chart', + handler: 'volumeStatistics', + }, + { + iconCls: 'fa fa-tag', + handler: 'readLabel', + }, + { + iconCls: 'fa fa-info-circle', + handler: 'status', + }, + { + iconCls: 'fa fa-pencil-square-o', + handler: 'labelMedia', + }, + ], + }, + ], +}); + -- 2.20.1