gluon-status-page: API

This commit is contained in:
Nils Schneider 2014-01-31 02:04:14 +01:00
parent 450d70ea99
commit 74b60d3799
8 changed files with 138 additions and 1 deletions

View File

@ -12,7 +12,7 @@ define Package/gluon-status-page
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Adds a status page showing information about the node.
DEPENDS:=+gluon-core +gluon-neighbour-info +uhttpd
DEPENDS:=+gluon-core +uhttpd +gluon-neighbour-info +gluon-announce +libiwinfo-lua
endef
define Package/gluon-status-page/description

View File

@ -0,0 +1 @@
return { api = 1 }

View File

@ -0,0 +1,32 @@
#!/usr/bin/lua
local json = require 'luci.json'
local nixio = require 'nixio'
function neighbours()
local neighbours = {}
local list = io.lines("/sys/kernel/debug/batman_adv/bat0/originators")
for line in list do
local mac1, lastseen, tq, mac2, ifname =
line:match("^([0-9a-f:]+) +(%d+%.%d+)s +%( *(%d+)%) +([0-9a-f:]+) +%[ *(.-)%]")
if mac1 ~= nil and mac1 == mac2 then
neighbours[mac1] = { tq = tonumber(tq)
, lastseen = tonumber(lastseen)
, ifname = ifname
}
end
end
return neighbours
end
io.write("Access-Control-Allow-Origin: *\n")
io.write("Content-type: text/event-stream\n\n")
while true do
local neighbours = json.encode(neighbours())
io.write("data: " .. neighbours .. "\n\n")
io.flush()
nixio.nanosleep(1, 0)
end

View File

@ -0,0 +1,7 @@
#!/bin/sh
echo 'Access-Control-Allow-Origin: *'
batctl if | grep -q "^$QUERY_STRING:" || exit 1
exec /usr/bin/gluon-neighbour-info -s -i "$QUERY_STRING" -d ff02::2:1001 -p 1001 -r nodeinfo

View File

@ -0,0 +1,52 @@
#!/usr/bin/lua
util = require 'luci.util'
json = require 'luci.json'
fs = require 'luci.fs'
nixio = require 'nixio'
iwinfo = require 'iwinfo'
function badrequest()
io.write("Status: 400 Bad Request\n\n")
os.exit(1)
end
function get_stations(iw, ifname)
local stations = {}
for k, v in pairs(iw.assoclist(ifname)) do
stations[k:lower()] = v
end
return stations
end
local ifname = os.getenv("QUERY_STRING")
if ifname == nil then badrequest() end
local list = util.exec('batctl if')
local found = false
for _, line in ipairs(util.split(list)) do
if ifname == line:match('^(.-):') then
found = true
end
end
if found == false then badrequest() end
local wifitype = iwinfo.type(ifname)
if wifitype == nil then badrequest() end
local iw = iwinfo[wifitype]
io.write("Access-Control-Allow-Origin: *\n")
io.write("Content-type: text/event-stream\n\n")
while true do
local stations = json.encode(get_stations(iw, ifname))
io.write("data: " .. stations .. "\n\n")
io.flush()
nixio.nanosleep(0, 20e6)
end

View File

@ -0,0 +1,14 @@
#!/usr/bin/lua
local util = require 'luci.util'
local nixio = require 'nixio'
io.write("Access-Control-Allow-Origin: *\n")
io.write("Content-type: text/event-stream\n\n")
while true do
local data = util.exec("/lib/gluon/announce/collect.lua statistics")
io.write("data: " .. data .. "\n\n")
io.flush()
nixio.nanosleep(1, 0)
end

View File

@ -0,0 +1,24 @@
#!/usr/bin/lua
util = require 'luci.util'
json = require 'luci.json'
fs = require 'luci.fs'
io.write("Access-Control-Allow-Origin: *\n")
io.write("Content-type: application/json\n\n")
list = util.exec('batctl if')
interfaces = {}
for _, line in ipairs(util.split(list)) do
ifname = line:match('^(.-):')
if ifname ~= nil then
pcall(function()
local address = util.trim(fs.readfile('/sys/class/net/' .. ifname .. '/address'))
interfaces[ifname] = { address = address }
end)
end
end
io.write(json.encode(interfaces))

View File

@ -0,0 +1,7 @@
#!/bin/sh
echo 'Access-Control-Allow-Origin: *'
echo 'Content-Type: application/json'
echo
exec /lib/gluon/announce/collect.lua nodeinfo