mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
45 lines
1.4 KiB
Lua
45 lines
1.4 KiB
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
-- trace_script_duration = true
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require "dkjson"
|
|
local template = require "template_utils"
|
|
local page_utils = require("page_utils")
|
|
local page = _GET["page"] or 'overview'
|
|
local base_url = ntop.getHttpPrefix() .. "/lua/admin/blacklists.lua"
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
page_utils.print_header_and_set_active_menu_entry(page_utils.menu_entries.category_lists)
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/menu.lua")
|
|
|
|
page_utils.print_navbar(i18n("category_lists.category_lists"), base_url .. "?", {{
|
|
active = page == "overview" or page == nil,
|
|
page_name = "overview",
|
|
label = "<i class=\"fas fa-lg fa-home\"></i>"
|
|
}, {
|
|
active = page == "charts",
|
|
page_name = "charts",
|
|
label = "<i class='fas fa-lg fa-chart-area' title='" .. i18n("historical") .. "'></i>"
|
|
}})
|
|
|
|
if page == "overview" or not page then
|
|
local json_context = json.encode({
|
|
csrf = ntop.getRandomCSRFValue()
|
|
})
|
|
template.render("pages/vue_page.template", {
|
|
vue_page_name = "PageBlacklists",
|
|
page_context = json_context
|
|
})
|
|
else
|
|
local graph_utils = require("graph_utils")
|
|
graph_utils.drawNewGraphs({
|
|
ifid = getSystemInterfaceId()
|
|
})
|
|
end
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|