]> git.proxmox.com Git - pve-manager.git/blame - www/manager6/Utils.js
ui: qemu/OSTypeEdit: drop throwing an error on multiple widgets
[pve-manager.git] / www / manager6 / Utils.js
CommitLineData
b0a6d326
EK
1Ext.ns('PVE');
2
4d739f4a 3console.log("Starting Proxmox VE Manager");
b0a6d326
EK
4
5Ext.Ajax.defaultHeaders = {
f6710aac 6 'Accept': 'application/json',
b0a6d326
EK
7};
8
8058410f
TL
9Ext.define('PVE.Utils', {
10 utilities: {
b0a6d326 11
9fa2e36d 12 // this singleton contains miscellaneous utilities
b0a6d326 13
0be88ae1 14 toolkit: undefined, // (extjs|touch), set inside Toolkit.js
b0a6d326 15
98a01af2
EK
16 bus_match: /^(ide|sata|virtio|scsi)\d+$/,
17
b0a6d326
EK
18 log_severity_hash: {
19 0: "panic",
20 1: "alert",
21 2: "critical",
22 3: "error",
23 4: "warning",
24 5: "notice",
25 6: "info",
f6710aac 26 7: "debug",
b0a6d326
EK
27 },
28
29 support_level_hash: {
30 'c': gettext('Community'),
31 'b': gettext('Basic'),
32 's': gettext('Standard'),
f6710aac 33 'p': gettext('Premium'),
b0a6d326
EK
34 },
35
301f52b1
TL
36 noSubKeyHtml: 'You do not have a valid subscription for this server. Please visit '
37 +'<a target="_blank" href="https://www.proxmox.com/products/proxmox-ve/subscription-service-plans">'
38 +'www.proxmox.com</a> to get a list of available options.',
b0a6d326
EK
39
40 kvm_ostypes: {
45d6c71a 41 'Linux': [
ca71cd5d 42 { desc: '5.x - 2.6 Kernel', val: 'l26' },
f6710aac 43 { desc: '2.4 Kernel', val: 'l24' },
45d6c71a
TL
44 ],
45 'Microsoft Windows': [
beb3c8a4 46 { desc: '10/2016/2019', val: 'win10' },
45d6c71a
TL
47 { desc: '8.x/2012/2012r2', val: 'win8' },
48 { desc: '7/2008r2', val: 'win7' },
49 { desc: 'Vista/2008', val: 'w2k8' },
50 { desc: 'XP/2003', val: 'wxp' },
f6710aac 51 { desc: '2000', val: 'w2k' },
45d6c71a
TL
52 ],
53 'Solaris Kernel': [
8058410f 54 { desc: '-', val: 'solaris' },
45d6c71a
TL
55 ],
56 'Other': [
8058410f 57 { desc: '-', val: 'other' },
f6710aac 58 ],
b0a6d326
EK
59 },
60
43798244
SR
61 is_windows: function(ostype) {
62 for (let entry of PVE.Utils.kvm_ostypes['Microsoft Windows']) {
63 if (entry.val === ostype) {
64 return true;
65 }
66 }
67 return false;
68 },
69
428bc4a2
DC
70 get_health_icon: function(state, circle) {
71 if (circle === undefined) {
72 circle = false;
73 }
74
75 if (state === undefined) {
76 state = 'uknown';
77 }
78
79 var icon = 'faded fa-question';
8058410f 80 switch (state) {
428bc4a2
DC
81 case 'good':
82 icon = 'good fa-check';
83 break;
23c83a3a
DC
84 case 'upgrade':
85 icon = 'warning fa-upload';
86 break;
aa240b29
DC
87 case 'old':
88 icon = 'warning fa-refresh';
89 break;
428bc4a2
DC
90 case 'warning':
91 icon = 'warning fa-exclamation';
92 break;
93 case 'critical':
94 icon = 'critical fa-times';
95 break;
96 default: break;
97 }
98
99 if (circle) {
100 icon += '-circle';
101 }
102
103 return icon;
104 },
105
95d0de89
DC
106 parse_ceph_version: function(service) {
107 if (service.ceph_version_short) {
108 return service.ceph_version_short;
109 }
110
111 if (service.ceph_version) {
35306f47 112 var match = service.ceph_version.match(/version (\d+(\.\d+)*)/);
95d0de89
DC
113 if (match) {
114 return match[1];
115 }
116 }
117
118 return undefined;
119 },
120
005e0a60 121 compare_ceph_versions: function(a, b) {
3a08795a
DC
122 let avers = [];
123 let bvers = [];
124
005e0a60
DC
125 if (a === b) {
126 return 0;
127 }
3a08795a
DC
128
129 if (Ext.isArray(a)) {
130 avers = a.slice(); // copy array
131 } else {
132 avers = a.toString().split('.');
133 }
134
135 if (Ext.isArray(b)) {
136 bvers = b.slice(); // copy array
137 } else {
138 bvers = b.toString().split('.');
139 }
35306f47 140
4d739f4a 141 for (;;) {
35306f47
TL
142 let av = avers.shift();
143 let bv = bvers.shift();
144
145 if (av === undefined && bv === undefined) {
146 return 0;
8058410f 147 } else if (av === undefined) {
35306f47
TL
148 return -1;
149 } else if (bv === undefined) {
150 return 1;
151 } else {
152 let diff = parseInt(av, 10) - parseInt(bv, 10);
4d739f4a 153 if (diff !== 0) return diff;
35306f47 154 // else we need to look at the next parts
005e0a60
DC
155 }
156 }
005e0a60
DC
157 },
158
2f5b82ae
DC
159 get_ceph_icon_html: function(health, fw) {
160 var state = PVE.Utils.map_ceph_health[health];
161 var cls = PVE.Utils.get_health_icon(state);
162 if (fw) {
163 cls += ' fa-fw';
164 }
165 return "<i class='fa " + cls + "'></i> ";
166 },
167
046e640c 168 map_ceph_health: {
8058410f
TL
169 'HEALTH_OK': 'good',
170 'HEALTH_UPGRADE': 'upgrade',
171 'HEALTH_OLD': 'old',
172 'HEALTH_WARN': 'warning',
173 'HEALTH_ERR': 'critical',
046e640c
DC
174 },
175
4d739f4a 176 render_sdn_pending: function(rec, value, key, index) {
1d9643f6
AD
177 if (rec.data.state === undefined || rec.data.state === null) {
178 return value;
179 }
180
181 if (rec.data.state === 'deleted') {
182 if (value === undefined) {
183 return ' ';
184 } else {
185 return '<div style="text-decoration: line-through;">'+ value +'</div>';
186 }
4d739f4a
TL
187 } else if (rec.data.pending[key] !== undefined && rec.data.pending[key] !== null) {
188 if (rec.data.pending[key] === 'deleted') {
189 return ' ';
1d9643f6 190 } else {
4d739f4a 191 return rec.data.pending[key];
1d9643f6
AD
192 }
193 }
194 return value;
195 },
196
4d739f4a 197 render_sdn_pending_state: function(rec, value) {
1d9643f6
AD
198 if (value === undefined || value === null) {
199 return ' ';
200 }
201
202 let icon = `<i class="fa fa-fw fa-refresh warning"></i>`;
203
204 if (value === 'deleted') {
205 return '<span>' + icon + value + '</span>';
206 }
207
4d739f4a 208 let tip = gettext('Pending Changes') + ': <br>';
1d9643f6
AD
209
210 for (const [key, keyvalue] of Object.entries(rec.data.pending)) {
4d739f4a
TL
211 if ((rec.data[key] !== undefined && rec.data.pending[key] !== rec.data[key]) ||
212 rec.data[key] === undefined
213 ) {
214 tip += `${key}: ${keyvalue} <br>`;
1d9643f6
AD
215 }
216 }
217 return '<span data-qtip="' + tip + '">'+ icon + value + '</span>';
218 },
219
dfe6d184 220 render_ceph_health: function(healthObj) {
046e640c
DC
221 var state = {
222 iconCls: PVE.Utils.get_health_icon(),
f6710aac 223 text: '',
046e640c
DC
224 };
225
dfe6d184 226 if (!healthObj || !healthObj.status) {
046e640c
DC
227 return state;
228 }
229
dfe6d184 230 var health = PVE.Utils.map_ceph_health[healthObj.status];
046e640c
DC
231
232 state.iconCls = PVE.Utils.get_health_icon(health, true);
dfe6d184 233 state.text = healthObj.status;
046e640c
DC
234
235 return state;
236 },
237
fee716d3 238 render_zfs_health: function(value) {
4d739f4a 239 if (typeof value === 'undefined') {
8c8604ba
TM
240 return "";
241 }
fee716d3
DC
242 var iconCls = 'question-circle';
243 switch (value) {
8c8604ba 244 case 'AVAIL':
fee716d3
DC
245 case 'ONLINE':
246 iconCls = 'check-circle good';
247 break;
248 case 'REMOVED':
249 case 'DEGRADED':
250 iconCls = 'exclamation-circle warning';
251 break;
252 case 'UNAVAIL':
253 case 'FAULTED':
254 case 'OFFLINE':
255 iconCls = 'times-circle critical';
256 break;
257 default: //unknown
258 }
259
260 return '<i class="fa fa-' + iconCls + '"></i> ' + value;
261 },
262
14ba33fb
TL
263 render_pbs_fingerprint: fp => fp.substring(0, 23),
264
3003a59d
TL
265 render_backup_encryption: function(v, meta, record) {
266 if (!v) {
267 return gettext('No');
268 }
269
270 let tip = '';
271 if (v.match(/^[a-fA-F0-9]{2}:/)) { // fingerprint
272 tip = `Key fingerprint ${PVE.Utils.render_pbs_fingerprint(v)}`;
273 }
274 let icon = `<i class="fa fa-fw fa-lock good"></i>`;
275 return `<span data-qtip="${tip}">${icon} ${gettext('Encrypted')}</span>`;
276 },
277
770d614f
TL
278 render_backup_verification: function(v, meta, record) {
279 let i = (cls, txt) => `<i class="fa fa-fw fa-${cls}"></i> ${txt}`;
280 if (v === undefined || v === null) {
281 return i('question-circle-o warning', gettext('None'));
282 }
8058410f 283 let tip = "";
770d614f
TL
284 let txt = gettext('Failed');
285 let iconCls = 'times critical';
286 if (v.state === 'ok') {
287 txt = gettext('OK');
288 iconCls = 'check good';
289 let now = Date.now() / 1000;
290 let task = Proxmox.Utils.parse_task_upid(v.upid);
291 let verify_time = Proxmox.Utils.render_timestamp(task.starttime);
292 tip = `Last verify task started on ${verify_time}`;
293 if (now - v.starttime > 30 * 24 * 60 * 60) {
294 tip = `Last verify task over 30 days ago: ${verify_time}`;
295 iconCls = 'check warning';
296 }
297 }
298 return `<span data-qtip="${tip}"> ${i(iconCls, txt)} </span>`;
299 },
300
01ad47af 301 render_backup_status: function(value, meta, record) {
4d739f4a 302 if (typeof value === 'undefined') {
01ad47af
AL
303 return "";
304 }
305
306 let iconCls = 'check-circle good';
307 let text = gettext('Yes');
308
309 if (!PVE.Parser.parseBoolean(value.toString())) {
310 iconCls = 'times-circle critical';
311
312 text = gettext('No');
313
314 let reason = record.get('reason');
315 if (typeof reason !== 'undefined') {
316 if (reason in PVE.Utils.backup_reasons_table) {
317 reason = PVE.Utils.backup_reasons_table[record.get('reason')];
318 }
319 text = `${text} - ${reason}`;
320 }
321 }
322
323 return `<i class="fa fa-${iconCls}"></i> ${text}`;
324 },
325
7f08d0d1
AL
326 render_backup_days_of_week: function(val) {
327 var dows = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'];
328 var selected = [];
329 var cur = -1;
8058410f 330 val.split(',').forEach(function(day) {
7f08d0d1
AL
331 cur++;
332 var dow = (dows.indexOf(day)+6)%7;
333 if (cur === dow) {
334 if (selected.length === 0 || selected[selected.length-1] === 0) {
335 selected.push(1);
336 } else {
337 selected[selected.length-1]++;
338 }
339 } else {
340 while (cur < dow) {
341 cur++;
342 selected.push(0);
343 }
344 selected.push(1);
345 }
346 });
347
348 cur = -1;
349 var days = [];
350 selected.forEach(function(item) {
351 cur++;
352 if (item > 2) {
53e3ea84 353 days.push(Ext.Date.dayNames[cur+1] + '-' + Ext.Date.dayNames[(cur+item)%7]);
7f08d0d1 354 cur += item-1;
4d739f4a 355 } else if (item === 2) {
7f08d0d1
AL
356 days.push(Ext.Date.dayNames[cur+1]);
357 days.push(Ext.Date.dayNames[(cur+2)%7]);
358 cur++;
4d739f4a 359 } else if (item === 1) {
7f08d0d1
AL
360 days.push(Ext.Date.dayNames[(cur+1)%7]);
361 }
362 });
363 return days.join(', ');
364 },
365
366 render_backup_selection: function(value, metaData, record) {
367 let allExceptText = gettext('All except {0}');
368 let allText = '-- ' + gettext('All') + ' --';
369 if (record.data.all) {
370 if (record.data.exclude) {
371 return Ext.String.format(allExceptText, record.data.exclude);
372 }
373 return allText;
374 }
375 if (record.data.vmid) {
376 return record.data.vmid;
377 }
378
379 if (record.data.pool) {
380 return "Pool '"+ record.data.pool + "'";
381 }
382
383 return "-";
384 },
385
01ad47af
AL
386 backup_reasons_table: {
387 'backup=yes': gettext('Enabled'),
388 'backup=no': gettext('Disabled'),
389 'enabled': gettext('Enabled'),
390 'disabled': gettext('Disabled'),
391 'not a volume': gettext('Not a volume'),
392 'efidisk but no OMVF BIOS': gettext('EFI Disk without OMVF BIOS'),
393 },
394
45d6c71a
TL
395 get_kvm_osinfo: function(value) {
396 var info = { base: 'Other' }; // default
397 if (value) {
398 Ext.each(Object.keys(PVE.Utils.kvm_ostypes), function(k) {
399 Ext.each(PVE.Utils.kvm_ostypes[k], function(e) {
400 if (e.val === value) {
401 info = { desc: e.desc, base: k };
402 }
403 });
404 });
b0a6d326 405 }
45d6c71a
TL
406 return info;
407 },
408
8058410f 409 render_kvm_ostype: function(value) {
45d6c71a
TL
410 var osinfo = PVE.Utils.get_kvm_osinfo(value);
411 if (osinfo.desc && osinfo.desc !== '-') {
412 return osinfo.base + ' ' + osinfo.desc;
413 } else {
414 return osinfo.base;
b0a6d326 415 }
b0a6d326
EK
416 },
417
8058410f 418 render_hotplug_features: function(value) {
23d3881a 419 var fa = [];
b0a6d326 420
53e3ea84 421 if (!value || value === '0') {
ec99b1c3 422 return gettext('Disabled');
b0a6d326
EK
423 }
424
4dcca8a4
DC
425 if (value === '1') {
426 value = 'disk,network,usb';
427 }
428
b0a6d326
EK
429 Ext.each(value.split(','), function(el) {
430 if (el === 'disk') {
431 fa.push(gettext('Disk'));
432 } else if (el === 'network') {
433 fa.push(gettext('Network'));
434 } else if (el === 'usb') {
b9628aa5 435 fa.push('USB');
b0a6d326
EK
436 } else if (el === 'memory') {
437 fa.push(gettext('Memory'));
438 } else if (el === 'cpu') {
439 fa.push(gettext('CPU'));
440 } else {
441 fa.push(el);
442 }
443 });
444
445 return fa.join(', ');
446 },
447
0beff18b
FE
448 render_localtime: function(value) {
449 if (value === '__default__') {
450 return Proxmox.Utils.defaultText + ' (' + gettext('Enabled for Windows') + ')';
451 }
452 return Proxmox.Utils.format_boolean(value);
453 },
454
4d739f4a
TL
455 render_qga_features: function(config) {
456 if (!config) {
8058410f 457 return Proxmox.Utils.defaultText + ' (' + Proxmox.Utils.disabledText + ')';
1662ccdb 458 }
4d739f4a
TL
459 let qga = PVE.Parser.parsePropertyString(config, 'enabled');
460 if (!PVE.Parser.parseBoolean(qga.enabled)) {
1662ccdb
SI
461 return Proxmox.Utils.disabledText;
462 }
4d739f4a 463 delete qga.enabled;
1662ccdb 464
4d739f4a 465 let agentstring = Proxmox.Utils.enabledText;
1662ccdb 466
4d739f4a
TL
467 for (const [key, value] of Object.entries(qga)) {
468 let displayText = Proxmox.Utils.disabledText;
5a6c563c
MD
469 if (key === 'type') {
470 let map = {
471 isa: "ISA",
176a62d3 472 virtio: "VirtIO",
5a6c563c 473 };
4d739f4a
TL
474 displayText = map[value] || Proxmox.Utils.unknownText;
475 } else if (PVE.Parser.parseBoolean(value)) {
476 displayText = Proxmox.Utils.enabledText;
1662ccdb 477 }
4d739f4a
TL
478 agentstring += `, ${key}: ${displayText}`;
479 }
1662ccdb
SI
480
481 return agentstring;
482 },
483
a1ee14a2 484 render_qemu_machine: function(value) {
53e3ea84 485 return value || Proxmox.Utils.defaultText + ' (i440fx)';
a1ee14a2
DC
486 },
487
17c71f27
DC
488 render_qemu_bios: function(value) {
489 if (!value) {
e7ade592 490 return Proxmox.Utils.defaultText + ' (SeaBIOS)';
17c71f27
DC
491 } else if (value === 'seabios') {
492 return "SeaBIOS";
493 } else if (value === 'ovmf') {
494 return "OVMF (UEFI)";
495 } else {
496 return value;
497 }
498 },
499
8f17b496
TL
500 render_dc_ha_opts: function(value) {
501 if (!value) {
41ca3465 502 return Proxmox.Utils.defaultText;
8f17b496
TL
503 } else {
504 return PVE.Parser.printPropertyString(value);
505 }
506 },
bb469a11 507 render_as_property_string: function(value) {
53e3ea84 508 return !value ? Proxmox.Utils.defaultText
bb469a11
TL
509 : PVE.Parser.printPropertyString(value);
510 },
8f17b496 511
b0a6d326
EK
512 render_scsihw: function(value) {
513 if (!value) {
e7ade592 514 return Proxmox.Utils.defaultText + ' (LSI 53C895A)';
b0a6d326
EK
515 } else if (value === 'lsi') {
516 return 'LSI 53C895A';
517 } else if (value === 'lsi53c810') {
518 return 'LSI 53C810';
519 } else if (value === 'megasas') {
520 return 'MegaRAID SAS 8708EM2';
521 } else if (value === 'virtio-scsi-pci') {
49f5d1ab
EK
522 return 'VirtIO SCSI';
523 } else if (value === 'virtio-scsi-single') {
524 return 'VirtIO SCSI single';
b0a6d326
EK
525 } else if (value === 'pvscsi') {
526 return 'VMware PVSCSI';
527 } else {
528 return value;
529 }
530 },
531
9c22da32 532 render_spice_enhancements: function(values) {
9c22da32
AL
533 let props = PVE.Parser.parsePropertyString(values);
534 if (Ext.Object.isEmpty(props)) {
3b0facc9 535 return Proxmox.Utils.noneText;
9c22da32
AL
536 }
537
538 let output = [];
539 if (PVE.Parser.parseBoolean(props.foldersharing)) {
540 output.push('Folder Sharing: ' + gettext('Enabled'));
541 }
542 if (props.videostreaming === 'all' || props.videostreaming === 'filter') {
543 output.push('Video Streaming: ' + props.videostreaming);
544 }
545 return output.join(', ');
546 },
547
b0a6d326
EK
548 // fixme: auto-generate this
549 // for now, please keep in sync with PVE::Tools::kvmkeymaps
550 kvm_keymaps: {
551 //ar: 'Arabic',
552 da: 'Danish',
0be88ae1
DC
553 de: 'German',
554 'de-ch': 'German (Swiss)',
555 'en-gb': 'English (UK)',
0a5b8747 556 'en-us': 'English (USA)',
b0a6d326
EK
557 es: 'Spanish',
558 //et: 'Estonia',
559 fi: 'Finnish',
0be88ae1
DC
560 //fo: 'Faroe Islands',
561 fr: 'French',
562 'fr-be': 'French (Belgium)',
b0a6d326
EK
563 'fr-ca': 'French (Canada)',
564 'fr-ch': 'French (Swiss)',
565 //hr: 'Croatia',
566 hu: 'Hungarian',
567 is: 'Icelandic',
0be88ae1 568 it: 'Italian',
b0a6d326
EK
569 ja: 'Japanese',
570 lt: 'Lithuanian',
571 //lv: 'Latvian',
0be88ae1 572 mk: 'Macedonian',
b0a6d326
EK
573 nl: 'Dutch',
574 //'nl-be': 'Dutch (Belgium)',
0be88ae1 575 no: 'Norwegian',
b0a6d326
EK
576 pl: 'Polish',
577 pt: 'Portuguese',
578 'pt-br': 'Portuguese (Brazil)',
579 //ru: 'Russian',
580 sl: 'Slovenian',
581 sv: 'Swedish',
582 //th: 'Thai',
f6710aac 583 tr: 'Turkish',
b0a6d326
EK
584 },
585
586 kvm_vga_drivers: {
587 std: gettext('Standard VGA'),
5ca366f2 588 vmware: gettext('VMware compatible'),
b0a6d326
EK
589 qxl: 'SPICE',
590 qxl2: 'SPICE dual monitor',
591 qxl3: 'SPICE three monitors',
592 qxl4: 'SPICE four monitors',
593 serial0: gettext('Serial terminal') + ' 0',
594 serial1: gettext('Serial terminal') + ' 1',
595 serial2: gettext('Serial terminal') + ' 2',
89ae1bb1
DC
596 serial3: gettext('Serial terminal') + ' 3',
597 virtio: 'VirtIO-GPU',
f6710aac 598 none: Proxmox.Utils.noneText,
b0a6d326
EK
599 },
600
8058410f 601 render_kvm_language: function(value) {
e7ade592
DC
602 if (!value || value === '__default__') {
603 return Proxmox.Utils.defaultText;
b0a6d326
EK
604 }
605 var text = PVE.Utils.kvm_keymaps[value];
606 if (text) {
607 return text + ' (' + value + ')';
608 }
609 return value;
610 },
611
612 kvm_keymap_array: function() {
f2782813 613 var data = [['__default__', PVE.Utils.render_kvm_language('')]];
b0a6d326
EK
614 Ext.Object.each(PVE.Utils.kvm_keymaps, function(key, value) {
615 data.push([key, PVE.Utils.render_kvm_language(value)]);
616 });
617
618 return data;
619 },
620
3438c27e 621 console_map: {
da9d14cd 622 '__default__': Proxmox.Utils.defaultText + ' (xterm.js)',
3438c27e
DC
623 'vv': 'SPICE (remote-viewer)',
624 'html5': 'HTML5 (noVNC)',
f6710aac 625 'xtermjs': 'xterm.js',
3438c27e
DC
626 },
627
b0a6d326 628 render_console_viewer: function(value) {
3438c27e
DC
629 value = value || '__default__';
630 if (PVE.Utils.console_map[value]) {
631 return PVE.Utils.console_map[value];
b0a6d326 632 }
3438c27e 633 return value;
b0a6d326
EK
634 },
635
755b9083 636 console_viewer_array: function() {
3438c27e 637 return Ext.Array.map(Object.keys(PVE.Utils.console_map), function(v) {
755b9083
TL
638 return [v, PVE.Utils.render_console_viewer(v)];
639 });
640 },
641
8058410f 642 render_kvm_vga_driver: function(value) {
b0a6d326 643 if (!value) {
e7ade592 644 return Proxmox.Utils.defaultText;
b0a6d326 645 }
4f3e66d8
DC
646 var vga = PVE.Parser.parsePropertyString(value, 'type');
647 var text = PVE.Utils.kvm_vga_drivers[vga.type];
648 if (!vga.type) {
649 text = Proxmox.Utils.defaultText;
650 }
0be88ae1 651 if (text) {
b0a6d326
EK
652 return text + ' (' + value + ')';
653 }
654 return value;
655 },
656
657 kvm_vga_driver_array: function() {
f2782813 658 var data = [['__default__', PVE.Utils.render_kvm_vga_driver('')]];
b0a6d326
EK
659 Ext.Object.each(PVE.Utils.kvm_vga_drivers, function(key, value) {
660 data.push([key, PVE.Utils.render_kvm_vga_driver(value)]);
661 });
662
663 return data;
664 },
665
666 render_kvm_startup: function(value) {
667 var startup = PVE.Parser.parseStartup(value);
668
669 var res = 'order=';
670 if (startup.order === undefined) {
671 res += 'any';
672 } else {
673 res += startup.order;
674 }
675 if (startup.up !== undefined) {
676 res += ',up=' + startup.up;
677 }
678 if (startup.down !== undefined) {
679 res += ',down=' + startup.down;
680 }
681
682 return res;
683 },
684
b0a6d326
EK
685 extractFormActionError: function(action) {
686 var msg;
687 switch (action.failureType) {
688 case Ext.form.action.Action.CLIENT_INVALID:
689 msg = gettext('Form fields may not be submitted with invalid values');
690 break;
691 case Ext.form.action.Action.CONNECT_FAILURE:
692 msg = gettext('Connection error');
693 var resp = action.response;
694 if (resp.status && resp.statusText) {
695 msg += " " + resp.status + ": " + resp.statusText;
696 }
697 break;
698 case Ext.form.action.Action.LOAD_FAILURE:
699 case Ext.form.action.Action.SERVER_INVALID:
e7ade592 700 msg = Proxmox.Utils.extractRequestError(action.result, true);
b0a6d326
EK
701 break;
702 }
703 return msg;
704 },
705
0e244a29
DC
706 contentTypes: {
707 'images': gettext('Disk image'),
708 'backup': gettext('VZDump backup file'),
709 'vztmpl': gettext('Container template'),
710 'iso': gettext('ISO image'),
aef28e04 711 'rootdir': gettext('Container'),
f6710aac 712 'snippets': gettext('Snippets'),
0e244a29 713 },
b0a6d326 714
3b8f599b
DM
715 volume_is_qemu_backup: function(volid, format) {
716 return format === 'pbs-vm' || volid.match(':backup/vzdump-qemu-');
717 },
718
719 volume_is_lxc_backup: function(volid, format) {
720 return format === 'pbs-ct' || volid.match(':backup/vzdump-(lxc|openvz)-');
721 },
722
efff7eab
DC
723 authSchema: {
724 ad: {
725 name: gettext('Active Directory Server'),
726 ipanel: 'pveAuthADPanel',
822fb26d 727 syncipanel: 'pveAuthLDAPSyncPanel',
efff7eab 728 add: true,
550857eb 729 tfa: true,
60265958 730 pwchange: true,
efff7eab
DC
731 },
732 ldap: {
733 name: gettext('LDAP Server'),
734 ipanel: 'pveAuthLDAPPanel',
822fb26d 735 syncipanel: 'pveAuthLDAPSyncPanel',
efff7eab 736 add: true,
550857eb 737 tfa: true,
60265958 738 pwchange: true,
efff7eab 739 },
668951e2 740 openid: {
c42e3aa7 741 name: gettext('OpenID Connect Server'),
668951e2
DC
742 ipanel: 'pveAuthOpenIDPanel',
743 add: true,
744 tfa: false,
60265958 745 pwchange: false,
da25c5ac 746 iconCls: 'pmx-itype-icon-openid-logo',
668951e2 747 },
efff7eab
DC
748 pam: {
749 name: 'Linux PAM',
750 ipanel: 'pveAuthBasePanel',
751 add: false,
550857eb 752 tfa: true,
60265958 753 pwchange: true,
efff7eab
DC
754 },
755 pve: {
756 name: 'Proxmox VE authentication server',
757 ipanel: 'pveAuthBasePanel',
758 add: false,
f5ae7496 759 tfa: true,
60265958 760 pwchange: true,
efff7eab
DC
761 },
762 },
763
062a7f49
TL
764 storageSchema: {
765 dir: {
766 name: Proxmox.Utils.directoryText,
767 ipanel: 'DirInputPanel',
06c8315d
DC
768 faIcon: 'folder',
769 backups: true,
062a7f49
TL
770 },
771 lvm: {
772 name: 'LVM',
773 ipanel: 'LVMInputPanel',
06c8315d
DC
774 faIcon: 'folder',
775 backups: false,
062a7f49
TL
776 },
777 lvmthin: {
778 name: 'LVM-Thin',
779 ipanel: 'LvmThinInputPanel',
06c8315d
DC
780 faIcon: 'folder',
781 backups: false,
062a7f49 782 },
ffeb4f57
TL
783 btrfs: {
784 name: 'BTRFS',
785 ipanel: 'BTRFSInputPanel',
786 faIcon: 'folder',
787 backups: true,
788 },
062a7f49
TL
789 nfs: {
790 name: 'NFS',
791 ipanel: 'NFSInputPanel',
06c8315d
DC
792 faIcon: 'building',
793 backups: true,
062a7f49
TL
794 },
795 cifs: {
796 name: 'CIFS',
797 ipanel: 'CIFSInputPanel',
06c8315d
DC
798 faIcon: 'building',
799 backups: true,
062a7f49
TL
800 },
801 glusterfs: {
802 name: 'GlusterFS',
803 ipanel: 'GlusterFsInputPanel',
06c8315d
DC
804 faIcon: 'building',
805 backups: true,
062a7f49
TL
806 },
807 iscsi: {
808 name: 'iSCSI',
809 ipanel: 'IScsiInputPanel',
06c8315d
DC
810 faIcon: 'building',
811 backups: false,
062a7f49 812 },
4a4b2b6e
TL
813 cephfs: {
814 name: 'CephFS',
815 ipanel: 'CephFSInputPanel',
06c8315d
DC
816 faIcon: 'building',
817 backups: true,
4a4b2b6e
TL
818 },
819 pvecephfs: {
820 name: 'CephFS (PVE)',
821 ipanel: 'CephFSInputPanel',
822 hideAdd: true,
06c8315d
DC
823 faIcon: 'building',
824 backups: true,
4a4b2b6e 825 },
062a7f49
TL
826 rbd: {
827 name: 'RBD',
828 ipanel: 'RBDInputPanel',
06c8315d
DC
829 faIcon: 'building',
830 backups: false,
062a7f49
TL
831 },
832 pveceph: {
833 name: 'RBD (PVE)',
0d1ac958
TL
834 ipanel: 'RBDInputPanel',
835 hideAdd: true,
06c8315d
DC
836 faIcon: 'building',
837 backups: false,
062a7f49
TL
838 },
839 zfs: {
840 name: 'ZFS over iSCSI',
841 ipanel: 'ZFSInputPanel',
06c8315d
DC
842 faIcon: 'building',
843 backups: false,
062a7f49
TL
844 },
845 zfspool: {
846 name: 'ZFS',
847 ipanel: 'ZFSPoolInputPanel',
06c8315d
DC
848 faIcon: 'folder',
849 backups: false,
062a7f49 850 },
8b966034
TL
851 pbs: {
852 name: 'Proxmox Backup Server',
ee19d331
TL
853 ipanel: 'PBSInputPanel',
854 faIcon: 'floppy-o',
06c8315d 855 backups: true,
8b966034 856 },
062a7f49
TL
857 drbd: {
858 name: 'DRBD',
8b966034 859 hideAdd: true,
06c8315d 860 backups: false,
8b966034 861 },
062a7f49
TL
862 },
863
9233148b
AD
864 sdnvnetSchema: {
865 vnet: {
866 name: 'vnet',
f6710aac 867 faIcon: 'folder',
9233148b
AD
868 },
869 },
870
871 sdnzoneSchema: {
872 zone: {
873 name: 'zone',
f6710aac 874 hideAdd: true,
9233148b 875 },
1b4cce60
AD
876 simple: {
877 name: 'Simple',
878 ipanel: 'SimpleInputPanel',
f6710aac 879 faIcon: 'th',
1b4cce60 880 },
9233148b 881 vlan: {
f3c1eac7 882 name: 'VLAN',
9233148b 883 ipanel: 'VlanInputPanel',
f6710aac 884 faIcon: 'th',
9233148b
AD
885 },
886 qinq: {
f3c1eac7 887 name: 'QinQ',
9233148b 888 ipanel: 'QinQInputPanel',
f6710aac 889 faIcon: 'th',
9233148b
AD
890 },
891 vxlan: {
f3c1eac7 892 name: 'VXLAN',
9233148b 893 ipanel: 'VxlanInputPanel',
f6710aac 894 faIcon: 'th',
9233148b
AD
895 },
896 evpn: {
f3c1eac7 897 name: 'EVPN',
9233148b 898 ipanel: 'EvpnInputPanel',
f6710aac 899 faIcon: 'th',
9233148b
AD
900 },
901 },
902
903 sdncontrollerSchema: {
904 controller: {
905 name: 'controller',
f6710aac 906 hideAdd: true,
9233148b
AD
907 },
908 evpn: {
909 name: 'evpn',
910 ipanel: 'EvpnInputPanel',
f6710aac 911 faIcon: 'crosshairs',
9233148b 912 },
1d9643f6
AD
913 bgp: {
914 name: 'bgp',
915 ipanel: 'BgpInputPanel',
4d739f4a 916 faIcon: 'crosshairs',
1d9643f6
AD
917 },
918 },
919
920 sdnipamSchema: {
921 ipam: {
922 name: 'ipam',
4d739f4a 923 hideAdd: true,
1d9643f6
AD
924 },
925 pve: {
926 name: 'PVE',
927 ipanel: 'PVEIpamInputPanel',
928 faIcon: 'th',
4d739f4a 929 hideAdd: true,
1d9643f6
AD
930 },
931 netbox: {
932 name: 'Netbox',
933 ipanel: 'NetboxInputPanel',
4d739f4a 934 faIcon: 'th',
1d9643f6
AD
935 },
936 phpipam: {
937 name: 'PhpIpam',
938 ipanel: 'PhpIpamInputPanel',
4d739f4a 939 faIcon: 'th',
1d9643f6
AD
940 },
941 },
942
943 sdndnsSchema: {
944 dns: {
945 name: 'dns',
4d739f4a 946 hideAdd: true,
1d9643f6
AD
947 },
948 powerdns: {
949 name: 'powerdns',
950 ipanel: 'PowerdnsInputPanel',
4d739f4a 951 faIcon: 'th',
1d9643f6 952 },
9233148b
AD
953 },
954
955 format_sdnvnet_type: function(value, md, record) {
956 var schema = PVE.Utils.sdnvnetSchema[value];
957 if (schema) {
958 return schema.name;
959 }
960 return Proxmox.Utils.unknownText;
961 },
962
963 format_sdnzone_type: function(value, md, record) {
964 var schema = PVE.Utils.sdnzoneSchema[value];
965 if (schema) {
f3c1eac7 966 return schema.name;
9233148b
AD
967 }
968 return Proxmox.Utils.unknownText;
969 },
970
971 format_sdncontroller_type: function(value, md, record) {
972 var schema = PVE.Utils.sdncontrollerSchema[value];
973 if (schema) {
974 return schema.name;
975 }
976 return Proxmox.Utils.unknownText;
977 },
978
1d9643f6
AD
979 format_sdnipam_type: function(value, md, record) {
980 var schema = PVE.Utils.sdnipamSchema[value];
981 if (schema) {
982 return schema.name;
983 }
984 return Proxmox.Utils.unknownText;
985 },
986
987 format_sdndns_type: function(value, md, record) {
988 var schema = PVE.Utils.sdndnsSchema[value];
989 if (schema) {
990 return schema.name;
991 }
992 return Proxmox.Utils.unknownText;
993 },
994
3c23c025 995 format_storage_type: function(value, md, record) {
4a4b2b6e 996 if (value === 'rbd') {
53e3ea84 997 value = !record || record.get('monhost') ? 'rbd' : 'pveceph';
4a4b2b6e 998 } else if (value === 'cephfs') {
53e3ea84 999 value = !record || record.get('monhost') ? 'cephfs' : 'pvecephfs';
3c23c025 1000 }
062a7f49
TL
1001
1002 var schema = PVE.Utils.storageSchema[value];
1003 if (schema) {
1004 return schema.name;
b0a6d326 1005 }
062a7f49 1006 return Proxmox.Utils.unknownText;
a3b8efb4
EK
1007 },
1008
ced1677b 1009 format_ha: function(value) {
e7ade592 1010 var text = Proxmox.Utils.noneText;
ced1677b
TL
1011
1012 if (value.managed) {
e7ade592 1013 text = value.state || Proxmox.Utils.noneText;
ced1677b 1014
8058410f 1015 text += ', ' + Proxmox.Utils.groupText + ': ';
e7ade592 1016 text += value.group || Proxmox.Utils.noneText;
ced1677b
TL
1017 }
1018
1019 return text;
1020 },
1021
b0a6d326 1022 format_content_types: function(value) {
0e244a29
DC
1023 return value.split(',').sort().map(function(ct) {
1024 return PVE.Utils.contentTypes[ct] || ct;
1025 }).join(', ');
b0a6d326
EK
1026 },
1027
1028 render_storage_content: function(value, metaData, record) {
1029 var data = record.data;
1030 if (Ext.isNumber(data.channel) &&
1031 Ext.isNumber(data.id) &&
1032 Ext.isNumber(data.lun)) {
0be88ae1 1033 return "CH " +
f6710aac 1034 Ext.String.leftPad(data.channel, 2, '0') +
b0a6d326
EK
1035 " ID " + data.id + " LUN " + data.lun;
1036 }
f6710aac 1037 return data.volid.replace(/^.*?:(.*?\/)?/, '');
b0a6d326
EK
1038 },
1039
8058410f 1040 render_serverity: function(value) {
b0a6d326
EK
1041 return PVE.Utils.log_severity_hash[value] || value;
1042 },
1043
a62ee730 1044 calculate_hostcpu: function(data) {
a62ee730
AD
1045 if (!(data.uptime && Ext.isNumeric(data.cpu))) {
1046 return -1;
1047 }
1048
1049 if (data.type !== 'qemu' && data.type !== 'lxc') {
1050 return -1;
1051 }
1052
1053 var index = PVE.data.ResourceStore.findExact('id', 'node/' + data.node);
1054 var node = PVE.data.ResourceStore.getAt(index);
1055 if (!Ext.isDefined(node) || node === null) {
1056 return -1;
1057 }
1058 var maxcpu = node.data.maxcpu || 1;
1059
1060 if (!Ext.isNumeric(maxcpu) && (maxcpu >= 1)) {
1061 return -1;
1062 }
1063
4d739f4a 1064 return (data.cpu/maxcpu) * data.maxcpu;
a62ee730
AD
1065 },
1066
1067 render_hostcpu: function(value, metaData, record, rowIndex, colIndex, store) {
a62ee730
AD
1068 if (!(record.data.uptime && Ext.isNumeric(record.data.cpu))) {
1069 return '';
1070 }
1071
1072 if (record.data.type !== 'qemu' && record.data.type !== 'lxc') {
1073 return '';
1074 }
1075
1076 var index = PVE.data.ResourceStore.findExact('id', 'node/' + record.data.node);
1077 var node = PVE.data.ResourceStore.getAt(index);
1078 if (!Ext.isDefined(node) || node === null) {
1079 return '';
1080 }
1081 var maxcpu = node.data.maxcpu || 1;
1082
1083 if (!Ext.isNumeric(maxcpu) && (maxcpu >= 1)) {
1084 return '';
1085 }
1086
1087 var per = (record.data.cpu/maxcpu) * record.data.maxcpu * 100;
1088
1089 return per.toFixed(1) + '% of ' + maxcpu.toString() + (maxcpu > 1 ? 'CPUs' : 'CPU');
1090 },
1091
946730cd
DC
1092 render_bandwidth: function(value) {
1093 if (!Ext.isNumeric(value)) {
1094 return '';
1095 }
1096
e7ade592 1097 return Proxmox.Utils.format_size(value) + '/s';
b0a6d326
EK
1098 },
1099
3f633655
EK
1100 render_timestamp_human_readable: function(value) {
1101 return Ext.Date.format(new Date(value * 1000), 'l d F Y H:i:s');
1102 },
1103
0bfc799f
DC
1104 calculate_mem_usage: function(data) {
1105 if (!Ext.isNumeric(data.mem) ||
1106 data.maxmem === 0 ||
1107 data.uptime < 1) {
1108 return -1;
1109 }
1110
53e3ea84 1111 return data.mem / data.maxmem;
0bfc799f
DC
1112 },
1113
a62ee730 1114 calculate_hostmem_usage: function(data) {
a62ee730
AD
1115 if (data.type !== 'qemu' && data.type !== 'lxc') {
1116 return -1;
1117 }
1118
1119 var index = PVE.data.ResourceStore.findExact('id', 'node/' + data.node);
1120 var node = PVE.data.ResourceStore.getAt(index);
1121
1122 if (!Ext.isDefined(node) || node === null) {
1123 return -1;
1124 }
1125 var maxmem = node.data.maxmem || 0;
1126
1127 if (!Ext.isNumeric(data.mem) ||
1128 maxmem === 0 ||
1129 data.uptime < 1) {
1130 return -1;
1131 }
1132
4d739f4a 1133 return data.mem / maxmem;
a62ee730
AD
1134 },
1135
0bfc799f
DC
1136 render_mem_usage_percent: function(value, metaData, record, rowIndex, colIndex, store) {
1137 if (!Ext.isNumeric(value) || value === -1) {
1138 return '';
1139 }
8058410f 1140 if (value > 1) {
0bfc799f
DC
1141 // we got no percentage but bytes
1142 var mem = value;
1143 var maxmem = record.data.maxmem;
1144 if (!record.data.uptime ||
1145 maxmem === 0 ||
1146 !Ext.isNumeric(mem)) {
1147 return '';
1148 }
1149
53e3ea84 1150 return (mem*100/maxmem).toFixed(1) + " %";
0bfc799f
DC
1151 }
1152 return (value*100).toFixed(1) + " %";
1153 },
1154
a62ee730 1155 render_hostmem_usage_percent: function(value, metaData, record, rowIndex, colIndex, store) {
a62ee730
AD
1156 if (!Ext.isNumeric(record.data.mem) || value === -1) {
1157 return '';
1158 }
1159
1160 if (record.data.type !== 'qemu' && record.data.type !== 'lxc') {
1161 return '';
1162 }
1163
1164 var index = PVE.data.ResourceStore.findExact('id', 'node/' + record.data.node);
1165 var node = PVE.data.ResourceStore.getAt(index);
1166 var maxmem = node.data.maxmem || 0;
1167
4d739f4a 1168 if (record.data.mem > 1) {
a62ee730
AD
1169 // we got no percentage but bytes
1170 var mem = record.data.mem;
1171 if (!record.data.uptime ||
1172 maxmem === 0 ||
1173 !Ext.isNumeric(mem)) {
1174 return '';
1175 }
1176
1177 return ((mem*100)/maxmem).toFixed(1) + " %";
1178 }
1179 return (value*100).toFixed(1) + " %";
1180 },
1181
b0a6d326 1182 render_mem_usage: function(value, metaData, record, rowIndex, colIndex, store) {
b0a6d326
EK
1183 var mem = value;
1184 var maxmem = record.data.maxmem;
0be88ae1 1185
b0a6d326
EK
1186 if (!record.data.uptime) {
1187 return '';
1188 }
1189
1190 if (!(Ext.isNumeric(mem) && maxmem)) {
1191 return '';
1192 }
1193
1bd7bcdb 1194 return Proxmox.Utils.render_size(value);
b0a6d326
EK
1195 },
1196
0bfc799f 1197 calculate_disk_usage: function(data) {
0bfc799f 1198 if (!Ext.isNumeric(data.disk) ||
4d739f4a
TL
1199 ((data.type === 'qemu' || data.type === 'lxc') && data.uptime === 0) ||
1200 data.maxdisk === 0
1201 ) {
0bfc799f
DC
1202 return -1;
1203 }
1204
53e3ea84 1205 return data.disk / data.maxdisk;
0bfc799f
DC
1206 },
1207
1208 render_disk_usage_percent: function(value, metaData, record, rowIndex, colIndex, store) {
1209 if (!Ext.isNumeric(value) || value === -1) {
1210 return '';
1211 }
1212
1213 return (value * 100).toFixed(1) + " %";
1214 },
1215
b0a6d326 1216 render_disk_usage: function(value, metaData, record, rowIndex, colIndex, store) {
b0a6d326
EK
1217 var disk = value;
1218 var maxdisk = record.data.maxdisk;
728f1b97 1219 var type = record.data.type;
b0a6d326 1220
728f1b97 1221 if (!Ext.isNumeric(disk) ||
728f1b97 1222 maxdisk === 0 ||
4d739f4a
TL
1223 ((type === 'qemu' || type === 'lxc') && record.data.uptime === 0)
1224 ) {
b0a6d326
EK
1225 return '';
1226 }
1227
1bd7bcdb 1228 return Proxmox.Utils.render_size(value);
b0a6d326
EK
1229 },
1230
4dbc64a7
DC
1231 get_object_icon_class: function(type, record) {
1232 var status = '';
1233 var objType = type;
1234
1235 if (type === 'type') {
1236 // for folder view
1237 objType = record.groupbyid;
1238 } else if (record.template) {
1239 // templates
1240 objType = 'template';
1241 status = type;
1242 } else {
1243 // everything else
1244 status = record.status + ' ha-' + record.hastate;
b1d8e73d
DC
1245 }
1246
6284a48a
DC
1247 if (record.lock) {
1248 status += ' locked lock-' + record.lock;
1249 }
1250
4dbc64a7
DC
1251 var defaults = PVE.tree.ResourceTree.typeDefaults[objType];
1252 if (defaults && defaults.iconCls) {
1253 var retVal = defaults.iconCls + ' ' + status;
1254 return retVal;
b0a6d326
EK
1255 }
1256
4dbc64a7
DC
1257 return '';
1258 },
1259
1260 render_resource_type: function(value, metaData, record, rowIndex, colIndex, store) {
f6710aac 1261 var cls = PVE.Utils.get_object_icon_class(value, record.data);
2b2fe160 1262
8058410f 1263 var fa = '<i class="fa-fw x-grid-icon-custom ' + cls + '"></i> ';
b1d8e73d 1264 return fa + value;
b0a6d326
EK
1265 },
1266
b0a6d326
EK
1267 render_support_level: function(value, metaData, record) {
1268 return PVE.Utils.support_level_hash[value] || '-';
1269 },
1270
0be88ae1 1271 render_upid: function(value, metaData, record) {
b0a6d326
EK
1272 var type = record.data.type;
1273 var id = record.data.id;
1274
e7ade592 1275 return Proxmox.Utils.format_task_description(type, id);
b0a6d326
EK
1276 },
1277
27809975 1278 render_optional_url: function(value) {
4d739f4a 1279 if (value && value.match(/^https?:\/\//)) {
cdd9b6c0 1280 return '<a target="_blank" href="' + value + '">' + value + '</a>';
27809975
DC
1281 }
1282 return value;
1283 },
1284
1285 render_san: function(value) {
1286 var names = [];
1287 if (Ext.isArray(value)) {
1288 value.forEach(function(val) {
1289 if (!Ext.isNumber(val)) {
1290 names.push(val);
1291 }
1292 });
1293 return names.join('<br>');
1294 }
1295 return value;
1296 },
1297
6ad4be69
DC
1298 render_full_name: function(firstname, metaData, record) {
1299 var first = firstname || '';
1300 var last = record.data.lastname || '';
1301 return Ext.htmlEncode(first + " " + last);
1302 },
1303
2d41c7e6
TL
1304 render_u2f_error: function(error) {
1305 var ErrorNames = {
1306 '1': gettext('Other Error'),
1307 '2': gettext('Bad Request'),
1308 '3': gettext('Configuration Unsupported'),
1309 '4': gettext('Device Ineligible'),
f6710aac 1310 '5': gettext('Timeout'),
2d41c7e6 1311 };
8058410f 1312 return "U2F Error: " + ErrorNames[error] || Proxmox.Utils.unknownText;
2d41c7e6
TL
1313 },
1314
aa0819a8 1315 windowHostname: function() {
e7ade592 1316 return window.location.hostname.replace(Proxmox.Utils.IP6_bracket_match,
aa0819a8
WB
1317 function(m, addr, offset, original) { return addr; });
1318 },
0be88ae1 1319
953f6e9b 1320 openDefaultConsoleWindow: function(consoles, consoleType, vmid, nodename, vmname, cmd) {
8aac63a5 1321 var dv = PVE.Utils.defaultViewer(consoles, consoleType);
953f6e9b 1322 PVE.Utils.openConsoleWindow(dv, consoleType, vmid, nodename, vmname, cmd);
b0a6d326
EK
1323 },
1324
953f6e9b 1325 openConsoleWindow: function(viewer, consoleType, vmid, nodename, vmname, cmd) {
4d739f4a 1326 if (vmid === undefined && (consoleType === 'kvm' || consoleType === 'lxc')) {
b0a6d326
EK
1327 throw "missing vmid";
1328 }
b0a6d326
EK
1329 if (!nodename) {
1330 throw "no nodename specified";
1331 }
1332
c7218ab3 1333 if (viewer === 'html5') {
953f6e9b 1334 PVE.Utils.openVNCViewer(consoleType, vmid, nodename, vmname, cmd);
c6b2336c 1335 } else if (viewer === 'xtermjs') {
953f6e9b 1336 Proxmox.Utils.openXtermJsViewer(consoleType, vmid, nodename, vmname, cmd);
b0a6d326 1337 } else if (viewer === 'vv') {
953f6e9b
TL
1338 let url = '/nodes/' + nodename + '/spiceshell';
1339 let params = {
1340 proxy: PVE.Utils.windowHostname(),
1341 };
1342 if (consoleType === 'kvm') {
b0a6d326 1343 url = '/nodes/' + nodename + '/qemu/' + vmid.toString() + '/spiceproxy';
953f6e9b 1344 } else if (consoleType === 'lxc') {
9e361643 1345 url = '/nodes/' + nodename + '/lxc/' + vmid.toString() + '/spiceproxy';
953f6e9b
TL
1346 } else if (consoleType === 'upgrade') {
1347 params.cmd = 'upgrade';
1348 } else if (consoleType === 'cmd') {
8eccc68f 1349 params.cmd = cmd;
953f6e9b
TL
1350 } else if (consoleType !== 'shell') {
1351 throw `unknown spice viewer type '${consoleType}'`;
b0a6d326 1352 }
953f6e9b 1353 PVE.Utils.openSpiceViewer(url, params);
b0a6d326 1354 } else {
953f6e9b 1355 throw `unknown viewer type '${viewer}'`;
b0a6d326
EK
1356 }
1357 },
1358
8aac63a5 1359 defaultViewer: function(consoles, type) {
3438c27e
DC
1360 var allowSpice, allowXtermjs;
1361
1362 if (consoles === true) {
1363 allowSpice = true;
1364 allowXtermjs = true;
1365 } else if (typeof consoles === 'object') {
1366 allowSpice = consoles.spice;
4ace5c6f 1367 allowXtermjs = !!consoles.xtermjs;
3438c27e 1368 }
8aac63a5 1369 let dv = PVE.VersionInfo.console || (type === 'kvm' ? 'vv' : 'xtermjs');
f932cffa 1370 if (dv === 'vv' && !allowSpice) {
53e3ea84 1371 dv = allowXtermjs ? 'xtermjs' : 'html5';
f932cffa 1372 } else if (dv === 'xtermjs' && !allowXtermjs) {
53e3ea84 1373 dv = allowSpice ? 'vv' : 'html5';
b0a6d326
EK
1374 }
1375
1376 return dv;
1377 },
1378
8eccc68f 1379 openVNCViewer: function(vmtype, vmid, nodename, vmname, cmd) {
af89f682
TL
1380 let scaling = 'off';
1381 if (Proxmox.Utils.toolkit !== 'touch') {
1382 var sp = Ext.state.Manager.getProvider();
1383 scaling = sp.get('novnc-scaling', 'off');
1384 }
8eccc68f 1385 var url = Ext.Object.toQueryString({
9e361643 1386 console: vmtype, // kvm, lxc, upgrade or shell
c7218ab3 1387 novnc: 1,
b0a6d326
EK
1388 vmid: vmid,
1389 vmname: vmname,
16e64c97 1390 node: nodename,
af89f682 1391 resize: scaling,
f6710aac 1392 cmd: cmd,
b0a6d326
EK
1393 });
1394 var nw = window.open("?" + url, '_blank', "innerWidth=745,innerheight=427");
7af1ab47
DC
1395 if (nw) {
1396 nw.focus();
1397 }
b0a6d326
EK
1398 },
1399
8058410f 1400 openSpiceViewer: function(url, params) {
b0a6d326
EK
1401 var downloadWithName = function(uri, name) {
1402 var link = Ext.DomHelper.append(document.body, {
1403 tag: 'a',
1404 href: uri,
8058410f 1405 css: 'display:none;visibility:hidden;height:0px;',
b0a6d326
EK
1406 });
1407
63c22966 1408 // Note: we need to tell Android and Chrome the correct file name extension
b0a6d326
EK
1409 // but we do not set 'download' tag for other environments, because
1410 // It can have strange side effects (additional user prompt on firefox)
63c22966 1411 if (navigator.userAgent.match(/Android|Chrome/i)) {
b0a6d326
EK
1412 link.download = name;
1413 }
1414
1415 if (link.fireEvent) {
1416 link.fireEvent('onclick');
1417 } else {
953f6e9b
TL
1418 let evt = document.createEvent("MouseEvents");
1419 evt.initMouseEvent('click', true, true, window, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
b0a6d326
EK
1420 link.dispatchEvent(evt);
1421 }
1422 };
1423
e7ade592 1424 Proxmox.Utils.API2Request({
b0a6d326
EK
1425 url: url,
1426 params: params,
1427 method: 'POST',
8058410f 1428 failure: function(response, opts) {
b0a6d326
EK
1429 Ext.Msg.alert('Error', response.htmlStatus);
1430 },
8058410f 1431 success: function(response, opts) {
4d739f4a
TL
1432 let cfg = response.result.data;
1433 let raw = Object.entries(cfg).reduce((acc, [k, v]) => acc + `${k}=${v}\n`, "[virt-viewer]\n");
1434 let spiceDownload = 'data:application/x-virt-viewer;charset=UTF-8,' + encodeURIComponent(raw);
1435 downloadWithName(spiceDownload, "pve-spice.vv");
f6710aac 1436 },
b0a6d326
EK
1437 });
1438 },
1439
e3129443
DC
1440 openTreeConsole: function(tree, record, item, index, e) {
1441 e.stopEvent();
4d739f4a
TL
1442 let nodename = record.data.node;
1443 let vmid = record.data.vmid;
1444 let vmname = record.data.name;
e3129443 1445 if (record.data.type === 'qemu' && !record.data.template) {
e7ade592 1446 Proxmox.Utils.API2Request({
4d739f4a
TL
1447 url: `/nodes/${nodename}/qemu/${vmid}/status/current`,
1448 failure: response => Ext.Msg.alert('Error', response.htmlStatus),
e3129443 1449 success: function(response, opts) {
bd9537d7 1450 let conf = response.result.data;
4d739f4a 1451 let consoles = {
bd9537d7
TL
1452 spice: !!conf.spice,
1453 xtermjs: !!conf.serial,
54453c38
DC
1454 };
1455 PVE.Utils.openDefaultConsoleWindow(consoles, 'kvm', vmid, nodename, vmname);
f6710aac 1456 },
e3129443
DC
1457 });
1458 } else if (record.data.type === 'lxc' && !record.data.template) {
1459 PVE.Utils.openDefaultConsoleWindow(true, 'lxc', vmid, nodename, vmname);
1460 }
1461 },
1462
fbd60cfd
DM
1463 // test automation helper
1464 call_menu_handler: function(menu, text) {
4d739f4a
TL
1465 let item = menu.query('menuitem').find(el => el.text === text);
1466 if (item && item.handler) {
1467 item.handler();
1468 }
fbd60cfd
DM
1469 },
1470
685b7aa4
DC
1471 createCmdMenu: function(v, record, item, index, event) {
1472 event.stopEvent();
cc1a91be
DC
1473 if (!(v instanceof Ext.tree.View)) {
1474 v.select(record);
1475 }
4d739f4a
TL
1476 let menu;
1477 let type = record.data.type;
685b7aa4 1478
4d739f4a
TL
1479 if (record.data.template) {
1480 if (type === 'qemu' || type === 'lxc') {
9bad05bd 1481 menu = Ext.create('PVE.menu.TemplateMenu', {
f6710aac 1482 pveSelNode: record,
9bad05bd
DC
1483 });
1484 }
4d739f4a 1485 } else if (type === 'qemu' || type === 'lxc' || type === 'node') {
9bad05bd
DC
1486 menu = Ext.create('PVE.' + type + '.CmdMenu', {
1487 pveSelNode: record,
f6710aac 1488 nodename: record.data.node,
c11ab8cb 1489 });
685b7aa4 1490 } else {
4d739f4a 1491 return undefined;
685b7aa4
DC
1492 }
1493
1494 menu.showAt(event.getXY());
9f0b4e04 1495 return menu;
e7ade592 1496 },
9fa2e36d 1497
fe4f00ad
TL
1498 // helper for deleting field which are set to there default values
1499 delete_if_default: function(values, fieldname, default_val, create) {
1500 if (values[fieldname] === '' || values[fieldname] === default_val) {
1501 if (!create) {
399ffa76
TL
1502 if (values.delete) {
1503 if (Ext.isArray(values.delete)) {
1504 values.delete.push(fieldname);
2db8e90d 1505 } else {
399ffa76 1506 values.delete += ',' + fieldname;
2db8e90d 1507 }
fe4f00ad 1508 } else {
399ffa76 1509 values.delete = fieldname;
fe4f00ad
TL
1510 }
1511 }
1512
1513 delete values[fieldname];
1514 }
857b97a7
TL
1515 },
1516
1517 loadSSHKeyFromFile: function(file, callback) {
37f2e82c
TL
1518 // ssh-keygen produces ~ 740 bytes for a 4096 bit RSA key, current max is 16 kbit, so assume:
1519 // 740 * 8 for max. 32kbit (5920 bytes), round upwards to 8192 bytes, leaves lots of comment space
1520 PVE.Utils.loadFile(file, callback, 8192);
1521 },
1522
1523 loadFile: function(file, callback, maxSize) {
1524 maxSize = maxSize || 32 * 1024;
1525 if (file.size > maxSize) {
1526 Ext.Msg.alert(gettext('Error'), `${gettext("Invalid file size")}: ${file.size} > ${maxSize}`);
857b97a7
TL
1527 return;
1528 }
4d739f4a 1529 let reader = new FileReader();
37f2e82c 1530 reader.onload = evt => callback(evt.target.result);
857b97a7 1531 reader.readAsText(file);
abe824aa
DC
1532 },
1533
7dda153c
TL
1534 loadTextFromFile: function(file, callback, maxBytes) {
1535 let maxSize = maxBytes || 8192;
1536 if (file.size > maxSize) {
1537 Ext.Msg.alert(gettext('Error'), gettext("Invalid file size: ") + file.size);
1538 return;
1539 }
7dda153c
TL
1540 let reader = new FileReader();
1541 reader.onload = evt => callback(evt.target.result);
1542 reader.readAsText(file);
1543 },
1544
8c4ec8c7
TL
1545 diskControllerMaxIDs: {
1546 ide: 4,
1547 sata: 6,
cf0d139e 1548 scsi: 31,
8c4ec8c7
TL
1549 virtio: 16,
1550 },
abe824aa
DC
1551
1552 // types is either undefined (all busses), an array of busses, or a single bus
1553 forEachBus: function(types, func) {
4d739f4a 1554 let busses = Object.keys(PVE.Utils.diskControllerMaxIDs);
abe824aa
DC
1555
1556 if (Ext.isArray(types)) {
1557 busses = types;
1558 } else if (Ext.isDefined(types)) {
8058410f 1559 busses = [types];
abe824aa
DC
1560 }
1561
1562 // check if we only have valid busses
4d739f4a 1563 for (let i = 0; i < busses.length; i++) {
8c4ec8c7 1564 if (!PVE.Utils.diskControllerMaxIDs[busses[i]]) {
abe824aa
DC
1565 throw "invalid bus: '" + busses[i] + "'";
1566 }
1567 }
1568
4d739f4a
TL
1569 for (let i = 0; i < busses.length; i++) {
1570 let count = PVE.Utils.diskControllerMaxIDs[busses[i]];
1571 for (let j = 0; j < count; j++) {
1572 let cont = func(busses[i], j);
abe824aa
DC
1573 if (!cont && cont !== undefined) {
1574 return;
1575 }
1576 }
1577 }
14a845bc
DC
1578 },
1579
4d739f4a
TL
1580 mp_counts: {
1581 mps: 256,
1582 unused: 256,
1583 },
14a845bc
DC
1584
1585 forEachMP: function(func, includeUnused) {
4d739f4a
TL
1586 for (let i = 0; i < PVE.Utils.mp_counts.mps; i++) {
1587 let cont = func('mp', i);
14a845bc
DC
1588 if (!cont && cont !== undefined) {
1589 return;
1590 }
1591 }
1592
1593 if (!includeUnused) {
1594 return;
1595 }
1596
4d739f4a
TL
1597 for (let i = 0; i < PVE.Utils.mp_counts.unused; i++) {
1598 let cont = func('unused', i);
14a845bc
DC
1599 if (!cont && cont !== undefined) {
1600 return;
1601 }
1602 }
b945c7c1
TM
1603 },
1604
6c1d8ead 1605 hardware_counts: { net: 32, usb: 5, hostpci: 16, audio: 1, efidisk: 1, serial: 4, rng: 1 },
9d855398 1606
8058410f 1607 cleanEmptyObjectKeys: function(obj) {
4d739f4a
TL
1608 for (const propName of Object.keys(obj)) {
1609 if (obj[propName] === null || obj[propName] === undefined) {
1610 delete obj[propName];
b945c7c1
TM
1611 }
1612 }
4616a55b
TM
1613 },
1614
eadbbb4a
DC
1615 acmedomain_count: 5,
1616
1617 add_domain_to_acme: function(acme, domain) {
1618 if (acme.domains === undefined) {
1619 acme.domains = [domain];
1620 } else {
1621 acme.domains.push(domain);
8058410f 1622 acme.domains = acme.domains.filter((value, index, self) => self.indexOf(value) === index);
eadbbb4a
DC
1623 }
1624 return acme;
1625 },
1626
1627 remove_domain_from_acme: function(acme, domain) {
1628 if (acme.domains !== undefined) {
4d739f4a
TL
1629 acme.domains = acme
1630 .domains
1631 .filter((value, index, self) => self.indexOf(value) === index && value !== domain);
eadbbb4a
DC
1632 }
1633 return acme;
1634 },
1635
4d739f4a
TL
1636 handleStoreErrorOrMask: function(view, store, regex, callback) {
1637 view.mon(store, 'load', function(proxy, response, success, operation) {
4616a55b 1638 if (success) {
4d739f4a 1639 Proxmox.Utils.setErrorMask(view, false);
4616a55b
TM
1640 return;
1641 }
4d739f4a 1642 let msg;
4616a55b
TM
1643 if (operation.error.statusText) {
1644 if (operation.error.statusText.match(regex)) {
4d739f4a 1645 callback(view, operation.error);
4616a55b
TM
1646 return;
1647 } else {
1648 msg = operation.error.statusText + ' (' + operation.error.status + ')';
1649 }
1650 } else {
1651 msg = gettext('Connection error');
1652 }
4d739f4a 1653 Proxmox.Utils.setErrorMask(view, msg);
4616a55b
TM
1654 });
1655 },
1656
8058410f 1657 showCephInstallOrMask: function(container, msg, nodename, callback) {
13786fb0 1658 if (msg.match(/not (installed|initialized)/i)) {
4616a55b
TM
1659 if (Proxmox.UserName === 'root@pam') {
1660 container.el.mask();
8058410f 1661 if (!container.down('pveCephInstallWindow')) {
ef725143 1662 var isInstalled = !!msg.match(/not initialized/i);
4616a55b 1663 var win = Ext.create('PVE.ceph.Install', {
f6710aac 1664 nodename: nodename,
4616a55b 1665 });
f992ef80 1666 win.getViewModel().set('isInstalled', isInstalled);
4616a55b
TM
1667 container.add(win);
1668 win.show();
1669 callback(win);
1670 }
1671 } else {
a7e8b87b
TL
1672 container.mask(Ext.String.format(gettext('{0} not installed.') +
1673 ' ' + gettext('Log in as root to install.'), 'Ceph'), ['pve-static-mask']);
4616a55b
TM
1674 }
1675 return true;
1676 } else {
1677 return false;
1678 }
49dfba72
DC
1679 },
1680
13786fb0
TL
1681 monitor_ceph_installed: function(view, rstore, nodename, maskOwnerCt) {
1682 PVE.Utils.handleStoreErrorOrMask(
1683 view,
1684 rstore,
1685 /not (installed|initialized)/i,
1686 (_, error) => {
1687 nodename = nodename || 'localhost';
1688 let maskTarget = maskOwnerCt ? view.ownerCt : view;
1689 rstore.stopUpdate();
1690 PVE.Utils.showCephInstallOrMask(maskTarget, error.statusText, nodename, win => {
1691 view.mon(win, 'cephInstallWindowClosed', () => rstore.startUpdate());
1692 });
1693 },
1694 );
1695 },
1696
1697
49dfba72
DC
1698 propertyStringSet: function(target, source, name, value) {
1699 if (source) {
1700 if (value === undefined) {
1701 target[name] = source;
1702 } else {
1703 target[name] = value;
1704 }
1705 } else {
1706 delete target[name];
1707 }
bbc83309
DC
1708 },
1709
e65817a1
SR
1710 forEachCorosyncLink: function(nodeinfo, cb) {
1711 let re = /(?:ring|link)(\d+)_addr/;
1712 Ext.iterate(nodeinfo, (prop, val) => {
1713 let match = re.exec(prop);
1714 if (match) {
1715 cb(Number(match[1]), val);
1716 }
1717 });
1718 },
4546808c
SR
1719
1720 cpu_vendor_map: {
1721 'default': 'QEMU',
1722 'AuthenticAMD': 'AMD',
f6710aac 1723 'GenuineIntel': 'Intel',
4546808c
SR
1724 },
1725
1726 cpu_vendor_order: {
1727 "AMD": 1,
1728 "Intel": 2,
1729 "QEMU": 3,
1730 "Host": 4,
1731 "_default_": 5, // includes custom models
1732 },
5865b597
WB
1733
1734 verify_ip64_address_list: function(value, with_suffix) {
1735 for (let addr of value.split(/[ ,;]+/)) {
1736 if (addr === '') {
1737 continue;
1738 }
1739
1740 if (with_suffix) {
1741 let parts = addr.split('%');
1742 addr = parts[0];
1743
1744 if (parts.length > 2) {
1745 return false;
1746 }
1747
1748 if (parts.length > 1 && !addr.startsWith('fe80:')) {
1749 return false;
1750 }
1751 }
1752
1753 if (!Proxmox.Utils.IP64_match.test(addr)) {
1754 return false;
1755 }
1756 }
1757
1758 return true;
1759 },
2aa645da
DC
1760
1761 sortByPreviousUsage: function(vmconfig, controllerList) {
1762 if (!controllerList) {
1763 controllerList = ['ide', 'virtio', 'scsi', 'sata'];
1764 }
1765 let usedControllers = {};
1766 for (const type of Object.keys(PVE.Utils.diskControllerMaxIDs)) {
1767 usedControllers[type] = 0;
1768 }
1769
1770 for (const property of Object.keys(vmconfig)) {
1771 if (property.match(PVE.Utils.bus_match) && !vmconfig[property].match(/media=cdrom/)) {
1772 const foundController = property.match(PVE.Utils.bus_match)[1];
1773 usedControllers[foundController]++;
1774 }
1775 }
1776
1777 let sortPriority = PVE.qemu.OSDefaults.getDefaults(vmconfig.ostype).busPriority;
1778
1779 let sortedList = Ext.clone(controllerList);
1780 sortedList.sort(function(a, b) {
1781 if (usedControllers[b] === usedControllers[a]) {
1782 return sortPriority[b] - sortPriority[a];
1783 }
1784 return usedControllers[b] - usedControllers[a];
1785 });
1786
1787 return sortedList;
1788 },
1789
1790 nextFreeDisk: function(controllers, config) {
1791 for (const controller of controllers) {
1792 for (let i = 0; i < PVE.Utils.diskControllerMaxIDs[controller]; i++) {
1793 let confid = controller + i.toString();
1794 if (!Ext.isDefined(config[confid])) {
1795 return {
1796 controller,
1797 id: i,
1798 confid,
1799 };
1800 }
1801 }
1802 }
1803
1804 return undefined;
1805 },
e7ade592 1806},
fe4f00ad 1807
9fa2e36d
EK
1808 singleton: true,
1809 constructor: function() {
1810 var me = this;
1811 Ext.apply(me, me.utilities);
d18e15dd
DC
1812
1813 Proxmox.Utils.override_task_descriptions({
1814 acmedeactivate: ['ACME Account', gettext('Deactivate')],
1815 acmenewcert: ['SRV', gettext('Order Certificate')],
1816 acmerefresh: ['ACME Account', gettext('Refresh')],
1817 acmeregister: ['ACME Account', gettext('Register')],
1818 acmerenew: ['SRV', gettext('Renew Certificate')],
1819 acmerevoke: ['SRV', gettext('Revoke Certificate')],
1820 acmeupdate: ['ACME Account', gettext('Update')],
1821 'auth-realm-sync': [gettext('Realm'), gettext('Sync')],
1822 'auth-realm-sync-test': [gettext('Realm'), gettext('Sync Preview')],
1823 cephcreatemds: ['Ceph Metadata Server', gettext('Create')],
1824 cephcreatemgr: ['Ceph Manager', gettext('Create')],
1825 cephcreatemon: ['Ceph Monitor', gettext('Create')],
1826 cephcreateosd: ['Ceph OSD', gettext('Create')],
1827 cephcreatepool: ['Ceph Pool', gettext('Create')],
1828 cephdestroymds: ['Ceph Metadata Server', gettext('Destroy')],
1829 cephdestroymgr: ['Ceph Manager', gettext('Destroy')],
1830 cephdestroymon: ['Ceph Monitor', gettext('Destroy')],
1831 cephdestroyosd: ['Ceph OSD', gettext('Destroy')],
1832 cephdestroypool: ['Ceph Pool', gettext('Destroy')],
1833 cephfscreate: ['CephFS', gettext('Create')],
f9f81a01
TL
1834 cephsetpool: ['Ceph Pool', gettext('Edit')],
1835 cephsetflags: ['', gettext('Change global Ceph flags')],
d18e15dd
DC
1836 clustercreate: ['', gettext('Create Cluster')],
1837 clusterjoin: ['', gettext('Join Cluster')],
1838 dircreate: [gettext('Directory Storage'), gettext('Create')],
1839 dirremove: [gettext('Directory'), gettext('Remove')],
79035e5a 1840 download: [gettext('File'), gettext('Download')],
d18e15dd
DC
1841 hamigrate: ['HA', gettext('Migrate')],
1842 hashutdown: ['HA', gettext('Shutdown')],
1843 hastart: ['HA', gettext('Start')],
1844 hastop: ['HA', gettext('Stop')],
1845 imgcopy: ['', gettext('Copy data')],
1846 imgdel: ['', gettext('Erase data')],
1847 lvmcreate: [gettext('LVM Storage'), gettext('Create')],
1848 lvmthincreate: [gettext('LVM-Thin Storage'), gettext('Create')],
1849 migrateall: ['', gettext('Migrate all VMs and Containers')],
1850 'move_volume': ['CT', gettext('Move Volume')],
fe66076f 1851 'pbs-download': ['VM/CT', gettext('File Restore Download')],
d18e15dd
DC
1852 pull_file: ['CT', gettext('Pull file')],
1853 push_file: ['CT', gettext('Push file')],
1854 qmclone: ['VM', gettext('Clone')],
1855 qmconfig: ['VM', gettext('Configure')],
1856 qmcreate: ['VM', gettext('Create')],
1857 qmdelsnapshot: ['VM', gettext('Delete Snapshot')],
1858 qmdestroy: ['VM', gettext('Destroy')],
1859 qmigrate: ['VM', gettext('Migrate')],
1860 qmmove: ['VM', gettext('Move disk')],
1861 qmpause: ['VM', gettext('Pause')],
1862 qmreboot: ['VM', gettext('Reboot')],
1863 qmreset: ['VM', gettext('Reset')],
1864 qmrestore: ['VM', gettext('Restore')],
1865 qmresume: ['VM', gettext('Resume')],
1866 qmrollback: ['VM', gettext('Rollback')],
1867 qmshutdown: ['VM', gettext('Shutdown')],
1868 qmsnapshot: ['VM', gettext('Snapshot')],
1869 qmstart: ['VM', gettext('Start')],
1870 qmstop: ['VM', gettext('Stop')],
1871 qmsuspend: ['VM', gettext('Hibernate')],
1872 qmtemplate: ['VM', gettext('Convert to template')],
1873 spiceproxy: ['VM/CT', gettext('Console') + ' (Spice)'],
1874 spiceshell: ['', gettext('Shell') + ' (Spice)'],
1875 startall: ['', gettext('Start all VMs and Containers')],
1876 stopall: ['', gettext('Stop all VMs and Containers')],
1877 unknownimgdel: ['', gettext('Destroy image from unknown guest')],
4d60651f 1878 wipedisk: ['Device', gettext('Wipe Disk')],
d18e15dd
DC
1879 vncproxy: ['VM/CT', gettext('Console')],
1880 vncshell: ['', gettext('Shell')],
1881 vzclone: ['CT', gettext('Clone')],
1882 vzcreate: ['CT', gettext('Create')],
1883 vzdelsnapshot: ['CT', gettext('Delete Snapshot')],
1884 vzdestroy: ['CT', gettext('Destroy')],
1885 vzdump: (type, id) => id ? `VM/CT ${id} - ${gettext('Backup')}` : gettext('Backup Job'),
1886 vzmigrate: ['CT', gettext('Migrate')],
1887 vzmount: ['CT', gettext('Mount')],
1888 vzreboot: ['CT', gettext('Reboot')],
1889 vzrestore: ['CT', gettext('Restore')],
1890 vzresume: ['CT', gettext('Resume')],
1891 vzrollback: ['CT', gettext('Rollback')],
1892 vzshutdown: ['CT', gettext('Shutdown')],
1893 vzsnapshot: ['CT', gettext('Snapshot')],
1894 vzstart: ['CT', gettext('Start')],
1895 vzstop: ['CT', gettext('Stop')],
1896 vzsuspend: ['CT', gettext('Suspend')],
1897 vztemplate: ['CT', gettext('Convert to template')],
1898 vzumount: ['CT', gettext('Unmount')],
1899 zfscreate: [gettext('ZFS Storage'), gettext('Create')],
1900 });
f6710aac 1901 },
e7ade592 1902
9fa2e36d 1903});