05237866416799279e3479d1096ebfde3169c6b6
[project/luci.git] / libs / cbi / luasrc / view / cbi / firewall_zonelist.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2009 Jo-Philipp Wich <xm@subsignal.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9         http://www.apache.org/licenses/LICENSE-2.0
10
11 $Id$
12
13 -%>
14 <%+cbi/valueheader%>
15
16 <%-
17         local utl = require "luci.util"
18         local fwm = require "luci.model.firewall"
19         local nwm = require "luci.model.network"
20
21         local zone, net, iface
22         local zones = fwm:get_zones()
23         local value = self:formvalue(section)
24         if not value or value == "-" then value = self:cfgvalue(section) or self.default end
25
26         local selected = false
27         local checked = { }
28
29         if value and #value == 0 then
30                 value = nil
31         elseif type(value) == "table" then
32                 for _, value in ipairs(value) do
33                         checked[value] = true
34                 end
35         elseif value then
36                 checked[value] = true           
37         end
38 -%>
39
40 <ul style="margin:0; list-style-type:none; text-align:left">
41         <%
42                 for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do
43                         if zone:name() ~= self.exclude then
44                                 selected = selected or (value == zone:name())
45         %>
46         <li style="padding:0.5em">
47                 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. zone:name()) .. attr("name", cbid) .. attr("value", zone:name()) .. ifattr(checked[zone:name()], "checked", "checked")%> /> &nbsp;
48                 <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>; padding:0.5em">
49                         <strong><%=zone:name()%>:</strong>
50                         <%
51                                 local zempty = true
52                                 for _, net in ipairs(zone:get_networks()) do
53                                         net = nwm:get_network(net)
54                                         zempty = false
55                                         if net then
56                                                 local nempty = true
57                         %>
58                                 &nbsp;
59                                 <%- if net:name() == self.network then -%>
60                                         <span style="background-color:#FFFFFF; border:1px solid #000000; padding:2px; font-weight:bold"><%=net:name()%>:
61                                 <%- else -%>
62                                         <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
63                                 <%- end -%>
64                                 <%
65                                         for _, iface in ipairs(net and net:get_interfaces() or {}) do
66                                                 if not iface:is_bridgeport() then
67                                                         nempty = false
68                                  %>
69                                         <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" />
70                                 <% end end %>
71                                 <% if nempty then %><em><%:(no interfaces attached)%></em><% end %>
72                                 </span>
73                         <% end end %>
74                         <% if zempty then %><em><%:(no interfaces attached)%></em><% end %>
75                 </label>
76         </li>
77         <% end end %>
78
79         <% if self.widget ~= "checkbox" and not self.nocreate then %>
80         <li style="padding:0.5em">
81                 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not selected, "checked", "checked")%> /> &nbsp;
82                 <div style="background-color:<%=fwm.zone.get_color()%>; padding:0.5em; display:inline">
83                         <label<%=attr("for", cbid .. "_new")%>><em><%:unspecified -or- create:%>&nbsp;</em></label>
84                         <input style="width:6em" type="text"<%=attr("name", cbid .. ".newzone") .. ifattr(not selected, "value", self.default)%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" />
85                 </div>
86         </li>
87         <% end %>
88 </ul>
89
90 <%+cbi/valuefooter%>