-- -- (C) 2013-20 - ntop.org -- local dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path require "lua_utils" local user_scripts = require("user_scripts") local page_utils = require("page_utils") sendHTTPContentTypeHeader('text/html') page_utils.set_active_menu_entry(page_utils.menu_entries.user_scripts_dev) local ifid = interface.getId() local function printUserScripts() for _, info in ipairs(user_scripts.listSubdirs()) do local scripts = user_scripts.load(ifid, user_scripts.getScriptType(info.id), info.id, {return_all = true}) for name, script in pairsByKeys(scripts.modules) do local available = "" local filters = {} local hooks = {} -- Hooks for hook in pairsByKeys(script.hooks) do if((hook == "periodicUpdate") and (script.periodic_update_seconds ~= nil)) then hook = string.format("%s (%us)", hook, script.periodic_update_seconds) end hooks[#hooks + 1] = hook end hooks = table.concat(hooks, ", ") -- Filters if(script.is_alert) then filters[#filters + 1] = "alerts" end if(script.l4_proto) then filters[#filters + 1] = "l4_proto=" .. script.l4_proto end if(script.l7_proto) then filters[#filters + 1] = "l7_proto=" .. script.l7_proto end if(script.packet_interface_only) then filters[#filters + 1] = "packet_interface" end if(script.three_way_handshake_ok) then filters[#filters + 1] = "3wh_completed" end if(script.local_only) then filters[#filters + 1] = "local_only" end if(script.nedge_only) then filters[#filters + 1] = "nedge=true" end if(script.nedge_exclude) then filters[#filters + 1] = "nedge=false" end filters = table.concat(filters, ", ") if (name == "my_custom_script") then goto skip end -- Availability if(script.edition == "enterprise_m") then available = "Enterprise M" elseif(script.edition == "enterprise_l") then available = "Enterprise L" elseif(script.edition == "pro") then available = "Pro" else available = "Community" end local edit_url = user_scripts.getScriptEditorUrl(script) if(edit_url) then edit_url = ' ' .. i18n("host_pools.view") ..'' end print(string.format(([[
| ]].. i18n("plugins_overview.script") ..[[ | ]].. i18n("plugins_overview.type") ..[[ | ]].. i18n("plugins_overview.availability") ..[[ | ]].. i18n("plugins_overview.hooks") ..[[ | ]].. i18n("plugins_overview.filters") ..[[ | ]].. i18n("action") ..[[ |
|---|