mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 15:09:33 +00:00
84 lines
2.3 KiB
Lua
84 lines
2.3 KiB
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
local system_setup_ui_utils = require "system_setup_ui_utils"
|
|
require "lua_utils"
|
|
require "prefs_utils"
|
|
|
|
local is_nedge = ntop.isnEdge()
|
|
local is_appliance = ntop.isAppliance()
|
|
|
|
if not (is_nedge or is_appliance) or not isAdministrator() then
|
|
return
|
|
end
|
|
|
|
local sys_config
|
|
if is_nedge then
|
|
package.path = dirs.installdir .. "/pro/scripts/lua/nedge/modules/system_config/?.lua;" .. package.path
|
|
sys_config = require("nf_config"):create(true)
|
|
else -- ntop.isAppliance()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/system_config/?.lua;" .. package.path
|
|
sys_config = require("appliance_config"):create(true)
|
|
end
|
|
|
|
system_setup_ui_utils.process_apply_discard_config(sys_config)
|
|
|
|
if table.len(_POST) > 0 then
|
|
if not isEmptyString(_POST["operating_mode"]) then
|
|
local mode = _POST["operating_mode"]
|
|
sys_config:setOperatingMode(mode)
|
|
|
|
if ntop.isIoTBridge() then
|
|
local wifi_config = sys_config:getWirelessConfiguration()
|
|
wifi_config.enabled = ternary(mode == "bridging", true, false)
|
|
sys_config:setWirelessConfiguration(wifi_config)
|
|
end
|
|
|
|
sys_config:save()
|
|
end
|
|
end
|
|
|
|
local print_page_body = function()
|
|
printPageSection(i18n("nedge.setup_mode"))
|
|
|
|
local all_modes = sys_config:getSupportedModes()
|
|
local available_modes = sys_config:getAvailableModes()
|
|
local modes_labels = {}
|
|
local modes_values = {}
|
|
|
|
for idx, mode in pairs(all_modes) do
|
|
if available_modes[mode.name] then
|
|
modes_labels[#modes_labels + 1] = mode.label
|
|
modes_values[#modes_values + 1] = mode.name
|
|
end
|
|
end
|
|
|
|
local current_mode = sys_config:getOperatingMode()
|
|
local bridge_only = (is_nedge and not ntop.isnEdgeEnterprise())
|
|
|
|
multipleTableButtonPrefs(i18n("nedge.setup_mode"),
|
|
i18n("nedge.set_the_device_mode"),
|
|
modes_labels, modes_values,
|
|
"",
|
|
"primary",
|
|
"operating_mode",
|
|
"", bridge_only,
|
|
nil, -- elementToSwitch
|
|
nil, -- showElementArray
|
|
nil, -- javascriptAfterSwitch
|
|
nil, --showElement
|
|
current_mode)
|
|
|
|
if is_nedge and bridge_only then
|
|
prefsInformativeField("", i18n("nedge.router_mode_requires_enterprise"), true)
|
|
end
|
|
|
|
printSaveButton()
|
|
end
|
|
|
|
system_setup_ui_utils.print_setup_page(print_page_body, sys_config)
|
|
|