Fixed last commit
[project/luci.git] / applications / luci-fw / luasrc / model / cbi / luci_fw / rrule.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14 require("luci.sys")
15 arg[1] = arg[1] or ""
16
17 m = Map("firewall", translate("fw_redirect"), translate("fw_redirect_desc"))
18
19
20 s = m:section(NamedSection, arg[1], "redirect", "")
21 s.anonymous = true
22
23 back = s:option(DummyValue, "_overview", translate("overview"))
24 back.value = ""
25 back.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "redirection")
26
27 name = s:option(Value, "_name", translate("name"))
28 name.rmempty = true
29 name.size = 10
30
31 iface = s:option(ListValue, "src", translate("fw_zone"))
32 iface.default = "wan"
33 luci.model.uci.cursor():foreach("firewall", "zone",
34         function (section)
35                 iface:value(section.name)
36         end)
37         
38 s:option(Value, "src_ip", translate("firewall_redirect_srcip")).optional = true
39 s:option(Value, "src_mac", translate("firewall_redirect_srcmac")).optional = true
40
41 sport = s:option(Value, "src_port", translate("firewall_redirect_srcport"))
42 sport.optional = true
43 sport:depends("proto", "tcp")
44 sport:depends("proto", "udp")
45 sport:depends("proto", "tcpudp")
46
47 proto = s:option(ListValue, "proto", translate("protocol"))
48 proto.optional = true
49 proto:value("")
50 proto:value("tcp", "TCP")
51 proto:value("udp", "UDP")
52 proto:value("tcpudp", "TCP+UDP")
53
54 dport = s:option(Value, "src_dport", translate("firewall_redirect_srcdport"))
55 dport.size = 5
56 dport.optional = true
57 dport:depends("proto", "tcp")
58 dport:depends("proto", "udp")
59 dport:depends("proto", "tcpudp")
60
61 to = s:option(Value, "dest_ip", translate("firewall_redirect_destip"))
62 for i, dataset in ipairs(luci.sys.net.arptable()) do
63         to:value(dataset["IP address"])
64 end
65
66 toport = s:option(Value, "dest_port", translate("firewall_redirect_destport"))
67 toport.optional = true
68 toport.size = 5
69
70 return m