New page_utils api to handle sidebar subitems selection

This commit is contained in:
emanuele-f 2020-01-30 11:52:35 +01:00
parent 6704ae5040
commit 4f6788fb58
73 changed files with 197 additions and 143 deletions

View file

@ -6,8 +6,119 @@ local dirs = ntop.getDirs()
local info = ntop.getInfo()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
local plugins_utils = require("plugins_utils")
local page_utils = {}
-- #################################
local active_section = nil
local active_entry = nil
-- #################################
page_utils.menu_entries = {
-- Dashboard
traffic_dashboard = {key = "traffic_dashboard", i18n_title = "dashboard.traffic_dashboard", section = "dashboard"},
network_discovery = {key = "network_discovery", i18n_title = "discover.network_discovery", section = "dashboard"},
traffic_report = {key = "traffic_report", i18n_title = "report.traffic_report", section = "dashboard"},
db_explorer = {key = "db_explorer", i18n_title = "event_exporters.event_exporters", section = "dashboard"},
-- Alerts
detected_alerts = {key = "detected_alerts", i18n_title = "show_alerts.detected_alerts", section = "alerts"},
alerts_dashboard = {key = "alerts_dashboard", i18n_title = "alerts_dashboard.alerts_dashboard", section = "alerts"},
flow_alerts_explorer = {key = "flow_alerts_explorer", i18n_title = "flow_alerts_explorer.label", section = "alerts"},
-- Flows
flows = {key = "flows", i18n_title = "flows", section = "flows"},
flow_details = {key = "flow_details", i18n_title = "flow_details.flow_details", section = "flows"},
-- Hosts
hosts = {key = "hosts", i18n_title = "hosts", section = "hosts"},
devices = {key = "devices", i18n_title = "layer_2", section = "hosts"},
networks = {key = "networks", i18n_title = "networks", section = "hosts"},
vlans = {key = "vlans", i18n_title = "vlan_stats.vlans", section = "hosts"},
host_pools = {key = "host_pools", i18n_title = "host_pools.host_pools", section = "hosts"},
autonomous_systems = {key = "autonomous_systems", i18n_title = "as_stats.autonomous_systems", section = "hosts"},
countries = {key = "countries", i18n_title = "countries", section = "hosts"},
operating_systems = {key = "operating_systems", i18n_title = "operating_systems", section = "hosts"},
http_servers = {key = "http_servers", i18n_title = "http_servers_stats.http_servers", section = "hosts"},
top_hosts = {key = "top_hosts", i18n_title = "processes_stats.top_hosts", section = "hosts"},
geo_map = {key = "geo_map", i18n_title = "geo_map.geo_map", section = "hosts"},
hosts_treemap = {key = "hosts_treemap", i18n_title = "tree_map.hosts_treemap", section = "hosts"},
host_explorer = {key = "host_explorer", i18n_title = "host_explorer", section = "hosts"},
containers = {key = "containers", i18n_title = "containers_stats.containers", section = "hosts"},
pods = {key = "pods", i18n_title = "containers_stats.pods", section = "hosts"},
-- Interface
interface = {key = "interface", i18n_title = "interface_ifname", section = "if_stats"},
-- System
snmp = {key = "snmp", i18n_title = "prefs.snmp", section = "system_stats"},
system_status = {key = "system_status", i18n_title = "system_status", section = "system_stats"},
interfaces_status = {key = "interfaces_status", i18n_title = "system_interfaces_status", section = "system_stats"},
-- TODO plugins
-- Exporters
event_exporters = {key = "event_exporters", i18n_title = "system_interfaces_status", section = "exporters"},
flow_exporters = {key = "flow_exporters", i18n_title = "flow_devices.exporters", section = "exporters"},
-- Settings
manage_users = {key = "manage_users", i18n_title = "manage_users.manage_users", section = "admin"},
preferences = {key = "preferences", i18n_title = "prefs.preferences", section = "admin"},
scripts_config = {key = "scripts_config", i18n_title = "config_scripts.config_x", section = "admin"},
profiles = {key = "profiles", i18n_title = "traffic_profiles.traffic_profiles", section = "admin"},
categories = {key = "categories", i18n_title = "custom_categories.apps_and_categories", section = "admin"},
category_lists = {key = "category_lists", i18n_title = "category_lists.category_lists", section = "admin"},
device_protocols = {key = "device_protocols", i18n_title = "device_protocols.device_protocols", section = "admin"},
manage_data = {key = "manage_data", i18n_title = "manage_data.manage_data", section = "admin"},
export_data = {key = "export_data", i18n_title = "manage_data.export", section = "admin"},
plugin_browser = {key = "plugin_browser", i18n_title = "plugin_browser", section = "admin"},
remote_assistance = {key = "remote_assistance", i18n_title = "remote_assistance.remote_assistance", section = "admin"},
-- Home
live_capture = {key = "live_capture", i18n_title = "live_capture.active_live_captures", section = "home"},
-- Help
about = {key = "about", i18n_title = "about.about_x", section = "about"},
telemetry = {key = "telemetry", i18n_title = "telemetry", section = "about"},
directories = {key = "directories", i18n_title = "about.directories", section = "about"},
plugins = {key = "plugins", i18n_title = "plugins", section = "about"},
user_scripts = {key = "user_scripts", i18n_title = "about.user_scripts", section = "about"},
alert_definitions = {key = "alert_definitions", i18n_title = "about.alert_defines", section = "about"},
}
-- Extend the menu entries with the plugins
local menu, entries_data = plugins_utils.getMenuEntries()
page_utils.plugins_menu = menu or {}
if entries_data then
for k, v in pairs(entries_data) do
page_utils.menu_entries[k] = v
end
end
-- #################################
function page_utils.set_active_menu_entry(entry, i18n_params, alt_title)
active_section = entry.section
active_entry = entry.key
page_utils.print_header(alt_title or i18n(entry.i18n_title, i18n_params) or entry.i18n_title)
end
-- #################################
function page_utils.get_active_section()
return(active_section)
end
function page_utils.get_active_entry()
return(active_entry)
end
-- #################################
function page_utils.print_header(title)
local http_prefix = ntop.getHttpPrefix()
local startup_epoch = ntop.getStartupEpoch()