mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
37 lines
1.1 KiB
Lua
37 lines
1.1 KiB
Lua
--
|
|
-- (C) 2019-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require("dkjson")
|
|
local plugins_utils = require "plugins_utils"
|
|
local notification_recipients = require("notification_recipients")
|
|
|
|
local action = _POST["action"]
|
|
|
|
sendHTTPContentTypeHeader('application/json')
|
|
|
|
if not haveAdminPrivileges() then
|
|
return
|
|
end
|
|
|
|
local response = {}
|
|
local recipient_name = _POST["recipient_name"]
|
|
|
|
if (action == "add") then
|
|
local endpoint_conf_name = _POST["endpoint_conf_name"]
|
|
response.result = notification_recipients.add_recipient(endpoint_conf_name, recipient_name, _POST)
|
|
elseif (action == "edit") then
|
|
response.result = notification_recipients.edit_recipient(recipient_name, _POST)
|
|
elseif (action == "remove") then
|
|
response.result = notification_recipients.delete_recipient(recipient_name)
|
|
else
|
|
traceError(TRACE_ERROR, TRACE_CONSOLE, "Invalid 'action' parameter.")
|
|
response.success = false
|
|
response.message = "Invalid 'action' parameter."
|
|
end
|
|
|
|
print(json.encode(response))
|