luci-app-vpnbypass: better service start/stop
[project/luci.git] / applications / luci-app-vpnbypass / luasrc / model / cbi / vpnbypass.lua
1 readmeURL = "https://github.com/openwrt/packages/blob/master/net/vpnbypass/files/README.md"
2
3 m = Map("vpnbypass", translate("VPN Bypass Settings"))
4 s = m:section(NamedSection, "config", "vpnbypass")
5
6 -- General options
7 e = s:option(Flag, "enabled", translate("Start VPNBypass service"))
8 e.rmempty = false
9 function e.write(self, section, value)
10         if value ~= "1" then
11                 luci.sys.init.stop("vpnbypass")
12         end
13         return Flag.write(self, section, value)
14 end
15
16 -- Local Ports
17 p1 = s:option(DynamicList, "localport", translate("Local Ports to Bypass"), translate("Local ports to trigger VPN Bypass"))
18 p1.datatype    = "portrange"
19 -- p1.placeholder = "0-65535"
20 p1.addremove = false
21 p1.optional = false
22
23 -- Remote Ports
24 p2 = s:option(DynamicList, "remoteport", translate("Remote Ports to Bypass"), translate("Remote ports to trigger VPN Bypass"))
25 p2.datatype    = "portrange"
26 -- p2.placeholder = "0-65535"
27 p2.addremove = false
28 p2.optional = false
29
30 -- Local Subnets
31 r1 = s:option(DynamicList, "localsubnet", translate("Local IP Addresses to Bypass"), translate("Local IP addresses or subnets with direct internet access (outside of the VPN tunnel)"))
32 r1.datatype    = "ip4addr"
33 -- r1.placeholder = luci.ip.new(uci.cursor():get("network", "lan", "ipaddr") .. "/" .. uci.cursor():get("network", "lan", "netmask"))
34 r1.addremove = false
35 r1.optional = false
36
37 -- Remote Subnets
38 r2 = s:option(DynamicList, "remotesubnet", translate("Remote IP Addresses to Bypass"), translate("Remote IP addresses or subnets which will be accessed directly (outside of the VPN tunnel)"))
39 r2.datatype    = "ip4addr"
40 -- r2.placeholder = "0.0.0.0/0"
41 r2.addremove = false
42 r2.optional = false
43
44 -- Domains
45 d = Map("dhcp")
46 s4 = d:section(TypedSection, "dnsmasq")
47 s4.anonymous = true
48 di = s4:option(DynamicList, "ipset", translate("Domains to Bypass"),
49     translate("Domains to be accessed directly (outside of the VPN tunnel), see ")
50                 .. [[<a href="]] .. readmeURL .. [[#bypass-domains-formatsyntax" target="_blank">]]
51     .. translate("README") .. [[</a> ]] .. translate("for syntax"))
52
53 return m, d