mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-13 03:27:05 +08:00
46 lines
1.3 KiB
Lua
46 lines
1.3 KiB
Lua
-- Copyright (C) 2014-2017 Jian Chang <aa65535@live.com>
|
|
-- Copyright (C) 2017 Ian Li <OpenSource@ianli.xyz>
|
|
-- Licensed to the public under the GNU General Public License v3.
|
|
|
|
module("luci.controller.transparent-proxy", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/transparent-proxy") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "services", "transparent-proxy"},
|
|
alias("admin", "services", "transparent-proxy", "general"),
|
|
_("Transparent Proxy"), 10).dependent = true
|
|
|
|
entry({"admin", "services", "transparent-proxy", "general"},
|
|
cbi("transparent-proxy/general"),
|
|
_("General Settings"), 10).leaf = true
|
|
|
|
entry({"admin", "services", "transparent-proxy", "status"},
|
|
call("action_status")).leaf = true
|
|
|
|
entry({"admin", "services", "transparent-proxy", "access-control"},
|
|
cbi("transparent-proxy/access-control"),
|
|
_("Access Control"), 30).leaf = true
|
|
end
|
|
|
|
local function is_ipset_exist(name)
|
|
return luci.sys.call("ipset list %s >/dev/null" %{name}) == 0
|
|
end
|
|
|
|
local function is_running(name)
|
|
return luci.sys.call("pidof %s >/dev/null" %{name}) == 0
|
|
end
|
|
|
|
function action_status()
|
|
luci.http.prepare_content("application/json")
|
|
luci.http.write_json({
|
|
rules = is_ipset_exist("tp_spec_dst_fw"),
|
|
ss_redir = is_running("ss-redir"),
|
|
ssr_redir = is_running("ssr-redir"),
|
|
v2ray = is_running("v2ray"),
|
|
redsocks = is_running("redsocks")
|
|
})
|
|
end
|