Merge pull request #983 from stangri/luci-app-vpnbypass_makefileFix
[project/luci.git] / modules / luci-mod-admin-full / luasrc / view / admin_network / iface_overview.htm
1 <%#
2  Copyright 2010 Jo-Philipp Wich <jow@openwrt.org>
3  Licensed to the public under the Apache License 2.0.
4 -%>
5
6 <%-
7         local ntm = require "luci.model.network".init()
8         local fwm = require "luci.model.firewall".init()
9
10         local net
11         local ifaces = { }
12         local netlist = { }
13         for _, net in ipairs(ntm:get_networks()) do
14                 if net:name() ~= "loopback" then
15                         local z = fwm:get_zone_by_network(net:name())
16                         ifaces[#ifaces+1] = net:name()
17                         netlist[#netlist+1] = {
18                                 net:name(), z and z:name() or "-", z
19                         }
20                 end
21         end
22
23         table.sort(netlist,
24                 function(a, b)
25                         if a[2] ~= b[2] then
26                                 return a[2] < b[2]
27                         else
28                                 return a[1] < b[1]
29                         end
30                 end)
31 -%>
32
33 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
34 <script type="text/javascript">//<![CDATA[
35         function iface_shutdown(id, reconnect) {
36                 if (!reconnect && !confirm(String.format('<%_Really shutdown interface "%s" ?\nYou might lose access to this device if you are connected via this interface.%>', id)))
37                         return;
38
39                 var d = document.getElementById(id + '-ifc-description');
40                 if (d)
41                         d.innerHTML = reconnect
42                                 ? '<em><%:Interface is reconnecting...%></em>'
43                                 : '<em><%:Interface is shutting down...%></em>';
44
45                 var s = document.getElementById('ifc-rc-status');
46                 if (s)
47                 {
48                         s.parentNode.style.display = 'block';
49                         s.innerHTML = '<%:Waiting for changes to be applied...%>';
50                 }
51
52                 (new XHR()).post('<%=url('admin/network')%>/iface_' + (reconnect ? 'reconnect' : 'shutdown') + '/' + id, { token: '<%=token%>' },
53                         function(x)
54                         {
55                                 if (s)
56                                 {
57                                         s.innerHTML = reconnect
58                                                 ? '<%:Interface reconnected%>'
59                                                 : '<%:Interface shut down%>';
60
61                                         window.setTimeout(function() {
62                                                 s.parentNode.style.display = 'none';
63                                         }, 1000);
64                                 }
65                         }
66                 );
67         }
68
69         function iface_delete(id) {
70                 if (!confirm('<%:Really delete this interface? The deletion cannot be undone!\nYou might lose access to this device if you are connected via this interface.%>'))
71                         return;
72
73                 (new XHR()).post('<%=url('admin/network/iface_delete')%>/' + id, { token: '<%=token%>' },
74                         function(x) {
75                                 location.href = '<%=url('admin/network/network')%>';
76                         }
77                 );
78         }
79
80         var iwxhr = new XHR();
81         var wifidevs = <%=luci.http.write_json(netdevs)%>;
82         var arptable = <%=luci.http.write_json(arpcache)%>;
83
84         XHR.poll(5, '<%=url('admin/network/iface_status', table.concat(ifaces, ","))%>', null,
85                 function(x, ifcs)
86                 {
87                         if (ifcs)
88                         {
89                                 for (var idx = 0; idx < ifcs.length; idx++)
90                                 {
91                                         var ifc = ifcs[idx];
92                                         var html = '';
93
94                                         var s = document.getElementById(ifc.id + '-ifc-devices');
95                                         if (s)
96                                         {
97                                                 var stat = String.format(
98                                                         '<img src="<%=resource%>/icons/%s%s.png" style="width:16px; height:16px; vertical-align:middle" />',
99                                                                 ifc.type,
100                                                                 ifc.is_up ? '' : '_disabled'
101                                                 );
102
103                                                 if (ifc.subdevices && ifc.subdevices.length)
104                                                 {
105                                                         stat += ' <strong>(';
106
107                                                         for (var j = 0; j < ifc.subdevices.length; j++)
108                                                         {
109                                                                 var sif = ifc.subdevices[j];
110
111                                                                 stat += String.format(
112                                                                         '<img src="<%=resource%>/icons/%s%s.png" style="width:16px; height:16px; vertical-align:middle" title="%h" />',
113                                                                                 sif.type,
114                                                                                 sif.is_up ? '' : '_disabled',
115                                                                                 sif.name
116                                                                 );
117                                                         }
118
119                                                         stat += ')</strong>';
120                                                 }
121
122                                                 stat += String.format(
123                                                         '<br /><small>%h</small>',
124                                                                 ifc.name
125                                                 );
126
127                                                 s.innerHTML = stat;
128                                         }
129
130                                         var d = document.getElementById(ifc.id + '-ifc-description');
131                                         if (d && ifc.proto && ifc.ifname)
132                                         {
133                                                 if (ifc.is_up)
134                                                 {
135                                                         html += String.format('<strong><%:Uptime%>:</strong> %t<br />', ifc.uptime);
136                                                 }
137
138                                                 if (ifc.macaddr)
139                                                 {
140                                                         html += String.format('<strong><%:MAC-Address%>:</strong> %s<br />', ifc.macaddr);
141                                                 }
142
143                                                 html += String.format(
144                                                         '<strong><%:RX%></strong>: %.2mB (%d <%:Pkts.%>)<br />' +
145                                                         '<strong><%:TX%></strong>: %.2mB (%d <%:Pkts.%>)<br />',
146                                                                 ifc.rx_bytes, ifc.rx_packets,
147                                                                 ifc.tx_bytes, ifc.tx_packets
148                                                 );
149
150                                                 if (ifc.ipaddrs && ifc.ipaddrs.length)
151                                                 {
152                                                         for (var i = 0; i < ifc.ipaddrs.length; i++)
153                                                                 html += String.format(
154                                                                         '<strong><%:IPv4%>:</strong> %s<br />',
155                                                                         ifc.ipaddrs[i]
156                                                                 );
157                                                 }
158
159                                                 if (ifc.ip6addrs && ifc.ip6addrs.length)
160                                                 {
161                                                         for (var i = 0; i < ifc.ip6addrs.length; i++)
162                                                                 html += String.format(
163                                                                         '<strong><%:IPv6%>:</strong> %s<br />',
164                                                                         ifc.ip6addrs[i]
165                                                                 );
166                                                 }
167                                                 
168                                                 if (ifc.ip6prefix)
169                                                 {
170                                                         html += String.format('<strong><%:IPv6-PD%>:</strong> %s<br />', ifc.ip6prefix);
171                                                 }
172
173                                                 d.innerHTML = html;
174                                         }
175                                         else if (d && !ifc.proto)
176                                         {
177                                                 var e = document.getElementById(ifc.id + '-ifc-edit');
178                                                 if (e)
179                                                         e.disabled = true;
180
181                                                 d.innerHTML = String.format(
182                                                         '<em><%:Unsupported protocol type.%></em><br />' +
183                                                         '<a href="%h"><%:Install protocol extensions...%></a>',
184                                                                 '<%=url("admin/system/packages")%>?query=luci-proto&display=available'
185                                                 );
186                                         }
187                                         else if (d && !ifc.ifname)
188                                         {
189                                                 d.innerHTML = String.format(
190                                                         '<em><%:Network without interfaces.%></em><br />' +
191                                                         '<a href="<%=url("admin/network/network/%s")%>?tab.network.%s=physical"><%:Assign interfaces...%></a>',
192                                                                 ifc.name, ifc.name
193                                                 );
194                                         }
195                                         else if (d)
196                                         {
197                                                 d.innerHTML = '<em><%:Interface not present or not connected yet.%></em>';
198                                         }
199                                 }
200                         }
201                 }
202         );
203 //]]></script>
204
205 <fieldset class="cbi-section" style="display:none">
206         <legend><%:Reconnecting interface%></legend>
207         <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" />
208         <span id="ifc-rc-status"><%:Waiting for changes to be applied...%></span>
209 </fieldset>
210
211 <div class="cbi-map">
212         <fieldset class="cbi-section">
213                 <legend><%:Interface Overview%></legend>
214
215                 <table class="cbi-section-table" style="margin:10px; empty-cells:hide">
216                         <tr class="cbi-section-table-titles">
217                                 <th class="cbi-section-table-cell"><%:Network%></th>
218                                 <th class="cbi-section-table-cell" style="text-align:left"><%:Status%></th>
219                                 <th class="cbi-section-table-cell"><%:Actions%></th>
220                         </tr>
221                         <%
222                                 for i, net in ipairs(netlist) do
223                                         local z = net[3]
224                                         local c = z and z:get_color() or "#EEEEEE"
225                                         local t = z and translate("Part of zone %q" % z:name()) or translate("No zone assigned")
226                         %>
227                                 <tr class="cbi-section-table-row cbi-rowstyle-<%=i % 2 + 1%>">
228                                         <td class="cbi-value-field" style="padding:3px">
229                                                 <div class="ifacebox">
230                                                         <div class="ifacebox-head" style="background-color:<%=c%>" title="<%=pcdata(t)%>">
231                                                                 <strong><%=net[1]:upper()%></strong>
232                                                         </div>
233                                                         <div class="ifacebox-body" id="<%=net[1]%>-ifc-devices">
234                                                                 <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br />
235                                                                 <small>?</small>
236                                                         </div>
237                                                 </div>
238                                         </td>
239                                         <td class="cbi-value-field" style="vertical-align:middle; text-align:left; padding:3px" id="<%=net[1]%>-ifc-description">
240                                                 <em><%:Collecting data...%></em>
241                                         </td>
242                                         <td style="width:420px">
243                                                 <input type="button" class="cbi-button cbi-button-reload" style="width:100px" onclick="iface_shutdown('<%=net[1]%>', true)" title="<%:Reconnect this interface%>" value="<%:Connect%>" />
244                                                 <input type="button" class="cbi-button cbi-button-reset" style="width:100px" onclick="iface_shutdown('<%=net[1]%>', false)" title="<%:Shutdown this interface%>" value="<%:Stop%>" />
245                                                 <input type="button" class="cbi-button cbi-button-edit" style="width:100px" onclick="location.href='<%=url("admin/network/network", net[1])%>'" title="<%:Edit this interface%>" value="<%:Edit%>" id="<%=net[1]%>-ifc-edit" />
246                                                 <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="iface_delete('<%=net[1]%>')" value="<%:Delete%>" />
247                                         </td>
248                                 </tr>
249                         <% end %>
250                 </table>
251
252                 <input type="button" class="cbi-button cbi-button-add" value="<%:Add new interface...%>" onclick="location.href='<%=url("admin/network/iface_add")%>'" />
253         </fieldset>
254 </div>