web-private-wifi: add warning about mesh on wan

This commit is contained in:
Maciej Krüger 2022-05-24 10:52:32 +02:00 committed by Alexander List
parent a651971edb
commit 6ace824580

View File

@ -1,5 +1,6 @@
local uci = require("simple-uci").cursor() local uci = require("simple-uci").cursor()
local wireless = require 'gluon.wireless' local wireless = require 'gluon.wireless'
local util = require 'gluon.util'
-- where to read the configuration from -- where to read the configuration from
local primary_iface = 'wan_radio0' local primary_iface = 'wan_radio0'
@ -13,9 +14,27 @@ local s = f:section(Section, nil, translate(
.. 'at the same time.' .. 'at the same time.'
)) ))
local uplink_interfaces = util.get_role_interfaces(uci, 'uplink')
local mesh_on_wan = false
for _, iface in ipairs(util.get_role_interfaces(uci, 'mesh')) do
if util.contains(uplink_interfaces, iface) then
mesh_on_wan = true
end
end
local enabled = s:option(Flag, "enabled", translate("Enabled")) local enabled = s:option(Flag, "enabled", translate("Enabled"))
enabled.default = uci:get('wireless', primary_iface) and not uci:get_bool('wireless', primary_iface, "disabled") enabled.default = uci:get('wireless', primary_iface) and not uci:get_bool('wireless', primary_iface, "disabled")
if mesh_on_wan and enabled.data then
local w = Warning()
w:setcontent(translate(
'Meshing on WAN interface is enabled.' ..
'This can lead to problems.'
))
s:append(w)
end
local ssid = s:option(Value, "ssid", translate("Name (SSID)")) local ssid = s:option(Value, "ssid", translate("Name (SSID)"))
ssid:depends(enabled, true) ssid:depends(enabled, true)
ssid.datatype = "maxlength(32)" ssid.datatype = "maxlength(32)"