mirror of
https://github.com/SunBK201/UA3F.git
synced 2025-12-16 16:57:08 +00:00
69 lines
2.1 KiB
Lua
69 lines
2.1 KiB
Lua
local uci = require("luci.model.uci").cursor()
|
|
|
|
ua3f = Map("ua3f",
|
|
"UA3F",
|
|
[[
|
|
<a href="https://github.com/SunBK201/UA3F" target="_blank">Version: 0.7.2</a>
|
|
<br>
|
|
Across the Campus we can reach every corner in the world.
|
|
]]
|
|
)
|
|
|
|
enable = ua3f:section(NamedSection, "enabled", "ua3f", "Status")
|
|
main = ua3f:section(NamedSection, "main", "ua3f", "Settings")
|
|
|
|
enable:option(Flag, "enabled", "Enabled")
|
|
status = enable:option(DummyValue, "status", "Status")
|
|
status.rawhtml = true
|
|
status.cfgvalue = function(self, section)
|
|
local pid = luci.sys.exec("pidof ua3f")
|
|
if pid == "" then
|
|
return "<span style='color:red'>" .. "Stopped" .. "</span>"
|
|
else
|
|
return "<span style='color:green'>" .. "Running" .. "</span>"
|
|
end
|
|
end
|
|
|
|
main:tab("general", "General Settings")
|
|
main:tab("log", "Log")
|
|
|
|
port = main:taboption("general", Value, "port", "Port")
|
|
port.placeholder = "1080"
|
|
|
|
bind = main:taboption("general", Value, "bind", "Bind Address")
|
|
bind:value("127.0.0.1")
|
|
bind:value("0.0.0.0")
|
|
|
|
log_level = main:taboption("general", ListValue, "log_level", "Log Level")
|
|
log_level:value("debug")
|
|
log_level:value("info")
|
|
log_level:value("warn")
|
|
log_level:value("error")
|
|
log_level:value("fatal")
|
|
log_level:value("panic")
|
|
log = main:taboption("log", TextValue, "")
|
|
log.readonly = true
|
|
log.cfgvalue = function(self, section)
|
|
return luci.sys.exec("cat /var/log/ua3f/ua3f.log")
|
|
end
|
|
log.rows = 30
|
|
|
|
ua = main:taboption("general", Value, "ua", "User-Agent")
|
|
ua.placeholder = "FFF"
|
|
|
|
uaRegexPattern = main:taboption("general", Value, "ua_regex", "User-Agent Regex Pattern")
|
|
uaRegexPattern.placeholder = "(iPhone|iPad|Android|Macintosh|Windows|Linux|Apple|Mac OS X|Mobile)"
|
|
uaRegexPattern.description = "Regular expression pattern for matching User-Agent"
|
|
|
|
partialRepalce = main:taboption("general", Flag, "partial_replace", "Partial Replace")
|
|
partialRepalce.description =
|
|
"Replace only the matched part of the User-Agent, only works when User-Agent Regex Pattern is not empty"
|
|
partialRepalce.default = "0"
|
|
|
|
local apply = luci.http.formvalue("cbi.apply")
|
|
if apply then
|
|
io.popen("/etc/init.d/ua3f restart")
|
|
end
|
|
|
|
return ua3f
|