Fixes REST API incompat. ({v1,v2}/get/alert/type/counters.lua)

Addresses #5754
This commit is contained in:
Simone Mainardi 2021-09-27 16:04:29 +02:00
parent 98f39fc351
commit ae66546f31
3 changed files with 166 additions and 0 deletions

View file

@ -0,0 +1,57 @@
--
-- (C) 2013-21 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
package.path = dirs.installdir .. "/scripts/lua/modules/alert_store/?.lua;" .. package.path
local auth = require "auth"
local rest_utils = require "rest_utils"
local alert_consts = require "alert_consts"
local all_alert_store = require "all_alert_store".new()
local alert_entities = require "alert_entities"
--
-- Read alerts count by time
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"ifid": "1"}' http://localhost:3000/lua/rest/v2/get/alert/type/counters.lua
--
-- NOTE: in case of invalid login, no error is returned but redirected to login
--
local rc = rest_utils.consts.success.ok
local ifid = _GET["ifid"]
if not auth.has_capability(auth.capabilities.alerts) then
rest_utils.answer(rest_utils.consts.err.not_granted)
return
end
if isEmptyString(ifid) then
rc = rest_utils.consts.err.invalid_interface
rest_utils.answer(rc)
return
end
interface.select(ifid)
if not auth.has_capability(auth.capabilities.alerts) then
rest_utils.answer(rest_utils.consts.err.not_granted)
return
end
local res = all_alert_store:get_counters_by_type()
local top_alerts = {}
for _, value in ipairs(res) do
top_alerts[#top_alerts + 1] = {
count = tonumber(value.count),
entity_id = tonumber(value.entity_id),
entity_label = alert_consts.alertEntityLabel(value.entity_id),
alert_id = tonumber(value.alert_id),
name = alert_consts.alertTypeLabel(tonumber(value.alert_id), true, value.entity_id),
}
end
rest_utils.answer(rc, top_alerts)