Merge pull request #1733 from stangri/master
[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 uci = require "uci"
4
5 m = Map("vpnbypass", translate("VPN Bypass Settings"))
6 s = m:section(NamedSection, "config", "vpnbypass")
7
8 -- General options
9 e = s:option(Flag, "enabled", translate("Start VPNBypass service"))
10 e.rmempty = false
11 function e.write(self, section, value)
12         if value ~= "1" then
13                 luci.sys.init.stop("vpnbypass")
14         end
15         return Flag.write(self, section, value)
16 end
17
18 -- Local Ports
19 p1 = s:option(DynamicList, "localport", translate("Local Ports to Bypass"), translate("Local ports to trigger VPN Bypass"))
20 p1.datatype    = "portrange"
21 -- p1.placeholder = "0-65535"
22 p1.addremove = false
23 p1.optional = false
24
25 -- Remote Ports
26 p2 = s:option(DynamicList, "remoteport", translate("Remote Ports to Bypass"), translate("Remote ports to trigger VPN Bypass"))
27 p2.datatype    = "portrange"
28 -- p2.placeholder = "0-65535"
29 p2.addremove = false
30 p2.optional = false
31
32 -- Local Subnets
33 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)"))
34 r1.datatype    = "ip4addr"
35 -- r1.placeholder = luci.ip.new(uci.cursor():get("network", "lan", "ipaddr") .. "/" .. uci.cursor():get("network", "lan", "netmask"))
36 r1.addremove = false
37 r1.optional = false
38
39 -- Remote Subnets
40 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)"))
41 r2.datatype    = "ip4addr"
42 -- r2.placeholder = "0.0.0.0/0"
43 r2.addremove = false
44 r2.optional = false
45
46 -- Domains
47 d = Map("dhcp")
48 s4 = d:section(TypedSection, "dnsmasq")
49 s4.anonymous = true
50 di = s4:option(DynamicList, "ipset", translate("Domains to Bypass"),
51     translate("Domains to be accessed directly (outside of the VPN tunnel), see ")
52                 .. [[<a href="]] .. readmeURL .. [[#bypass-domains-formatsyntax" target="_blank">]]
53     .. translate("README") .. [[</a> ]] .. translate("for syntax"))
54
55 return m, d