luci2: add network diagnostics view
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 12 Oct 2013 20:25:45 +0000 (20:25 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 12 Oct 2013 20:25:45 +0000 (20:25 +0000)
luci2/htdocs/luci2/template/network.diagnostics.htm [new file with mode: 0644]
luci2/htdocs/luci2/view/network.diagnostics.js [new file with mode: 0644]
luci2/share/acl.d/luci2.json
luci2/share/menu.d/network.json

diff --git a/luci2/htdocs/luci2/template/network.diagnostics.htm b/luci2/htdocs/luci2/template/network.diagnostics.htm
new file mode 100644 (file)
index 0000000..4c82c7f
--- /dev/null
@@ -0,0 +1,18 @@
+<p><%:Select the utility to run and click "Test" to perform the requested operation.%></p>
+<p>
+       <table style="width:auto">
+               <tr>
+                       <td>
+                               <select id="tool"></select>
+                       </td>
+                       <td>
+                               <input type="text" id="host" value="openwrt.org" />
+                       </td>
+                       <td>
+                               <input type="button" class="cbi-button cbi-button-apply" id="run" value="<%:Test%>" />
+                       </td>
+               </tr>
+       </table>
+</p>
+
+<pre id="output" style="display:none"></pre>
diff --git a/luci2/htdocs/luci2/view/network.diagnostics.js b/luci2/htdocs/luci2/view/network.diagnostics.js
new file mode 100644 (file)
index 0000000..99f185a
--- /dev/null
@@ -0,0 +1,55 @@
+L.ui.view.extend({
+       title: L.tr('Diagnostics'),
+
+       execute: function() {
+               var self = this;
+               var tools = [ ];
+
+               $.when(
+                       L.network.runPing('?').then(function(rv) {
+                               if (rv.code != -1) tools.push(['runPing', L.tr('IPv4 Ping')]);
+                       }),
+                       L.network.runPing6('?').then(function(rv) {
+                               if (rv.code != -1) tools.push(['runPing6', L.tr('IPv6 Ping')]);
+                       }),
+                       L.network.runTraceroute('?').then(function(rv) {
+                               if (rv.code != -1) tools.push(['runTraceroute', L.tr('IPv4 Traceroute')]);
+                       }),
+                       L.network.runTraceroute6('?').then(function(rv) {
+                               if (rv.code != -1) tools.push(['runTraceroute6', L.tr('IPv6 Tracroute')]);
+                       }),
+                       L.network.runNslookup('?').then(function(rv) {
+                               if (rv.code != -1) tools.push(['runNslookup', L.tr('DNS Lookup')]);
+                       })
+               ).then(function() {
+                       tools.sort(function(a, b) {
+                               if (a[0] < b[0])
+                                       return -1;
+                               else if (a[0] > b[0])
+                                       return 1;
+                               else
+                                       return 0;
+                       });
+
+                       for (var i = 0; i < tools.length; i++)
+                               $('#tool').append($('<option />').attr('value', tools[i][0]).text(tools[i][1]));
+
+                       $('#tool').val('runPing');
+
+                       $('#run').click(function() {
+                               L.ui.loading(true);
+                               L.network[$('#tool').val()]($('#host').val()).then(function(rv) {
+                                       $('#output').empty().show();
+
+                                       if (rv.stdout)
+                                               $('#output').text(rv.stdout);
+
+                                       if (rv.stderr)
+                                               $('#output').append($('<span />').css('color', 'red').text(rv.stderr));
+
+                                       L.ui.loading(false);
+                               });
+                       });
+               });
+       }
+});
index 62057f3..e8e6949 100644 (file)
                                "network"
                        ]
                }
+       },
+
+       "diagnostics": {
+               "description": "Network diagnostic tools",
+               "read": {
+                       "ubus": {
+                               "luci2.network": [
+                                       "ping",
+                                       "ping6",
+                                       "traceroute",
+                                       "traceroute6",
+                                       "nslookup"
+                               ]
+                       }
+               }
        }
 }
index 94078e0..fc6f236 100644 (file)
@@ -8,5 +8,11 @@
         "acls": [ "switch" ],
         "view": "network/switch",
         "index": 30
+    },
+    "network/diagnostics": {
+        "title": "Diagnostics",
+        "acls": [ "diagnostics" ],
+        "view": "network/diagnostics",
+        "index": 80
     }
 }