]> git.proxmox.com Git - pve-manager.git/blame - www/manager6/qemu/Config.js
use 'refresh' event to reload the grid after the store content has changed
[pve-manager.git] / www / manager6 / qemu / Config.js
CommitLineData
156095db
DM
1Ext.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 {
b70496d6
EK
135 title: gettext('SummaryTODO'),
136 xtype: 'panel',
137// title: gettext('Summary'),
138// xtype: 'pveQemuSummary',
156095db 139 itemId: 'summary'
b70496d6
EK
140 } ]
141 });
142/*
156095db
DM
143 {
144 title: gettext('Hardware'),
145 itemId: 'hardware',
146 xtype: 'PVE.qemu.HardwareView'
147 },
148 {
149 title: gettext('Options'),
150 itemId: 'options',
151 xtype: 'PVE.qemu.Options'
152 },
153 {
154 title: gettext('Task History'),
155 itemId: 'tasks',
156 xtype: 'pveNodeTasks',
157 vmidFilter: vmid
158 }
159 ]
160 });
161
162 if (caps.vms['VM.Monitor'] && !template) {
163 me.items.push({
164 title: gettext('Monitor'),
165 itemId: 'monitor',
166 xtype: 'pveQemuMonitor'
167 });
168 }
169
170 if (caps.vms['VM.Backup']) {
171 me.items.push({
172 title: gettext('Backup'),
173 xtype: 'pveBackupView',
174 itemId: 'backup'
175 });
176 }
177
178 if (caps.vms['VM.Snapshot']) {
179 me.items.push({
180 title: gettext('Snapshots'),
181 xtype: 'pveQemuSnapshotTree',
182 itemId: 'snapshot'
183 });
184 }
185
186 if (caps.vms['VM.Console'] && !template) {
187 me.items.push({
188 title: gettext('Console'),
189 itemId: 'console',
190 xtype: 'pveNoVncConsole',
191 vmid: vmid,
192 consoleType: 'kvm',
193 nodename: nodename
194 });
195 }
196
197 if (caps.vms['VM.Console']) {
198 me.items.push([
199 {
200 xtype: 'pveFirewallPanel',
201 title: gettext('Firewall'),
202 base_url: base_url + '/firewall',
203 fwtype: 'vm',
204 phstateid: me.hstateid,
205 itemId: 'firewall'
206 }
207 ]);
208 }
209
210 if (caps.vms['Permissions.Modify']) {
211 me.items.push({
212 xtype: 'pveACLView',
213 title: gettext('Permissions'),
214 itemId: 'permissions',
215 path: '/vms/' + vmid
216 });
217 }
b70496d6 218*/
156095db
DM
219 me.callParent();
220
221 me.statusStore.on('load', function(s, records, success) {
222 var status;
223 var qmpstatus;
224 var spice = false;
225
226 if (!success) {
227 me.workspace.checkVmMigration(me.pveSelNode);
228 status = qmpstatus = 'unknown';
229 } else {
230 var rec = s.data.get('status');
231 status = rec ? rec.data.value : 'unknown';
232 rec = s.data.get('qmpstatus');
233 qmpstatus = rec ? rec.data.value : 'unknown';
234 rec = s.data.get('template');
235 if(rec.data.value){
236 template = rec.data.value;
237 }
238 spice = s.data.get('spice') ? true : false;
239
240 }
241
242 if (qmpstatus === 'prelaunch' || qmpstatus === 'paused') {
243 startBtn.setVisible(false);
244 resumeBtn.setVisible(true);
245 } else {
246 startBtn.setVisible(true);
247 resumeBtn.setVisible(false);
248 }
249
250 consoleBtn.setEnableSpice(spice);
251
252 startBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status === 'running' || template);
253 resetBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status !== 'running' || template);
254 shutdownBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status !== 'running');
255 stopBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status === 'stopped');
256 removeBtn.setDisabled(!caps.vms['VM.Allocate'] || status !== 'stopped');
257 });
258
259 me.on('afterrender', function() {
260 me.statusStore.startUpdate();
261 });
262
263 me.on('destroy', function() {
264 me.statusStore.stopUpdate();
265 });
266 }
267});