Adapted directory structure to be compatible with openwrt feeds system
[feed/routing.git] / bmx6-luci / 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 <a href="<%=link_non_js%>">Go to non JavaScript view</a>
86
87 <script type="text/javascript">//<![CDATA[
88 var displayExtraInfo = function ( id ) {
89 document.getElementById('extra-info').innerHTML = document.getElementById(id).innerHTML;
90 }
91
92 new TablePooler(5,"/cgi-bin/bmx6-info", {'$neighbours':''}, "descriptions_table", function(st){
93 var infoicon = "<%=resource%>/bmx6/world_small.png";
94 var nodeicon = "<%=resource%>/bmx6/world.png";
95 var originators = st.neighbours[0].originators;
96 var descriptions = st.neighbours[1].descriptions;
97 var res = Array();
98 var error = "";
99
100 if ( originators.length != descriptions.length )
101 {
102 error = '<em><br /><%:Some problem with JSON: lenght of originators and descriptions differs. %> \
103 <%: Please perform a cache flush from a console it this persists: bmx6 -c --flushAll %></em>';
104 res.push([[error,7]]);
105 return res;
106 }
107
108 for ( var i = 0; i < descriptions.length; i++ ){
109 var nodename = descriptions[i].DESC_ADV.globalId.replace(/\.[^\.]+$/,"");
110 var extensions = descriptions[i].DESC_ADV.extensions;
111 //var extrainfo = '<a onclick="displayExtraInfo(\'ip-' + i + '\')"><img src="' + infoicon + '" / ></a>';
112 var extrainfo_link = '<a onclick="displayExtraInfo(\'ip-' + i + '\')">' + '<img src="' + infoicon + '" />' + '</a>';
113 // Looking for the extensions
114 var hna6 = [];
115 var tun4in6 = [];
116 var tun6 = [];
117 for( var e = 0; e < extensions.length; e++)
118 {
119 if( extensions[e].HNA6_EXTENSION )
120 hna6 = extensions[e].HNA6_EXTENSION;
121 if ( extensions[e].TUN4IN6_NET_EXTENSION )
122 tun4in6 = extensions[e].TUN4IN6_NET_EXTENSION;
123 }
124
125 // Gateways
126 var gateways = '<ul>';
127 for ( var t = 0; t < tun4in6.length; t++)
128 {
129 if ( tun4in6[t].networklen == "32" )
130 gateways += '<li><a href="http://' + tun4in6[t].network + '">' + tun4in6[t].network + '</a></li>';
131 else
132 gateways += "<li>"+tun4in6[t].network+'/'+tun4in6[t].networklen + ' | ' + tun4in6[t].bandwidth+'</li>';
133 }
134 gateways += '</ul>';
135
136 //Adding HNAs with prefix=128 as main address
137 var ipstxt = '';
138 var address;
139 var first = 1;
140 var ipstxt_hidden = '<ul>';
141 var hna6list = '<ul>';
142 var extrainfo = "";
143
144 for( var e = 0; e < hna6.length; e++ )
145 {
146 address = hna6[e].address;
147 prefix = hna6[e].prefixlen;
148 if ( prefix == '128' )
149 {
150 if (first)
151 {
152 ipstxt += address;
153 ipstxt_hidden += '<li><a href="http://['+address+']" >'+address+"</a></li>";
154 first = 0;
155 }
156 else {
157 ipstxt_hidden += '<li><a href="http://['+address+']" >'+address+"</a></li>";
158 }
159 }
160 else {
161 hna6list += '<li>'+address+'/'+prefix+'</li>';
162 }
163 }
164 hna6list += '</ul>';
165 ipstxt_hidden += '</ul>';
166
167 extrainfo = '<div id="ip-'+ i +'" class="hideme">'
168 + "<div class='inforow'>"
169 + "<h4>" + nodename + '</h4>\n' + '<img src="' + nodeicon + '" />'+ "</div>"
170
171 + "<div class='inforow'>"
172 + "<h5>Available IPs</h5>\n"
173 + ipstxt_hidden + "</div>\n"
174
175 + "<div class='inforow'>"
176 + "<h5>Gateways announced</h5>\n"
177 + gateways + "</div>\n"
178
179 + "<div class='inforow'>"
180 + "<h5>Networks announced</h5>\n"
181 + hna6list + "</div>\n"
182 + "\n</div>";
183
184 res.push([extrainfo_link,nodename, ipstxt, originators[i].viaDev, originators[i].metric,
185 originators[i].lastDesc, originators[i].lastRef, originators[i].blocked, extrainfo]);
186
187 }
188 return res;
189 });
190 //]]></script>
191
192 <%+footer%>
193