mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
28 lines
973 B
Lua
28 lines
973 B
Lua
--
|
|
-- (C) 2019-20 - ntop.org
|
|
--
|
|
|
|
-- This script defines additional parameters validators for use in the
|
|
-- GET/POST requests. In ntopng any GET/POST parameter must be validated
|
|
-- via a validation function. The validation function returns true if the
|
|
-- parameter is valid, false otherwise. In the latter case, the POST request
|
|
-- is aborted with an error.
|
|
|
|
local script = {}
|
|
|
|
-- ##############################################
|
|
|
|
-- @brief Called by the main http_lint module to load additional parameters.
|
|
-- @params http_lint a reference to the scripts/lua/modules/http_lint.lua module
|
|
-- @return a (possibly empty) table with parameter_name -> validator mappings
|
|
function script.getAdditionalParameters(http_lint)
|
|
return {
|
|
-- The toggle_example_notification parameter will be validated using the
|
|
-- 'validateBool' validator.
|
|
["toggle_example_notification"] = http_lint.validateBool,
|
|
}
|
|
end
|
|
|
|
-- ##############################################
|
|
|
|
return(script)
|