98 lines
2.4 KiB
Lua
98 lines
2.4 KiB
Lua
local api = require "luci.passwall.api"
|
|
local appname = "passwall"
|
|
local sys = api.sys
|
|
|
|
m = Map(appname)
|
|
|
|
s = m:section(TypedSection, "global", translate("ACLs"), "<font color='red'>" .. translate("ACLs is a tools which used to designate specific IP proxy mode.") .. "</font>")
|
|
s.anonymous = true
|
|
|
|
o = s:option(Flag, "acl_enable", translate("Main switch"))
|
|
o.rmempty = false
|
|
o.default = false
|
|
|
|
-- [[ ACLs Settings ]]--
|
|
s = m:section(TypedSection, "acl_rule")
|
|
s.template = "cbi/tblsection"
|
|
s.sortable = true
|
|
s.anonymous = true
|
|
s.addremove = true
|
|
s.extedit = api.url("acl_config", "%s")
|
|
function s.create(e, t)
|
|
t = TypedSection.create(e, t)
|
|
luci.http.redirect(e.extedit:format(t))
|
|
end
|
|
function s.remove(e, t)
|
|
sys.call("rm -rf /tmp/etc/passwall_tmp/dns_" .. t .. "*")
|
|
TypedSection.remove(e, t)
|
|
end
|
|
|
|
---- Enable
|
|
o = s:option(Flag, "enabled", translate("Enable"))
|
|
o.default = 1
|
|
o.rmempty = false
|
|
|
|
---- Remarks
|
|
o = s:option(Value, "remarks", translate("Remarks"))
|
|
o.rmempty = true
|
|
|
|
local mac_t = {}
|
|
sys.net.mac_hints(function(e, t)
|
|
mac_t[e] = {
|
|
ip = t,
|
|
mac = e
|
|
}
|
|
end)
|
|
|
|
o = s:option(DummyValue, "sources", translate("Source"))
|
|
o.rawhtml = true
|
|
o.cfgvalue = function(t, n)
|
|
local e = ''
|
|
local v = Value.cfgvalue(t, n) or ''
|
|
string.gsub(v, '[^' .. " " .. ']+', function(w)
|
|
local a = w
|
|
if mac_t[w] then
|
|
a = a .. ' (' .. mac_t[w].ip .. ')'
|
|
end
|
|
if #e > 0 then
|
|
e = e .. "<br />"
|
|
end
|
|
e = e .. a
|
|
end)
|
|
return e
|
|
end
|
|
|
|
--[[
|
|
---- TCP No Redir Ports
|
|
o = s:option(Value, "tcp_no_redir_ports", translate("TCP No Redir Ports"))
|
|
o.default = "default"
|
|
o:value("disable", translate("No patterns are used"))
|
|
o:value("default", translate("Default"))
|
|
o:value("1:65535", translate("All"))
|
|
|
|
---- UDP No Redir Ports
|
|
o = s:option(Value, "udp_no_redir_ports", translate("UDP No Redir Ports"))
|
|
o.default = "default"
|
|
o:value("disable", translate("No patterns are used"))
|
|
o:value("default", translate("Default"))
|
|
o:value("1:65535", translate("All"))
|
|
|
|
---- TCP Redir Ports
|
|
o = s:option(Value, "tcp_redir_ports", translate("TCP Redir Ports"))
|
|
o.default = "default"
|
|
o:value("default", translate("Default"))
|
|
o:value("1:65535", translate("All"))
|
|
o:value("80,443", "80,443")
|
|
o:value("80:65535", "80 " .. translate("or more"))
|
|
o:value("1:443", "443 " .. translate("or less"))
|
|
|
|
---- UDP Redir Ports
|
|
o = s:option(Value, "udp_redir_ports", translate("UDP Redir Ports"))
|
|
o.default = "default"
|
|
o:value("default", translate("Default"))
|
|
o:value("1:65535", translate("All"))
|
|
o:value("53", "53")
|
|
]]--
|
|
|
|
return m
|