luci-app-vpnbypass: directly enable service from Web UI.
[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("Enable VPN Bypass"))
8 e.rmempty = false
9
10 function e.cfgvalue(self, section)
11         return luci.sys.init.enabled("vpnbypass") and self.enabled or self.disabled
12 end
13
14 function e.write(self, section, value)
15         if value == "1" then
16                 luci.sys.call("/etc/init.d/vpnbypass enable >/dev/null")
17                 luci.sys.call("/etc/init.d/vpnbypass start >/dev/null")
18         else
19                 luci.sys.call("/etc/init.d/vpnbypass stop >/dev/null")
20                 luci.sys.call("/etc/init.d/vpnbypass disable >/dev/null")
21         end
22 end
23
24 -- Local Ports
25 p1 = s:option(DynamicList, "localport", translate("Local Ports to Bypass"), translate("Local ports to trigger VPN Bypass"))
26 p1.datatype    = "portrange"
27 p1.placeholder = "0-65535"
28 p1.addremove = false
29 p1.optional = false
30
31 -- Remote Ports
32 p2 = s:option(DynamicList, "remoteport", translate("Remote Ports to Bypass"), translate("Remote ports to trigger VPN Bypass"))
33 p2.datatype    = "portrange"
34 p2.placeholder = "0-65535"
35 p2.addremove = false
36 p2.optional = false
37
38 -- Local Subnets
39 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)"))
40 r1.datatype    = "ip4addr"
41 r1.placeholder = luci.ip.new(uci.cursor():get("network", "lan", "ipaddr") .. "/" .. uci.cursor():get("network", "lan", "netmask"))
42 r1.addremove = false
43 r1.optional = false
44
45 -- Remote Subnets
46 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)"))
47 r2.datatype    = "ip4addr"
48 r2.placeholder = "0.0.0.0/0"
49 r2.addremove = false
50 r2.optional = false
51
52 -- Domains
53 d = Map("dhcp")
54 s4 = d:section(TypedSection, "dnsmasq")
55 s4.anonymous = true
56 di = s4:option(DynamicList, "ipset", translate("Domains to Bypass"),
57     translate("Domains to be accessed directly (outside of the VPN tunnel), see ")
58                 .. [[<a href="]] .. readmeURL .. [[#bypass-domains-formatsyntax" target="_blank">]]
59     .. translate("README") .. [[</a>]] .. translate(" for syntax"))
60
61 return m, d