]> git.proxmox.com Git - pve-manager.git/blob - www/manager6/qemu/Config.js
ext6migrate: enable some qemu tabs
[pve-manager.git] / www / manager6 / qemu / Config.js
1 Ext.define('PVE.qemu.Config', {
2 extend: 'PVE.panel.Config',
3 alias: 'widget.PVE.qemu.Config',
4
5 initComponent: function() {
6 var me = this;
7
8 var nodename = me.pveSelNode.data.node;
9 if (!nodename) {
10 throw "no node name specified";
11 }
12
13 var vmid = me.pveSelNode.data.vmid;
14 if (!vmid) {
15 throw "no VM ID specified";
16 }
17
18 var template = me.pveSelNode.data.template;
19
20 var caps = Ext.state.Manager.get('GuiCap');
21
22 var base_url = '/nodes/' + nodename + "/qemu/" + vmid;
23
24 me.statusStore = Ext.create('PVE.data.ObjectStore', {
25 url: '/api2/json' + base_url + '/status/current',
26 interval: 1000
27 });
28
29 var vm_command = function(cmd, params) {
30 PVE.Utils.API2Request({
31 params: params,
32 url: base_url + '/status/' + cmd,
33 waitMsgTarget: me,
34 method: 'POST',
35 failure: function(response, opts) {
36 Ext.Msg.alert('Error', response.htmlStatus);
37 }
38 });
39 };
40
41 var resumeBtn = Ext.create('Ext.Button', {
42 text: gettext('Resume'),
43 disabled: !caps.vms['VM.PowerMgmt'],
44 visible: false,
45 handler: function() {
46 vm_command('resume');
47 }
48 });
49
50 var startBtn = Ext.create('Ext.Button', {
51 text: gettext('Start'),
52 disabled: !caps.vms['VM.PowerMgmt'],
53 handler: function() {
54 vm_command('start');
55 }
56 });
57
58 var stopBtn = Ext.create('PVE.button.Button', {
59 text: gettext('Stop'),
60 disabled: !caps.vms['VM.PowerMgmt'],
61 confirmMsg: Ext.String.format(gettext("Do you really want to stop VM {0}?"), vmid),
62 handler: function() {
63 vm_command("stop", { timeout: 30 });
64 }
65 });
66
67 var migrateBtn = Ext.create('Ext.Button', {
68 text: gettext('Migrate'),
69 disabled: !caps.vms['VM.Migrate'],
70 handler: function() {
71 var win = Ext.create('PVE.window.Migrate', {
72 vmtype: 'qemu',
73 nodename: nodename,
74 vmid: vmid
75 });
76 win.show();
77 }
78 });
79
80 var resetBtn = Ext.create('PVE.button.Button', {
81 text: gettext('Reset'),
82 disabled: !caps.vms['VM.PowerMgmt'],
83 confirmMsg: Ext.String.format(gettext("Do you really want to reset VM {0}?"), vmid),
84 handler: function() {
85 vm_command("reset");
86 }
87 });
88
89 var shutdownBtn = Ext.create('PVE.button.Button', {
90 text: gettext('Shutdown'),
91 disabled: !caps.vms['VM.PowerMgmt'],
92 confirmMsg: Ext.String.format(gettext("Do you really want to shutdown VM {0}?"), vmid),
93 handler: function() {
94 vm_command('shutdown');
95 }
96 });
97
98 var removeBtn = Ext.create('PVE.button.Button', {
99 text: gettext('Remove'),
100 disabled: !caps.vms['VM.Allocate'],
101 dangerous: true,
102 confirmMsg: Ext.String.format(gettext('Are you sure you want to remove VM {0}? This will permanently erase all VM data.'), vmid),
103 handler: function() {
104 PVE.Utils.API2Request({
105 url: base_url,
106 method: 'DELETE',
107 waitMsgTarget: me,
108 failure: function(response, opts) {
109 Ext.Msg.alert('Error', response.htmlStatus);
110 }
111 });
112 }
113 });
114
115 var vmname = me.pveSelNode.data.name;
116
117 var consoleBtn = Ext.create('PVE.button.ConsoleButton', {
118 disabled: !caps.vms['VM.Console'],
119 consoleType: 'kvm',
120 consoleName: vmname,
121 nodename: nodename,
122 vmid: vmid
123 });
124
125 var descr = vmid + " (" + (vmname ? "'" + vmname + "' " : "'VM " + vmid + "'") + ")";
126
127 Ext.apply(me, {
128 title: Ext.String.format(gettext("Virtual Machine {0} on node {1}"), descr, "'" + nodename + "'"),
129 hstateid: 'kvmtab',
130 tbar: [ resumeBtn, startBtn, shutdownBtn, stopBtn, resetBtn,
131 removeBtn, migrateBtn, consoleBtn],
132 defaults: { statusStore: me.statusStore },
133 items: [
134 {
135 title: gettext('Summary'),
136 xtype: 'pveQemuSummary',
137 itemId: 'summary'
138 },
139 {
140 title: gettext('Hardware'),
141 itemId: 'hardware',
142 xtype: 'PVE.qemu.HardwareView'
143 },
144 {
145 title: gettext('Options'),
146 itemId: 'options',
147 xtype: 'PVE.qemu.Options'
148 },
149 {
150 title: gettext('Task History'),
151 itemId: 'tasks',
152 xtype: 'pveNodeTasks',
153 vmidFilter: vmid
154 }
155 ]
156 });
157
158 if (caps.vms['VM.Monitor'] && !template) {
159 me.items.push({
160 title: gettext('Monitor'),
161 itemId: 'monitor',
162 xtype: 'pveQemuMonitor'
163 });
164 }
165
166 if (caps.vms['VM.Backup']) {
167 me.items.push({
168 title: gettext('Backup'),
169 xtype: 'pveBackupView',
170 itemId: 'backup'
171 });
172 }
173
174 if (caps.vms['VM.Snapshot']) {
175 me.items.push({
176 title: gettext('Snapshots'),
177 xtype: 'pveQemuSnapshotTree',
178 itemId: 'snapshot'
179 });
180 }
181
182 if (caps.vms['VM.Console'] && !template) {
183 me.items.push({
184 title: gettext('Console'),
185 itemId: 'console',
186 xtype: 'pveNoVncConsole',
187 vmid: vmid,
188 consoleType: 'kvm',
189 nodename: nodename
190 });
191 }
192
193 if (caps.vms['VM.Console']) {
194 me.items.push(
195 {
196 xtype: 'pveFirewallPanel',
197 title: gettext('Firewall'),
198 base_url: base_url + '/firewall',
199 fwtype: 'vm',
200 phstateid: me.hstateid,
201 itemId: 'firewall'
202 }
203 );
204 }
205
206 if (caps.vms['Permissions.Modify']) {
207 me.items.push({
208 xtype: 'pveACLView',
209 title: gettext('Permissions'),
210 itemId: 'permissions',
211 path: '/vms/' + vmid
212 });
213 }
214
215 me.callParent();
216
217 me.mon(me.statusStore, 'load', function(s, records, success) {
218 var status;
219 var qmpstatus;
220 var spice = false;
221
222 if (!success) {
223 me.workspace.checkVmMigration(me.pveSelNode);
224 status = qmpstatus = 'unknown';
225 } else {
226 var rec = s.data.get('status');
227 status = rec ? rec.data.value : 'unknown';
228 rec = s.data.get('qmpstatus');
229 qmpstatus = rec ? rec.data.value : 'unknown';
230 rec = s.data.get('template');
231 if(rec.data.value){
232 template = rec.data.value;
233 }
234 spice = s.data.get('spice') ? true : false;
235
236 }
237
238 if (qmpstatus === 'prelaunch' || qmpstatus === 'paused') {
239 startBtn.setVisible(false);
240 resumeBtn.setVisible(true);
241 } else {
242 startBtn.setVisible(true);
243 resumeBtn.setVisible(false);
244 }
245
246 consoleBtn.setEnableSpice(spice);
247
248 startBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status === 'running' || template);
249 resetBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status !== 'running' || template);
250 shutdownBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status !== 'running');
251 stopBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status === 'stopped');
252 removeBtn.setDisabled(!caps.vms['VM.Allocate'] || status !== 'stopped');
253 });
254
255 me.on('afterrender', function() {
256 me.statusStore.startUpdate();
257 });
258
259 me.on('destroy', function() {
260 me.statusStore.stopUpdate();
261 });
262 }
263 });