34 lines
588 B
Lua
34 lines
588 B
Lua
#!/usr/bin/lua
|
|
|
|
module('gluon.announce', package.seeall)
|
|
|
|
fs = require 'nixio.fs'
|
|
uci = require('luci.model.uci').cursor()
|
|
util = require 'luci.util'
|
|
|
|
local function collect_entry(entry)
|
|
if fs.stat(entry, 'type') == 'dir' then
|
|
return collect_dir(entry)
|
|
else
|
|
return setfenv(loadfile(entry), _M)()
|
|
end
|
|
end
|
|
|
|
function collect_dir(dir)
|
|
local ret = {}
|
|
|
|
for entry in fs.dir(dir) do
|
|
if entry:sub(1, 1) ~= '.' then
|
|
local ok, val = pcall(collect_entry, dir .. '/' .. entry)
|
|
if ok then
|
|
ret[entry] = val
|
|
else
|
|
io.stderr:write(val, '\n')
|
|
end
|
|
end
|
|
end
|
|
|
|
return ret
|
|
end
|
|
|