0fb9bc0a3c181adf9689055f98cef46a83e3254a
[project/luci.git] / applications / luci-olsr / luasrc / view / status-olsr / neighbors.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5 Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 -%>
14
15 <%
16 local olsrtools = require "luci.tools.olsr"
17 local i = 1
18
19 if luci.http.formvalue("status") == "1" then
20         local rv = {}
21         for k, link in ipairs(links) do
22                 link.linkCost = tonumber(link.linkCost)/1024 or 0
23                 if link.linkCost == 4096 then
24                         link.linkCost = 0
25                 end
26                 local color = olsrtools.etx_color(link.linkCost)
27                 defaultgw_color = ""
28                 if link.defaultgw == 1 then
29                         defaultgw_color = "#ffff99"
30                 end
31
32                 rv[#rv+1] = {
33                         rip = link.remoteIP,
34                         rmac = link.remoteMAC,
35                         hn = link.hostname,
36                         lip = link.localIP,
37                         lmac = link.localMAC,
38                         ifn = link.interface,
39                         lq = string.format("%.3f", link.linkQuality),
40                         nlq = string.format("%.3f",link.neighborLinkQuality),
41                         cost = string.format("%.3f", link.linkCost),
42                         snr = string.format("%.3f", link.snr),
43                         signal = string.format("%.3f", link.signal),
44                         noise = string.format("%.3f", link.noise),
45                         color = color,
46                         dfgcolor = defaultgw_color,
47                         proto = link.proto
48                         }
49         end
50         luci.http.prepare_content("application/json")
51         luci.http.write_json(rv)
52         return
53 end
54 %>
55
56 <%+header%>
57
58 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
59 <script type="text/javascript">//<![CDATA[
60
61         XHR.poll(10 , '<%=REQUEST_URI%>', { status: 1 }, 
62                 function(x, info)
63                 {
64                 var nt = document.getElementById('olsr_neigh_table');
65                         if (nt)
66                         {
67                                 var s = '';
68                                 for (var idx = 0; idx < info.length; idx++)
69                                 {
70                                         var neigh = info[idx];
71
72                                         if (neigh.proto == '6') {
73                                                 s += String.format(
74                                                         '<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+' proto-%s">' +
75                                                         '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://[%s]/cgi-bin-status.html">%s/%s</a></td>',
76                                                         neigh.proto, neigh.dfgcolor, neigh.rip, neigh.rip, neigh.rmac
77                                                 );
78                                         } else {
79                                                 s += String.format(
80                                                         '<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+' proto-%s">' +
81                                                         '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://%s/cgi-bin-status.html">%s/%s</a></td>',
82                                                         neigh.proto, neigh.dfgcolor, neigh.rip, neigh.rip, neigh.rmac
83                                                 );
84                                         }
85                                         if (neigh.hn) {
86                                                 s += String.format(
87                                                         '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://%s/cgi-bin-status.html">%s</a></td>',
88                                                         neigh.dfgcolor, neigh.hn, neigh.hn
89                                                 );
90                                         } else {
91                                                 s += String.format(
92                                                         '<td class="cbi-section-table-titles" style="background-color:%s">?</td>',
93                                                         neigh.dfgcolor
94                                                 );
95                                         }
96                                         s += String.format(
97                                                 '<td class="cbi-section-table-titles" style="background-color:%s">%s/%s/%s</td>' +
98                                                 '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' +
99                                                 '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' +
100                                                 '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' +
101                                                 '<td class="cbi-section-table-titles" style="background-color:%s" title="Signal: %s Noise: %s">%s</td>' +
102                                                 '</tr>',
103                                                 neigh.dfgcolor, neigh.ifn, neigh.lip, neigh.lmac, neigh.dfgcolor, neigh.lq, neigh.dfgcolor, neigh.nlq, neigh.color, neigh.cost, neigh.color, neigh.signal, neigh.noise, neigh.snr || '?'
104                                         );
105                                 }
106
107                                 nt.innerHTML = s;
108                         }
109                 }
110         );
111 //]]></script>
112
113
114 <h2><a id="content" name="content"><%:OLSR connections%></a></h2>
115
116 <div id="togglebuttons"></div>
117
118 <fieldset class="cbi-section">
119         <legend><%:Overview of currently established OLSR connections%></legend>
120
121         <table class="cbi-section-table">
122                 <thead>
123                         <tr class="cbi-section-table-titles">
124                                 <th class="cbi-section-table-cell"><%:Neighbour IP%></th>
125                                 <th class="cbi-section-table-cell"><%:Hostname%></th>
126                                 <th class="cbi-section-table-cell"><%:Local interface IP%></th>
127                                 <th class="cbi-section-table-cell">LQ</th>
128                                 <th class="cbi-section-table-cell">NLQ</th>
129                                 <th class="cbi-section-table-cell">ETX</th>
130                                 <th class="cbi-section-table-cell">SNR</th>
131                         </tr>
132                 </thead>
133         
134                 <tbody id="olsr_neigh_table">
135                 <%      local i = 1
136                         for k, link in ipairs(links) do
137                         link.linkCost = tonumber(link.linkCost)/1024 or 0
138                         if link.linkCost == 4096 then
139                                 link.linkCost = 0
140                         end
141
142                         color = olsrtools.etx_color(link.linkCost)
143
144                         defaultgw_color = ""
145                         if link.defaultgw == 1 then
146                                 defaultgw_color = "#ffff99"
147                         end
148                 %>
149
150                 <tr class="cbi-section-table-row cbi-rowstyle-<%=i%> proto-<%=link.proto%>">
151                         <% if link.proto == "6" then %>
152                         <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><a href="http://[<%=link.remoteIP%>]/cgi-bin-status.html"><%=link.remoteIP%>/<%=link.remoteMAC%></a></td>
153                         <% else %>
154                         <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><a href="http://<%=link.remoteIP%>/cgi-bin-status.html"><%=link.remoteIP%>/<%=link.remoteMAC%></a></td>
155                         <% end %>
156                         <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><a href="http://<%=link.hostname%>/cgi-bin-status.html"><%=link.hostname%></a></td>
157                         <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><%=link.interface%>/<%=link.localIP%>/<%=link.localMAC%></td>
158                         <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><%=string.format("%.3f", link.linkQuality)%></td>
159                         <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><%=string.format("%.3f", link.neighborLinkQuality)%></td>
160                         <td class="cbi-section-table-titles" style="background-color:<%=color%>"><%=string.format("%.3f", link.linkCost)%></td>
161                         <td class="cbi-section-table-titles" style="background-color:<%=color%>" title="Signal: <%=string.format("%.3f", link.signal)%> Noise: <%=string.format("%.3f", link.noise)%>"><%=string.format("%.3f", link.snr)%></td>
162                 </tr>
163                 <% 
164                         i = ((i % 2) + 1)
165                 end %>
166                 </tbody>
167         </table>
168 <br />
169
170 <%+status-olsr/legend%>
171 </fieldset>
172 <%+status-olsr/common_js%>
173 <%+footer%>