modules/admin-full: xhr fixes
[project/luci.git] / modules / admin-full / luasrc / view / admin_network / iface_overview.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2010 Jo-Philipp Wich <xm@subsignal.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 $Id$
12
13 -%>
14
15 <%-
16 local ntm = require "luci.model.network".init()
17
18 local net
19 local netlist = { }
20 for _, net in ipairs(ntm:get_networks()) do
21 if net:name() ~= "loopback" then
22 netlist[#netlist+1] = net:name()
23 end
24 end
25 -%>
26
27 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
28 <script type="text/javascript"><![CDATA[
29 function iface_shutdown(id, reconnect) {
30 if (!reconnect && !confirm(String.format('<%_Really shutdown interface "%s" ?\nYou might loose access to this router if you are connected via this interface.%>', id)))
31 return;
32
33 var a = document.getElementById(id + '-ifc-addrs');
34 if (a)
35 a.innerHTML = reconnect
36 ? '<em><%:Interface is reconnecting...%></em>'
37 : '<em><%:Interface is shutting down...%></em>';
38
39 var s = document.getElementById('ifc-rc-status');
40 if (s)
41 {
42 s.parentNode.style.display = 'block';
43 s.innerHTML = '<%:Waiting for router...%>';
44 }
45
46 var rcxhr = new XHR();
47 rcxhr.get('<%=luci.dispatcher.build_url("admin", "network")%>/iface_' + (reconnect ? 'reconnect' : 'shutdown') + '/' + id, null,
48 function(x)
49 {
50 if (s)
51 {
52 s.innerHTML = reconnect
53 ? '<%:Interface reconnected%>'
54 : '<%:Interface shut down%>';
55
56 window.setTimeout(function() {
57 s.parentNode.style.display = 'none';
58 }, 1000);
59 }
60 }
61 );
62 }
63
64
65 var iwxhr = new XHR();
66 var wifidevs = <%=luci.http.write_json(netdevs)%>;
67 var arptable = <%=luci.http.write_json(arpcache)%>;
68
69 var update_status = function() {
70 iwxhr.get('<%=luci.dispatcher.build_url("admin", "network", "iface_status", table.concat(netlist, ","))%>', null,
71 function(x, ifcs)
72 {
73 if (ifcs)
74 {
75 for (var i = 0; i < ifcs.length; i++)
76 {
77 var ifc = ifcs[i];
78 var is_up = (ifc.flags && ifc.flags.up);
79 var rxb = ifc.stats ? (ifc.stats["rx_bytes"] / 1024) : 0;
80 var txb = ifc.stats ? (ifc.stats["tx_bytes"] / 1024) : 0;
81 var rxp = ifc.stats ? ifc.stats["rx_packets"] : 0;
82 var txp = ifc.stats ? ifc.stats["tx_packets"] : 0;
83 var mac = ifc.macaddr ? ifc.macaddr : '00:00:00:00:00:00';
84
85 var icon;
86 if (is_up)
87 icon = "<%=resource%>/icons/ethernet.png";
88 else
89 icon = "<%=resource%>/icons/ethernet_disabled.png";
90
91 var s = document.getElementById(ifc.id + '-ifc-signal');
92 if (s)
93 {
94 s.innerHTML = String.format(
95 '<img src="%s" style="width:16px; height:16px" /><br />' +
96 '<small>%s</small>',
97 icon, ifc.ifname ? ifc.ifname : '?'
98 );
99 }
100
101 var m = document.getElementById(ifc.id + '-ifc-mac');
102 if (m)
103 {
104 m.innerHTML = mac.toUpperCase();
105 }
106
107 var a = document.getElementById(ifc.id + '-ifc-addrs');
108 if (a)
109 {
110 if (ifc.ifname)
111 {
112 a.innerHTML = '';
113
114 if (ifc.ipaddrs && ifc.ipaddrs.length)
115 {
116 a.innerHTML += '<strong><%:IPv4%>: </strong>';
117
118 for (var j = 0; j < ifc.ipaddrs.length; j++)
119 a.innerHTML += String.format(
120 '%s%s/%d',
121 j ? ', ' : '',
122 ifc.ipaddrs[j].addr,
123 ifc.ipaddrs[j].prefix
124 );
125
126 a.innerHTML += '<br />';
127 }
128
129 if (ifc.ip6addrs && ifc.ip6addrs.length)
130 {
131 a.innerHTML += '<strong><%:IPv6%>: </strong>';
132
133 for (var j = 0; j < ifc.ip6addrs.length; j++)
134 a.innerHTML += String.format(
135 '%s%s/%d',
136 j ? ', ' : '',
137 ifc.ip6addrs[j].addr.toUpperCase(),
138 ifc.ip6addrs[j].prefix
139 );
140
141 a.innerHTML += '<br />';
142 }
143
144 if (!a.innerHTML)
145 a.innerHTML = '<em><%:No address configured on this interface.%></em>'
146 }
147 else
148 {
149 a.innerHTML = '<em><%:Interface not present or not connected yet.%></em>';
150 }
151 }
152
153 var t = document.getElementById(ifc.id + '-ifc-transfer');
154 if (t)
155 {
156 t.innerHTML = String.format(
157 '<strong><%:RX%></strong>: %.2f <%:KB%> (%d <%:Pkts.%>)<br />' +
158 '<strong><%:TX%></strong>: %.2f <%:KB%> (%d <%:Pkts.%>)<br />',
159 txb, txp, rxb, rxp
160 );
161 }
162 }
163 }
164
165 window.setTimeout(update_status, 5000);
166 }
167 )
168 };
169
170 update_status();
171 ]]></script>
172
173 <fieldset class="cbi-section" style="display:none">
174 <legend><%:Reconnecting interface%></legend>
175 <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" />
176 <span id="ifc-rc-status"><%:Waiting for router...%></span>
177 </fieldset>
178
179 <div class="cbi-map">
180 <fieldset class="cbi-section">
181 <legend><%:Interface Overview%></legend>
182
183 <table class="cbi-section-table" style="margin:10px; empty-cells:hide">
184 <tr class="cbi-section-table-titles">
185 <th class="cbi-section-table-cell">&nbsp;</th>
186 <th class="cbi-section-table-cell"><%:Interface%></th>
187 <th class="cbi-section-table-cell"><%:MAC%></th>
188 <th class="cbi-section-table-cell" style="text-align:left"><%:Addresses%></th>
189 <th class="cbi-section-table-cell" style="text-align:left"><%:Transfer%></th>
190 <th class="cbi-section-table-cell" colspan="2"><%:Actions%></th>
191 </tr>
192 <% for i, net in ipairs(netlist) do %>
193 <tr class="cbi-section-table-row cbi-rowstyle-<%=i % 2 + 1%>">
194 <td>
195 <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net%></span>
196 </td>
197 <td class="cbi-value-field" style="width:16px; padding:3px; text-align:center" id="<%=net%>-ifc-signal">
198 <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br />
199 <small>?</small>
200 </td>
201 <td class="cbi-value-field" id="<%=net%>-ifc-mac">?</td>
202 <td class="cbi-value-field" style="text-align:left; padding:3px" id="<%=net%>-ifc-addrs"><em><%:Collecting data...%></em></td>
203 <td class="cbi-value-field" style="text-align:left; padding:3px" id="<%=net%>-ifc-transfer">
204 <strong><%:RX%></strong>: 0 <%:KB%> (0 <%:Pkts.%>)<br />
205 <strong><%:TX%></strong>: 0 <%:KB%> (0 <%:Pkts.%>)<br />
206 </td>
207 <td>
208 <a href="#" onclick="iface_shutdown('<%=net%>', true)"><img style="border:none" src="<%=resource%>/cbi/reload.gif" alt="<%:Reconnect this interface%>" title="<%:Reconnect this interface%>" /></a>
209 <a href="#" onclick="iface_shutdown('<%=net%>', false)"><img style="border:none" src="<%=resource%>/cbi/reset.gif" alt="<%:Shutdown this interface%>" title="<%:Shutdown this interface%>" /></a>
210 </td>
211 <td>
212 <a href="<%=luci.dispatcher.build_url("admin/network/network", net)%>"><img style="border:none" src="<%=resource%>/cbi/edit.gif" alt="<%:Edit this interface%>" title="<%:Edit this interface%>" /></a>
213 <a href="<%=luci.dispatcher.build_url("admin/network/iface_delete", net)%>" onclick="return confirm('<%:Really delete this interface? The deletion cannot be undone!\nYou might loose access to this router if you are connected via this interface.%>')"><img style="border:none" src="<%=resource%>/cbi/remove.gif" alt="<%:Delete this interface%>" title="<%:Delete this interface%>" /></a>
214 </td>
215 </tr>
216 <% end %>
217 </table>
218
219 <form action="<%=luci.dispatcher.build_url("admin/network/iface_add")%>" method="post">
220 <input type="submit" class="cbi-button cbi-button-add" value="<%:Add new interface...%>" />
221 </form>
222 </fieldset>
223 </div>