Add a visual indicator when a service is not being published.

This commit is contained in:
Tim Wilkinson 2022-07-27 00:02:47 -07:00 committed by Joe AE6XE
parent 1e78f85edc
commit e8d90a9404
1 changed files with 18 additions and 3 deletions

View File

@ -1100,6 +1100,17 @@ function print_forwarding()
end end
function print_services() function print_services()
local activesvc = nil
if nixio.fs.stat("/var/etc/olsrd.conf") then
activesvc = {}
for line in io.lines("/var/etc/olsrd.conf")
do
local plparam = line:match([[^%s*(PlParam "service" ".*")%s*$]])
if plparam then
activesvc[plparam] = true
end
end
end
html.print("<table cellpadding=0 cellspacing=0><tr><th colspan=4>Advertised Services</th></tr>") html.print("<table cellpadding=0 cellspacing=0><tr><th colspan=4>Advertised Services</th></tr>")
if not (dmz_mode ~= 0 or parms.port_num ~= 0 or parms.dmz_ip) then if not (dmz_mode ~= 0 or parms.port_num ~= 0 or parms.dmz_ip) then
if dmz_mode ~= 0 then if dmz_mode ~= 0 then
@ -1192,11 +1203,15 @@ function print_services()
html.print("<td><nobr>&nbsp;<input type=submit name=") html.print("<td><nobr>&nbsp;<input type=submit name=")
if val == "_add" then if val == "_add" then
html.print("serv_add value=Add title='Add this as a service'") html.print("serv_add value=Add title='Add this as a service'>")
else else
html.print("serv" .. val .. "_del value=Del title='Remove this service'") html.print("serv" .. val .. "_del value=Del title='Remove this service'>")
end end
html.print("></nobr></td></tr>") local svc = string.format([[PlParam "service" "%s://%s:%s/%s|tcp|%s"]], _proto, _host, (_link == "1" and _port or "0"), _suffix, _name)
if val ~= "_add" and activesvc and not activesvc[svc] then
html.print("<img style='vertical-align:middle' src='/dot.png' title='Service is not being advertised'>")
end
html.print("</nobr></td></tr>")
-- display any errors -- display any errors
while #serv_err > 0 and serv_err[1]:match("^" .. val .. " ") while #serv_err > 0 and serv_err[1]:match("^" .. val .. " ")