firewall_zonelist.htm 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <%+cbi/valueheader%>
  2. <%-
  3. local utl = require "luci.util"
  4. local fwm = require "luci.model.firewall".init()
  5. local nwm = require "luci.model.network".init()
  6. local zone, net, iface
  7. local zones = fwm:get_zones()
  8. local value = self:formvalue(section)
  9. if not value or value == "-" then
  10. value = self:cfgvalue(section) or self.default
  11. end
  12. local selected = false
  13. local checked = { }
  14. for value in utl.imatch(value) do
  15. checked[value] = true
  16. end
  17. if not next(checked) then
  18. checked[""] = true
  19. end
  20. -%>
  21. <ul style="margin:0; list-style-type:none; text-align:left">
  22. <% if self.allowlocal then %>
  23. <li style="padding:0.5em">
  24. <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 .. "_empty") .. attr("name", cbid) .. attr("value", "") .. ifattr(checked[""], "checked", "checked")%> /> &#160;
  25. <label<%=attr("for", cbid .. "_empty")%> style="background-color:<%=fwm.zone.get_color()%>" class="zonebadge">
  26. <strong><%:Device%></strong>
  27. <% if self.allowany and self.allowlocal then %>(<%:input%>)<% end %>
  28. </label>
  29. </li>
  30. <% end %>
  31. <% if self.allowany then %>
  32. <li style="padding:0.5em">
  33. <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 .. "_any") .. attr("name", cbid) .. attr("value", "*") .. ifattr(checked["*"], "checked", "checked")%> /> &#160;
  34. <label<%=attr("for", cbid .. "_any")%> style="background-color:<%=fwm.zone.get_color()%>" class="zonebadge">
  35. <strong><%:Any zone%></strong>
  36. <% if self.allowany and self.allowlocal then %>(<%:forward%>)<% end %>
  37. </label>
  38. </li>
  39. <% end %>
  40. <%
  41. for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do
  42. if zone:name() ~= self.exclude then
  43. selected = selected or (value == zone:name())
  44. %>
  45. <li style="padding:0.5em">
  46. <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")%> /> &#160;
  47. <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>" class="zonebadge">
  48. <strong><%=zone:name()%>:</strong>
  49. <%
  50. local zempty = true
  51. for _, net in ipairs(zone:get_networks()) do
  52. net = nwm:get_network(net)
  53. if net then
  54. zempty = false
  55. %>
  56. <span class="ifacebadge<% if net:name() == self.network then %> ifacebadge-active<% end %>"><%=net:name()%>:
  57. <%
  58. local nempty = true
  59. for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
  60. nempty = false
  61. %>
  62. <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" />
  63. <% end %>
  64. <% if nempty then %><em><%:(empty)%></em><% end %>
  65. </span>
  66. <% end end %>
  67. <% if zempty then %><em><%:(empty)%></em><% end %>
  68. </label>
  69. </li>
  70. <% end end %>
  71. <% if self.widget ~= "checkbox" and not self.nocreate then %>
  72. <li style="padding:0.5em">
  73. <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")%> /> &#160;
  74. <div onclick="document.getElementById('<%=cbid%>_new').checked=true" class="zonebadge" style="background-color:<%=fwm.zone.get_color()%>">
  75. <em><%:unspecified -or- create:%>&#160;</em>
  76. <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" />
  77. </div>
  78. </li>
  79. <% end %>
  80. </ul>
  81. <%+cbi/valuefooter%>