Merge pull request #859 from feckert/realtime_wlan
[project/luci.git] / modules / luci-base / luasrc / view / cbi / firewall_zonelist.htm
1 <%+cbi/valueheader%>
2
3 <%-
4         local utl = require "luci.util"
5         local fwm = require "luci.model.firewall".init()
6         local nwm = require "luci.model.network".init()
7
8         local zone, net, iface
9         local zones = fwm:get_zones()
10         local value = self:formvalue(section)
11         if not value or value == "-" then
12                 value = self:cfgvalue(section) or self.default
13         end
14
15         local selected = false
16         local checked = { }
17
18         for value in utl.imatch(value) do
19                 checked[value] = true
20         end
21
22         if not next(checked) then
23                 checked[""] = true
24         end
25 -%>
26
27 <ul style="margin:0; list-style-type:none; text-align:left">
28         <% if self.allowlocal then %>
29         <li style="padding:0.5em">
30                 <input class="cbi-input-radio" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_empty") .. attr("name", cbid) .. attr("value", "") .. ifattr(checked[""], "checked", "checked")%> /> &#160;
31                 <label<%=attr("for", cbid .. "_empty")%>></label>
32                 <label<%=attr("for", cbid .. "_empty")%> style="background-color:<%=fwm.zone.get_color()%>" class="zonebadge">
33                         <strong><%:Device%></strong>
34                         <% if self.allowany and self.allowlocal then %>(<%:input%>)<% end %>
35                 </label>
36         </li>
37         <% end %>
38         <% if self.allowany then %>
39         <li style="padding:0.5em">
40                 <input class="cbi-input-radio" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_any") .. attr("name", cbid) .. attr("value", "*") .. ifattr(checked["*"], "checked", "checked")%> /> &#160;
41                 <label<%=attr("for", cbid .. "_any")%>></label>
42                 <label<%=attr("for", cbid .. "_any")%> style="background-color:<%=fwm.zone.get_color()%>" class="zonebadge">
43                         <strong><%:Any zone%></strong>
44                         <% if self.allowany and self.allowlocal then %>(<%:forward%>)<% end %>
45                 </label>
46         </li>
47         <% end %>
48         <%
49                 for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do
50                         if zone:name() ~= self.exclude then
51                                 selected = selected or (value == zone:name())
52         %>
53         <li style="padding:0.5em">
54                 <input class="cbi-input-radio" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. zone:name()) .. attr("name", cbid) .. attr("value", zone:name()) .. ifattr(checked[zone:name()], "checked", "checked")%> /> &#160;
55                 <label<%=attr("for", cbid .. "." .. zone:name())%>></label>
56                 <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>" class="zonebadge">
57                         <strong><%=zone:name()%>:</strong>
58                         <%
59                                 local zempty = true
60                                 for _, net in ipairs(zone:get_networks()) do
61                                         net = nwm:get_network(net)
62                                         if net then
63                                                 zempty = false
64                         %>
65                                 <span class="ifacebadge<% if net:name() == self.network then %> ifacebadge-active<% end %>"><%=net:name()%>:
66                                 <%
67                                         local nempty = true
68                                         for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
69                                                 nempty = false
70                                  %>
71                                         <img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
72                                 <% end %>
73                                 <% if nempty then %><em><%:(empty)%></em><% end %>
74                                 </span>
75                         <% end end %>
76                         <% if zempty then %><em><%:(empty)%></em><% end %>
77                 </label>
78         </li>
79         <% end end %>
80
81         <% if self.widget ~= "checkbox" and not self.nocreate then %>
82         <li style="padding:0.5em">
83                 <input class="cbi-input-radio" data-update="click change" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not selected, "checked", "checked")%> /> &#160;
84                 <label<%=attr("for", cbid .. "_new")%>></label>
85                 <div onclick="document.getElementById('<%=cbid%>_new').checked=true" class="zonebadge" style="background-color:<%=fwm.zone.get_color()%>">
86                         <em><%:unspecified -or- create:%>&#160;</em>
87                         <input type="text"<%=attr("name", cbid .. ".newzone") .. ifattr(not selected, "value", luci.http.formvalue(cbid .. ".newzone") or self.default)%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" />
88                 </div>
89         </li>
90         <% end %>
91 </ul>
92
93 <%+cbi/valuefooter%>