Revert "Migrates alerts to an object-oriented implementation"

This reverts commit fbc283f12f.
This commit is contained in:
matteo 2020-12-22 13:13:57 +01:00
parent fbc283f12f
commit e24ef4ef35
108 changed files with 1741 additions and 2797 deletions

View file

@ -2,28 +2,52 @@
-- (C) 2019-20 - ntop.org
--
local alert_keys = require "alert_keys"
-- ##############################################
-- #######################################################
local alert_keys = require "alert_keys"
local status_keys = require "flow_keys"
-- Import the classes library.
local classes = require "classes"
-- Make sure to import the Superclass!
local alert = require "alert"
-- ##############################################
local alert_flow_blocked = classes.class(alert)
-- ##############################################
alert_flow_blocked.meta = {
status_key = status_keys.ntopng.status_blocked, -- A flow status key
alert_key = alert_keys.ntopng.alert_flow_blocked,
i18n_title = "flow_details.flow_blocked_by_bridge",
icon = "fas fa-exclamation",
}
-- ##############################################
-- @brief Prepare an alert table used to generate the alert
-- @param alert_severity A severity as defined in `alert_severities`
-- @return A table with the alert built
local function createFlowBlocked(alert_severity)
local built = {
alert_severity = alert_severity,
alert_type_params = {
}
}
function alert_flow_blocked:init()
-- Call the parent constructor
self.super:init()
return built
self.alert_type_params = {
-- No params
}
end
-- #######################################################
return {
alert_key = alert_keys.ntopng.alert_flow_blocked,
i18n_title = "alerts_dashboard.blocked_flow",
icon = "fas fa-ban",
creator = createFlowBlocked,
}
-- @brief Format an alert into a human-readable string
-- @param ifid The integer interface id of the generated alert
-- @param alert The alert description table, including alert data such as the generating entity, timestamp, granularity, type
-- @param alert_type_params Table `alert_type_params` as built in the `:init` method
-- @return A human-readable string
function alert_flow_blocked.format(ifid, alert, alert_type_params)
return i18n("flow_details.flow_blocked_by_bridge")
end
-- #######################################################
return alert_flow_blocked