2018-12-05 11:39:40 +00:00
|
|
|
/*global Proxmox */
|
|
|
|
Ext.ns('PBS');
|
|
|
|
|
|
|
|
console.log("Starting Backup Server GUI");
|
|
|
|
|
|
|
|
Ext.define('PBS.Utils', {
|
|
|
|
singleton: true,
|
|
|
|
|
2019-01-30 14:14:20 +00:00
|
|
|
updateLoginData: function(data) {
|
2020-05-29 14:22:14 +00:00
|
|
|
|
|
|
|
Proxmox.Utils.setAuthData(data);
|
2019-01-30 14:14:20 +00:00
|
|
|
},
|
|
|
|
|
2020-05-20 10:15:38 +00:00
|
|
|
dataStorePrefix: 'DataStore-',
|
|
|
|
|
|
|
|
getDataStoreFromPath: function(path) {
|
|
|
|
return path.slice(PBS.Utils.dataStorePrefix.length);
|
|
|
|
},
|
|
|
|
|
|
|
|
isDataStorePath: function(path) {
|
|
|
|
return path.indexOf(PBS.Utils.dataStorePrefix) === 0;
|
|
|
|
},
|
|
|
|
|
2020-05-26 16:16:38 +00:00
|
|
|
render_datetime_utc: function(datetime) {
|
|
|
|
let pad = (number) => number < 10 ? '0' + number : number;
|
|
|
|
return datetime.getUTCFullYear() +
|
|
|
|
'-' + pad(datetime.getUTCMonth() + 1) +
|
|
|
|
'-' + pad(datetime.getUTCDate()) +
|
|
|
|
'T' + pad(datetime.getUTCHours()) +
|
|
|
|
':' + pad(datetime.getUTCMinutes()) +
|
|
|
|
':' + pad(datetime.getUTCSeconds()) +
|
|
|
|
'Z';
|
|
|
|
},
|
|
|
|
|
2020-05-26 11:37:57 +00:00
|
|
|
render_datastore_worker_id: function(id, what) {
|
|
|
|
const result = id.match(/^(\S+)_([^_\s]+)_([^_\s]+)$/);
|
|
|
|
if (result) {
|
|
|
|
let datastore = result[1], type = result[2], id = result[3];
|
|
|
|
return `Datastore ${datastore} - ${what} ${type}/${id}`;
|
|
|
|
}
|
|
|
|
return what;
|
|
|
|
},
|
2020-05-26 16:17:01 +00:00
|
|
|
render_datastore_time_worker_id: function(id, what) {
|
|
|
|
const res = id.match(/^(\S+)_([^_\s]+)_([^_\s]+)_([^_\s]+)$/);
|
|
|
|
if (res) {
|
|
|
|
let datastore = res[1], type = res[2], id = res[3];
|
|
|
|
let datetime = Ext.Date.parse(parseInt(res[4], 16), 'U');
|
|
|
|
let utctime = PBS.Utils.render_datetime_utc(datetime);
|
|
|
|
return `Datastore ${datastore} - ${what} ${type}/${id}/${utctime}`;
|
|
|
|
}
|
|
|
|
return what;
|
|
|
|
},
|
2020-05-26 11:37:57 +00:00
|
|
|
|
2018-12-05 11:39:40 +00:00
|
|
|
constructor: function() {
|
|
|
|
var me = this;
|
|
|
|
|
|
|
|
// do whatever you want here
|
2020-05-25 17:06:47 +00:00
|
|
|
Proxmox.Utils.override_task_descriptions({
|
|
|
|
garbage_collection: ['Datastore', gettext('Garbage collect') ],
|
2020-05-26 16:35:50 +00:00
|
|
|
sync: ['Datastore', gettext('Remote Sync') ],
|
2020-05-29 08:53:37 +00:00
|
|
|
syncjob: [gettext('Sync Job'), gettext('Remote Sync') ],
|
2020-05-26 11:37:57 +00:00
|
|
|
prune: (type, id) => {
|
|
|
|
return PBS.Utils.render_datastore_worker_id(id, gettext('Prune'));
|
|
|
|
},
|
|
|
|
backup: (type, id) => {
|
|
|
|
return PBS.Utils.render_datastore_worker_id(id, gettext('Backup'));
|
|
|
|
},
|
2020-05-26 16:17:01 +00:00
|
|
|
reader: (type, id) => {
|
|
|
|
return PBS.Utils.render_datastore_time_worker_id(id, gettext('Read objects'));
|
|
|
|
},
|
2020-05-25 17:06:47 +00:00
|
|
|
});
|
2018-12-05 11:39:40 +00:00
|
|
|
}
|
|
|
|
});
|