This commit is contained in:
Christof Schulze 2016-10-13 18:44:38 +00:00 committed by GitHub
commit 5bbef161bb
3 changed files with 7 additions and 5 deletions

View File

@ -8,6 +8,7 @@ badrequest() {
echo 'Access-Control-Allow-Origin: *'
batctl if | cut -d: -f1 | grep -qxF "$QUERY_STRING" || badrequest
#batctl if | cut -d: -f1 | grep -qxF "$QUERY_STRING" || badrequest
lua -e 'mesh = require(gluon.mesh); for interface, _ in ipairs(mesh.interfaces()) do print(interface .. "\n"); end;' | grep -qxF "$QUERY_STRING" || badrequest
exec /usr/bin/gluon-neighbour-info -s neighbour -i "$QUERY_STRING" -d ff02::2:1001 -p 1001 -r nodeinfo

View File

@ -8,7 +8,8 @@ badrequest() {
echo 'Access-Control-Allow-Origin: *'
batctl if | cut -d: -f1 | grep -qxF "$QUERY_STRING" || badrequest
#batctl if | cut -d: -f1 | grep -qxF "$QUERY_STRING" || badrequest
lua -e 'mesh = require(gluon.mesh); for interface, _ in ipairs(mesh.interfaces()) do print(interface .. "\n"); end;' | grep -qxF "$QUERY_STRING" || badrequest
CMD="exec /lib/gluon/status-page/providers/stations '$QUERY_STRING'"

View File

@ -3,16 +3,16 @@
util = require 'luci.util'
json = require 'luci.jsonc'
fs = require 'nixio.fs'
mesh = require 'gluon.mesh'
io.write("Access-Control-Allow-Origin: *\n")
io.write("Content-type: application/json\n\n")
list = util.exec('batctl if')
-- list = util.exec('batctl if')
interfaces = {}
for _, line in ipairs(util.split(list)) do
ifname = line:match('^(.-):')
for interface, _ in ipairs(mesh.interfaces()) do
if ifname ~= nil then
pcall(function()
local address = util.trim(fs.readfile('/sys/class/net/' .. ifname .. '/address'))