8ebd5ee80a774d65c833f85c76f025f180e8e8f3
[feed/routing.git] / luci-app-bmx6 / files / usr / lib / lua / luci / view / bmx6 / nodes_j.htm
1 <%#
2 Copyright (C) 2011 Pau Escrich <pau@dabax.net>
3 Contributors Lluis Esquerda <eskerda@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21 -%>
22
23 <%+header%>
24 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
25 <script type="text/javascript" src="<%=resource%>/bmx6/js/polling.js"></script>
26
27
28 <style>
29
30 div.hideme{
31 display: none;
32 }
33
34 div.info{
35 background: #FFF;
36 border: solid 0px;
37 height: 90px;
38 display: block;
39 overflow: auto;
40 }
41
42 div.inforow{
43 text-align:left;
44 display:inline-block;
45 width:20%;
46 margin:5px;
47 vertical-align:top;
48
49 }
50
51 #extra-info ul { list-style: none outside none; margin-left: 0em; }
52
53 </style>
54 <div class="cbi-map">
55
56 <h2>Node originators</h2>
57 <div class="cbi-map-descr"></div>
58 <div id="extra-info" class="info">
59 <br />
60 <center>
61 Click icon <img src="<%=resource%>/bmx6/world.png" /> to see individual node information
62 </center>
63 </div>
64 <fieldset class="cbi-section">
65 <legend><%:Mesh nodes%></legend>
66 <table class="cbi-section-table" id="descriptions_table">
67 <tr class="cbi-section-table-titles">
68 <th class="cbi-section-table-cell"></th>
69 <th class="cbi-section-table-cell"><%:Hostname%></th>
70 <th class="cbi-section-table-cell"><%:Primary IP%></th>
71 <th class="cbi-section-table-cell"><%:Via Device%></th>
72 <th class="cbi-section-table-cell"><%:Metric%></th>
73 <th class="cbi-section-table-cell"><%:Last Desc%></th>
74 <th class="cbi-section-table-cell"><%:Last Ref%></th>
75 <th class="cbi-section-table-cell"><%:Blocked%></th>
76 </tr>
77 <tr class="cbi-section-table-row">
78 <td colspan="8"><br /><center><em><%:Collecting data...%></em></center></td>
79 </tr>
80 </table>
81 </fieldset>
82
83 </div>
84
85 <script type="text/javascript">//<![CDATA[
86 var displayExtraInfo = function ( id ) {
87 document.getElementById('extra-info').innerHTML = document.getElementById(id).innerHTML;
88 }
89
90 new TablePooler(5,"/cgi-bin/bmx6-info", {'$neighbours':''}, "descriptions_table", function(st){
91 var infoicon = "<%=resource%>/bmx6/world_small.png";
92 var nodeicon = "<%=resource%>/bmx6/world.png";
93 var originators = st.neighbours[0].originators;
94 var descriptions = st.neighbours[1].descriptions;
95 var res = Array();
96 var error = "";
97
98 if ( originators.length != descriptions.length )
99 {
100 error = '<em><br /><%:Some problem with JSON: lenght of originators and descriptions differs. %> \
101 <%: Please perform a cache flush from a console it this persists: bmx6 -c --flushAll %></em>';
102 res.push([[error,7]]);
103 return res;
104 }
105
106 for ( var i = 0; i < descriptions.length; i++ ){
107 var nodename = descriptions[i].DESC_ADV.globalId.replace(/\.[^\.]+$/,"");
108 var extensions = descriptions[i].DESC_ADV.extensions;
109 //var extrainfo = '<a onclick="displayExtraInfo(\'ip-' + i + '\')"><img src="' + infoicon + '" / ></a>';
110 var extrainfo_link = '<a onclick="displayExtraInfo(\'ip-' + i + '\')">' + '<img src="' + infoicon + '" />' + '</a>';
111 // Looking for the extensions
112 var hna6 = [];
113 var tun4in6 = [];
114 var tun6in6 = [];
115
116 for( var e = 0; e < extensions.length; e++)
117 {
118 if( extensions[e].HNA6_EXTENSION )
119 hna6 = extensions[e].HNA6_EXTENSION;
120 if ( extensions[e].TUN4IN6_NET_EXTENSION )
121 tun4in6 = extensions[e].TUN4IN6_NET_EXTENSION;
122 tun6in6 = extensions[e].TUN6IN6_NET_EXTENSION;
123 }
124
125 // Gateways
126 var gateways = '<ul>';
127 if ( typeof(tun4in6) !== "undefined" && tun4in6 !== null )
128 for ( var t = 0; t < tun4in6.length; t++)
129 {
130 if ( tun4in6[t].networklen == "32" )
131 gateways += '<li><a href="http://' + tun4in6[t].network + '">' + tun4in6[t].network + '</a></li>';
132 else
133 gateways += "<li>"+tun4in6[t].network+'/'+tun4in6[t].networklen + ' | ' + tun4in6[t].bandwidth+'</li>';
134 }
135
136 if ( typeof(tun6in6) !== "undefined" && tun6in6 !== null )
137 for ( var t = 0; t < tun6in6.length; t++)
138 {
139 if ( tun6in6[t].networklen == "128" )
140 gateways += '<li><a href="http://' + tun6in6[t].network + '">' + tun6in6[t].network + '</a></li>';
141 else
142 gateways += "<li>"+tun6in6[t].network+'/'+tun6in6[t].networklen + ' | ' + tun6in6[t].bandwidth+'</li>';
143 }
144
145 gateways += '</ul>';
146
147 //Adding HNAs with prefix=128 as main address
148 var ipstxt = '';
149 var address;
150 var first = 1;
151 var ipstxt_hidden = '<ul>';
152 var hna6list = '<ul>';
153 var extrainfo = "";
154
155 for( var e = 0; e < hna6.length; e++ )
156 {
157 address = hna6[e].address;
158 prefix = hna6[e].prefixlen;
159 if ( prefix == '128' )
160 {
161 if (first)
162 {
163 ipstxt += address;
164 ipstxt_hidden += '<li><a href="http://['+address+']" >'+address+"</a></li>";
165 first = 0;
166 }
167 else {
168 ipstxt_hidden += '<li><a href="http://['+address+']" >'+address+"</a></li>";
169 }
170 }
171 else {
172 hna6list += '<li>'+address+'/'+prefix+'</li>';
173 }
174 }
175 hna6list += '</ul>';
176 ipstxt_hidden += '</ul>';
177
178 extrainfo = '<div id="ip-'+ i +'" class="hideme">'
179 + "<div class='inforow'>"
180 + "<h4>" + nodename + '</h4>\n' + '<img src="' + nodeicon + '" />'+ "</div>"
181
182 + "<div class='inforow'>"
183 + "<h5>Available IPs</h5>\n"
184 + ipstxt_hidden + "</div>\n"
185
186 + "<div class='inforow'>"
187 + "<h5>Gateways announced</h5>\n"
188 + gateways + "</div>\n"
189
190 + "<div class='inforow'>"
191 + "<h5>Networks announced</h5>\n"
192 + hna6list + "</div>\n"
193 + "\n</div>";
194
195 res.push([extrainfo_link,nodename, ipstxt, originators[i].viaDev, originators[i].metric,
196 originators[i].lastDesc, originators[i].lastRef, originators[i].blocked, extrainfo]);
197
198 }
199 return res;
200 });
201 //]]></script>
202
203 <%+footer%>
204