5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-07-15 16:58:54 +03:00
Files
proxmox-backup/www/Subscription.js
Dominik Csapak 3e44935af7 ui: re-format code, replace mixed tab/spaces with spaces only.
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>
2025-06-16 13:59:27 +02:00

198 lines
5.9 KiB
JavaScript

Ext.define('PBS.SubscriptionKeyEdit', {
extend: 'Proxmox.window.Edit',
title: gettext('Upload Subscription Key'),
width: 320,
autoLoad: true,
onlineHelp: 'get_help',
items: {
xtype: 'proxmoxtextfield',
trimValue: true,
labelWidth: 120,
name: 'key',
value: '',
fieldLabel: gettext('Subscription Key'),
},
});
Ext.define('PBS.Subscription', {
extend: 'Proxmox.grid.ObjectGrid',
xtype: 'pbsSubscription',
title: gettext('Subscription'),
border: true,
onlineHelp: 'get_help',
tools: [PBS.Utils.get_help_tool('get_help')],
viewConfig: {
enableTextSelection: true,
},
showReport: function () {
var me = this;
var getReportFileName = function () {
var now = Ext.Date.format(new Date(), 'D-d-F-Y-G-i');
return `${me.nodename}-pbs-report-${now}.txt`;
};
var view = Ext.createWidget('component', {
itemId: 'system-report-view',
scrollable: true,
style: {
'white-space': 'pre',
'font-family': 'monospace',
padding: '5px',
},
});
let reportWindow;
reportWindow = Ext.create('Ext.window.Window', {
title: gettext('System Report'),
width: 1024,
height: 600,
layout: 'fit',
modal: true,
buttons: [
'->',
{
text: gettext('Download'),
handler: function () {
let fileContent = Ext.htmlDecode(
reportWindow.getComponent('system-report-view').html,
);
let fileName = getReportFileName();
let dataUrl = `data:text/plain;charset=utf-8,${encodeURIComponent(fileContent)}`;
Proxmox.Utils.downloadAsFile(dataUrl, fileName);
},
},
],
items: view,
});
Proxmox.Utils.API2Request({
url: '/api2/extjs/nodes/' + me.nodename + '/report',
method: 'GET',
waitMsgTarget: me,
success: function (response) {
var report = Ext.htmlEncode(response.result.data);
reportWindow.show();
view.update(report);
},
});
},
initComponent: function () {
let me = this;
let reload = () => me.rstore.load();
let baseurl = '/nodes/localhost/subscription';
let rows = {
productname: {
header: gettext('Type'),
},
key: {
header: gettext('Subscription Key'),
},
status: {
header: gettext('Status'),
renderer: (value) => {
value = Ext.String.capitalize(value);
let message = me.getObjectValue('message');
if (message) {
return value + ': ' + message;
}
return value;
},
},
message: {
visible: false,
},
serverid: {
header: gettext('Server ID'),
},
checktime: {
header: gettext('Last checked'),
renderer: Proxmox.Utils.render_timestamp,
},
nextduedate: {
header: gettext('Next due date'),
},
signature: {
header: gettext('Signed/Offline'),
renderer: (value) => {
if (value) {
return gettext('Yes');
} else {
return gettext('No');
}
},
},
};
Ext.apply(me, {
url: `/api2/json${baseurl}`,
cwidth1: 170,
tbar: [
{
text: gettext('Upload Subscription Key'),
iconCls: 'fa fa-ticket',
handler: function () {
Ext.create('PBS.SubscriptionKeyEdit', {
url: '/api2/extjs/' + baseurl,
autoShow: true,
listeners: {
destroy: () => reload(),
},
});
},
},
{
text: gettext('Check'),
iconCls: 'fa fa-check-square-o',
handler: function () {
Proxmox.Utils.API2Request({
params: { force: 1 },
url: baseurl,
method: 'POST',
waitMsgTarget: me,
callback: reload,
});
},
},
{
text: gettext('Remove Subscription'),
xtype: 'proxmoxStdRemoveButton',
confirmMsg: gettext('Are you sure you want to remove the subscription key?'),
baseurl: baseurl,
dangerous: true,
selModel: false,
callback: reload,
iconCls: 'fa fa-trash-o',
},
'-',
{
text: gettext('System Report'),
iconCls: 'fa fa-stethoscope',
handler: function () {
Proxmox.Utils.checked_command(function () {
me.showReport();
});
},
},
],
rows: rows,
});
me.callParent();
reload();
},
});