mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
54 lines
1.5 KiB
Lua
54 lines
1.5 KiB
Lua
--
|
|
-- (C) 2020 - ntop.org
|
|
--
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/pools/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local page_utils = require "page_utils"
|
|
local json = require "dkjson"
|
|
local template_utils = require "template_utils"
|
|
local host_pools = require "host_pools"
|
|
|
|
local host_pool = host_pools:create()
|
|
local all_pools = host_pools:get_all_pools()
|
|
local pool_id_get = _GET["pool"]
|
|
|
|
-- if the _GET["pool"] is not defined then
|
|
-- show the first host pool in the page
|
|
-- otherwise it means there are no host pools and then
|
|
-- show an alert
|
|
if #all_pools > 1 and pool_id_get == nil then
|
|
pool_id_get = all_pools[2].pool_id
|
|
elseif #all_pools == 0 then
|
|
pool_id_get = 0
|
|
end
|
|
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
if not haveAdminPrivileges() then return end
|
|
page_utils.set_active_menu_entry(page_utils.menu_entries.host_members)
|
|
|
|
-- append the menu above the page
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/menu.lua")
|
|
|
|
page_utils.print_page_title(i18n("host_pools.host_members"))
|
|
|
|
-- ************************************* ------
|
|
|
|
local context = {
|
|
template_utils = template_utils,
|
|
json = json,
|
|
pool = host_pool,
|
|
manage_host_members = {
|
|
pool_id_get = pool_id_get,
|
|
all_pools = all_pools
|
|
},
|
|
}
|
|
|
|
print(template_utils.gen("pages/manage_host_members.template", context))
|
|
|
|
-- ************************************* ------
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|