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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
--
-- (C) 2019-22 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
local json = require("dkjson")
local checks = require("checks")
local alert_consts = require("alert_consts")
local rest_utils = require "rest_utils"
local auth = require "auth"
-- ################################################
if not auth.has_capability(auth.capabilities.checks) then
rest_utils.answer(rest_utils.consts.err.not_granted)
return
end
-- ################################################
sendHTTPContentTypeHeader('application/json')
local subdir = _POST["check_subdir"]
local script_key = _POST["script_key"]
local alert_exclusion_list = _POST['script_exclusion_list']
-- ################################################
if(_POST["JSON"] == nil) then
traceError(TRACE_ERROR, TRACE_CONSOLE, "Missing 'JSON' parameter. Bad CSRF?")
return
end
local data = json.decode(_POST["JSON"])
if(table.empty(data)) then
traceError(TRACE_ERROR, TRACE_CONSOLE, "Bad JSON in 'JSON' parameter")
return
end
if(subdir == nil) then
traceError(TRACE_ERROR, TRACE_CONSOLE, "Missing 'check_subdir' parameter")
return
end
local script_type = checks.getScriptType(subdir)
if(script_type == nil) then
traceError(TRACE_ERROR, TRACE_CONSOLE, "Bad subdir: " .. subdir)
return
end
if(script_key == nil) then
traceError(TRACE_ERROR, TRACE_CONSOLE, "Missing script_key parameter")
return
end
-- ################################################
local result = {}
local success = false
local err = ""
local additional_filters = {}
if alert_exclusion_list ~= nil then
success, additional_filters = checks.parseFilterParams(alert_exclusion_list, subdir, true)
if not success then
err = additional_filters
goto response
end
end
success, err = checks.updateScriptConfig(script_key, subdir, data, additional_filters)
::response::
result.success = success
if not success then
result.error = err
end
-- ################################################
print(json.encode(result))
|