DataStoreContent.js: add verify button
This commit is contained in:
parent
2162e2c15d
commit
8f6088c130
@ -199,6 +199,45 @@ Ext.define('PBS.DataStoreContent', {
|
|||||||
win.show();
|
win.show();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onVerify: function() {
|
||||||
|
var view = this.getView();
|
||||||
|
|
||||||
|
if (!view.datastore) return;
|
||||||
|
|
||||||
|
let rec = view.selModel.getSelection()[0];
|
||||||
|
if (!(rec && rec.data)) return;
|
||||||
|
let data = rec.data;
|
||||||
|
|
||||||
|
let params;
|
||||||
|
|
||||||
|
if (data.leaf) {
|
||||||
|
params = {
|
||||||
|
"backup-type": data["backup-type"],
|
||||||
|
"backup-id": data["backup-id"],
|
||||||
|
"backup-time": (data['backup-time'].getTime()/1000).toFixed(0),
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
params = {
|
||||||
|
"backup-type": data.backup_type,
|
||||||
|
"backup-id": data.backup_id,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Proxmox.Utils.API2Request({
|
||||||
|
params: params,
|
||||||
|
url: `/admin/datastore/${view.datastore}/verify`,
|
||||||
|
method: 'POST',
|
||||||
|
failure: function(response) {
|
||||||
|
Ext.Msg.alert(gettext('Error'), response.htmlStatus);
|
||||||
|
},
|
||||||
|
success: function(response, options) {
|
||||||
|
Ext.create('Proxmox.window.TaskViewer', {
|
||||||
|
upid: response.result.data,
|
||||||
|
}).show();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
onForget: function() {
|
onForget: function() {
|
||||||
var view = this.getView();
|
var view = this.getView();
|
||||||
|
|
||||||
@ -356,6 +395,14 @@ Ext.define('PBS.DataStoreContent', {
|
|||||||
iconCls: 'fa fa-refresh',
|
iconCls: 'fa fa-refresh',
|
||||||
handler: 'reload',
|
handler: 'reload',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxButton',
|
||||||
|
text: gettext('Verify'),
|
||||||
|
disabled: true,
|
||||||
|
parentXType: 'pbsDataStoreContent',
|
||||||
|
enableFn: function(record) { return !!record.data; },
|
||||||
|
handler: 'onVerify',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxButton',
|
xtype: 'proxmoxButton',
|
||||||
text: gettext('Prune'),
|
text: gettext('Prune'),
|
||||||
|
Loading…
Reference in New Issue
Block a user