mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Refactors user_scripts into checks (lua)
This commit is contained in:
parent
3c3aa5a25f
commit
76fd315d1b
222 changed files with 980 additions and 981 deletions
62
scripts/lua/toggle_check.lua
Normal file
62
scripts/lua/toggle_check.lua
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
--
|
||||
-- (C) 2019-21 - 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")
|
||||
|
||||
sendHTTPContentTypeHeader('application/json')
|
||||
|
||||
local subdir = _POST["script_subdir"]
|
||||
local script_key = _POST["script_key"]
|
||||
local action = _POST["action"]
|
||||
|
||||
if(not isAdministrator()) then
|
||||
traceError(TRACE_ERROR, TRACE_CONSOLE, "Admin privileges required")
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
if(action == nil) then
|
||||
traceError(TRACE_ERROR, TRACE_CONSOLE, "Missing 'action' parameter")
|
||||
return
|
||||
end
|
||||
|
||||
if(subdir == nil) then
|
||||
traceError(TRACE_ERROR, TRACE_CONSOLE, "Missing 'script_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, err = checks.toggleScript(script_key, subdir, (action == "enable"))
|
||||
|
||||
result.success = success
|
||||
|
||||
if not success then
|
||||
result.error = err
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
print(json.encode(result))
|
||||
Loading…
Add table
Add a link
Reference in a new issue