1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
--
-- (C) 2019-22 - ntop.org
--
-- ##############################################
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
package.path = dirs.installdir .. "/scripts/lua/modules/check_templates/?.lua;" .. package.path
-- Import the classes library.
local classes = require "classes"
-- Make sure to import the Superclass!
local check_template = require "check_template"
local http_lint = require "http_lint"
-- ##############################################
local items_list = classes.class(check_template)
-- ##############################################
items_list.meta = {
}
-- ##############################################
-- @brief Prepare an instance of the template
-- @return A table with the template built
function items_list:init(check)
-- Call the parent constructor
self.super:init(check)
end
function items_list:parseConfig(conf)
return http_lint.validateListItems(self._check, conf)
end
-- #######################################################
function items_list:describeConfig(hooks_conf)
if((not hooks_conf.all) or (not hooks_conf.all.script_conf)) then
return '' -- disabled, nothing to show
end
local items = hooks_conf.all.script_conf.items or {}
return table.concat(items, ", ")
end
-- #######################################################
return items_list
|