mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Handles templates (load/require) for individual plugins
This commit is contained in:
parent
54e551e6f0
commit
9433928dfc
4 changed files with 76 additions and 159 deletions
|
|
@ -1,72 +0,0 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
|
||||
-- ##############################################
|
||||
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/user_script_templates/?.lua;" .. package.path
|
||||
|
||||
-- Import the classes library.
|
||||
local classes = require "classes"
|
||||
-- Make sure to import the Superclass!
|
||||
local user_script_template = require "user_script_template"
|
||||
local http_lint = require "http_lint"
|
||||
|
||||
-- ##############################################
|
||||
|
||||
local elephant_flows = classes.class(user_script_template)
|
||||
|
||||
-- ##############################################
|
||||
|
||||
elephant_flows.meta = {
|
||||
}
|
||||
|
||||
-- ##############################################
|
||||
|
||||
-- @brief Prepare an instance of the template
|
||||
-- @return A table with the template built
|
||||
function elephant_flows:init(user_script)
|
||||
-- Call the parent constructor
|
||||
self.super:init(user_script)
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
function elephant_flows:parseConfig(conf)
|
||||
if(tonumber(conf.l2r_bytes_value) == nil) then
|
||||
return false, "bad l2r_bytes_value value"
|
||||
end
|
||||
|
||||
if(tonumber(conf.r2l_bytes_value) == nil) then
|
||||
return false, "bad r2l_bytes_value value"
|
||||
end
|
||||
|
||||
return http_lint.validateListItems(self._user_script, conf)
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
function elephant_flows:describeConfig(hooks_conf)
|
||||
if not hooks_conf.all then
|
||||
return '' -- disabled, nothing to show
|
||||
end
|
||||
|
||||
-- E.g. '> 1 GB (L2R), > 2 GB (R2L), except: Datatransfer, Git'
|
||||
local conf = hooks_conf.all.script_conf
|
||||
local msg = i18n("user_scripts.elephant_flows_descr", {
|
||||
l2r_bytes = bytesToSize(conf.l2r_bytes_value),
|
||||
r2l_bytes = bytesToSize(conf.r2l_bytes_value),
|
||||
})
|
||||
|
||||
if not table.empty(conf.items) then
|
||||
msg = msg .. ". " .. i18n("user_scripts.exceptions", {exceptions = table.concat(conf.items, ', ')})
|
||||
end
|
||||
|
||||
return(msg)
|
||||
end
|
||||
|
||||
|
||||
-- #######################################################
|
||||
|
||||
return elephant_flows
|
||||
|
|
@ -1,65 +0,0 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
|
||||
-- ##############################################
|
||||
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/user_script_templates/?.lua;" .. package.path
|
||||
|
||||
-- Import the classes library.
|
||||
local classes = require "classes"
|
||||
-- Make sure to import the Superclass!
|
||||
local user_script_template = require "user_script_template"
|
||||
local http_lint = require "http_lint"
|
||||
|
||||
-- ##############################################
|
||||
|
||||
local long_lived = classes.class(user_script_template)
|
||||
|
||||
-- ##############################################
|
||||
|
||||
long_lived.meta = {
|
||||
}
|
||||
|
||||
-- ##############################################
|
||||
|
||||
-- @brief Prepare an instance of the template
|
||||
-- @return A table with the template built
|
||||
function long_lived:init(user_script)
|
||||
-- Call the parent constructor
|
||||
self.super:init(user_script)
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
function long_lived:parseConfig(conf)
|
||||
if(tonumber(conf.min_duration) == nil) then
|
||||
return false, "bad min_duration value"
|
||||
end
|
||||
|
||||
return http_lint.validateListItems(self._user_script, conf)
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
function long_lived:describeConfig(hooks_conf)
|
||||
if not hooks_conf.all then
|
||||
return '' -- disabled, nothing to show
|
||||
end
|
||||
|
||||
local conf = hooks_conf.all.script_conf
|
||||
local msg = i18n("user_scripts.long_lived_flows_descr", {
|
||||
duration = secondsToTime(conf.min_duration),
|
||||
})
|
||||
|
||||
if(not table.empty(conf.items)) then
|
||||
msg = msg .. ". " .. i18n("user_scripts.exceptions", {exceptions = table.concat(conf.items, ', ')})
|
||||
end
|
||||
|
||||
return(msg)
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
return long_lived
|
||||
Loading…
Add table
Add a link
Reference in a new issue