]> git.proxmox.com Git - pve-manager.git/blame - www/manager6/qemu/AgentIPView.js
API2: Network: add vlan-raw-device && vlan-id options.
[pve-manager.git] / www / manager6 / qemu / AgentIPView.js
CommitLineData
e7f07a2e
DC
1Ext.define('PVE.window.IPInfo', {
2 extend: 'Ext.window.Window',
3 width: 600,
4 title: gettext('Guest Agent Network Information'),
5 height: 300,
6 layout: {
7 type: 'fit'
8 },
9 modal: true,
10 items: [
11 {
12 xtype: 'grid',
3098f188 13 store: {},
e7f07a2e
DC
14 emptyText: gettext('No network information'),
15 columns: [
16 {
17 dataIndex: 'name',
18 text: gettext('Name'),
19 flex: 3
20 },
21 {
22 dataIndex: 'hardware-address',
23 text: gettext('MAC address'),
24 width: 140
25 },
26 {
27 dataIndex: 'ip-addresses',
28 text: gettext('IP address'),
29 align: 'right',
30 flex: 4,
31 renderer: function(val) {
32 if (!Ext.isArray(val)) {
33 return '';
34 }
35 var ips = [];
36 val.forEach(function(ip) {
37 var addr = ip['ip-address'];
38 var pref = ip.prefix;
39 if (addr && pref) {
40 ips.push(addr + '/' + pref);
41 }
42 });
43 return ips.join('<br>');
44 }
45 }
46 ]
47 }
48 ]
49});
50
51Ext.define('PVE.qemu.AgentIPView', {
52 extend: 'Ext.container.Container',
53 xtype: 'pveAgentIPView',
54
55 layout: {
56 type: 'hbox',
57 align: 'top'
58 },
59
60 nics: [],
61
62 items: [
63 {
64 xtype: 'box',
65 html: '<i class="fa fa-exchange"></i> IPs'
66 },
67 {
68 xtype: 'container',
69 flex: 1,
70 layout: {
71 type: 'vbox',
72 align: 'right',
73 pack: 'end'
74 },
75 items: [
76 {
77 xtype: 'label',
78 flex: 1,
79 itemId: 'ipBox',
80 style: {
81 'text-align': 'right'
82 }
83 },
84 {
85 xtype: 'button',
86 itemId: 'moreBtn',
87 hidden: true,
88 ui: 'default-toolbar',
89 handler: function(btn) {
90 var me = this.up('pveAgentIPView');
91
92 var win = Ext.create('PVE.window.IPInfo');
93 win.down('grid').getStore().setData(me.nics);
94 win.show();
95 },
96 text: gettext('More')
97 }
98 ]
99 }
100 ],
101
102 getDefaultIps: function(nics) {
103 var me = this;
104 var ips = [];
105 nics.forEach(function(nic) {
106 if (nic['hardware-address'] &&
107 nic['hardware-address'] != '00:00:00:00:00:00') {
108
109 var nic_ips = nic['ip-addresses'] || [];
110 nic_ips.forEach(function(ip) {
111 var p = ip['ip-address'];
112 // show 2 ips at maximum
113 if (ips.length < 2) {
114 ips.push(p);
115 }
116 });
117 }
118 });
119
120 return ips;
121 },
122
123 startIPStore: function(store, records, success) {
124 var me = this;
125 var agentRec = store.getById('agent');
126 /*jslint confusion: true*/
127 /* value is number and string */
128 me.agent = (agentRec && agentRec.data.value === 1);
129 me.running = (store.getById('status').data.value === 'running');
130 /*jslint confusion: false*/
131
5fa6f320
DC
132 var caps = Ext.state.Manager.get('GuiCap');
133
134 if (!caps.vms['VM.Monitor']) {
135 var errorText = gettext("Requires '{0}' Privileges");
136 me.updateStatus(false, Ext.String.format(errorText, 'VM.Monitor'));
137 return;
138 }
139
e7f07a2e
DC
140 if (me.agent && me.running && me.ipStore.isStopped) {
141 me.ipStore.startUpdate();
2283cff3
DC
142 } else if (me.ipStore.isStopped) {
143 me.updateStatus();
e7f07a2e 144 }
e7f07a2e
DC
145 },
146
5fa6f320 147 updateStatus: function(unsuccessful, defaulttext) {
e7f07a2e 148 var me = this;
5fa6f320 149 var text = defaulttext || gettext('No network information');
e7f07a2e
DC
150 var more = false;
151 if (unsuccessful) {
152 text = gettext('Guest Agent not running');
153 } else if (me.agent && me.running) {
203829c7 154 if (Ext.isArray(me.nics) && me.nics.length) {
e7f07a2e
DC
155 more = true;
156 var ips = me.getDefaultIps(me.nics);
157 if (ips.length !== 0) {
158 text = ips.join('<br>');
159 }
160 } else if (me.nics && me.nics.error) {
161 var msg = gettext('Cannot get info from Guest Agent<br>Error: {0}');
162 text = Ext.String.format(text, me.nics.error.desc);
163 }
164 } else if (me.agent) {
165 text = gettext('Guest Agent not running');
166 } else {
167 text = gettext('No Guest Agent configured');
168 }
169
170 var ipBox = me.down('#ipBox');
171 ipBox.update(text);
172
173 var moreBtn = me.down('#moreBtn');
174 moreBtn.setVisible(more);
175 },
176
177 initComponent: function() {
178 var me = this;
179
180 if (!me.rstore) {
181 throw 'rstore not given';
182 }
183
184 if (!me.pveSelNode) {
185 throw 'pveSelNode not given';
186 }
187
188 var nodename = me.pveSelNode.data.node;
189 var vmid = me.pveSelNode.data.vmid;
190
191 me.ipStore = Ext.create('Proxmox.data.UpdateStore', {
192 interval: 10000,
193 storeid: 'pve-qemu-agent-' + vmid,
194 method: 'POST',
195 proxy: {
196 type: 'proxmox',
197 url: '/api2/json/nodes/' + nodename + '/qemu/' + vmid + '/agent/network-get-interfaces'
198 }
199 });
200
201 me.callParent();
202
203 me.mon(me.ipStore, 'load', function(store, records, success) {
204 if (records && records.length) {
205 me.nics = records[0].data.result;
206 } else {
207 me.nics = undefined;
208 }
209 me.updateStatus(!success);
210 });
211
212 me.on('destroy', me.ipStore.stopUpdate);
213
214 // if we already have info about the vm, use it immediately
215 if (me.rstore.getCount()) {
216 me.startIPStore(me.rstore, me.rstore.getData(), false);
217 }
218
219 // check if the guest agent is there on every statusstore load
220 me.mon(me.rstore, 'load', me.startIPStore, me);
221 }
222});