77 lines
2.3 KiB
Lua
77 lines
2.3 KiB
Lua
local m, s
|
|
|
|
m = Map("daed-next", translate("DAE Dashboard"))
|
|
m.description = translate("A Linux high-performance transparent proxy solution based on eBPF")
|
|
|
|
m:section(SimpleSection).template = "daed-next/daed-next_status"
|
|
|
|
s = m:section(TypedSection, "daed-next")
|
|
s.addremove = false
|
|
s.anonymous = true
|
|
|
|
if nixio.fs.stat("/sys/fs/bpf","type") ~= "dir" then
|
|
s.rawhtml = true
|
|
s.template = "daed-next/daed-next_error"
|
|
end
|
|
|
|
o = s:option(Flag, "enabled", translate("Enabled"))
|
|
o.rmempty = false
|
|
|
|
o = s:option(Button, "Dashboard Toggle", translate("Dashboard Toggle"))
|
|
o.inputtitle = translate("Toggle")
|
|
o.inputstyle = "reload"
|
|
o.description = translate("Dashboard is a frontend management panel, meant for configuration use only.")
|
|
o.write = function()
|
|
luci.sys.exec("/etc/daed-next/dashboard.sh &> /dev/null &")
|
|
end
|
|
|
|
enable = s:option(Flag, "subscribe_auto_update", translate("Enable Auto Subscribe Update"))
|
|
enable.rmempty = false
|
|
|
|
o = s:option(Value, "daed_username", translate("Username"))
|
|
o.default = Username
|
|
o.password = true
|
|
o:depends('subscribe_auto_update', '1')
|
|
|
|
o = s:option(Value, "daed_password", translate("Password"))
|
|
o.default = Password
|
|
o.password = true
|
|
o:depends('subscribe_auto_update', '1')
|
|
|
|
o = s:option(ListValue, "subscribe_update_week_time", translate("Update Cycle"))
|
|
o:value("*", translate("Every Day"))
|
|
o:value("1", translate("Every Monday"))
|
|
o:value("2", translate("Every Tuesday"))
|
|
o:value("3", translate("Every Wednesday"))
|
|
o:value("4", translate("Every Thursday"))
|
|
o:value("5", translate("Every Friday"))
|
|
o:value("6", translate("Every Saturday"))
|
|
o:value("7", translate("Every Sunday"))
|
|
o.default = "*"
|
|
o:depends('subscribe_auto_update', '1')
|
|
|
|
update_time = s:option(ListValue, "subscribe_update_day_time", translate("Update Time (Every Day)"))
|
|
for t = 0, 23 do
|
|
update_time:value(t, t..":00")
|
|
end
|
|
update_time.default = 0
|
|
update_time:depends('subscribe_auto_update', '1')
|
|
|
|
o = s:option(Value, "listen_port", translate("Web Listen port"))
|
|
o.datatype = "and(port,min(1))"
|
|
o.default = 3000
|
|
|
|
o = s:option(Flag, "log_enabled", translate("Enable Logs"))
|
|
o.default = 0
|
|
o.rmempty = false
|
|
|
|
o = s:option(Value, "log_maxbackups", translate("Logfile retention count"))
|
|
o.default = 1
|
|
o:depends("log_enabled", "1")
|
|
|
|
o = s:option(Value, "log_maxsize", translate("Logfile Max Size (MB)"))
|
|
o.default = 1
|
|
o:depends("log_enabled", "1")
|
|
|
|
return m
|