minor change

This commit is contained in:
alejandro.campos@artica.es 2022-12-13 15:25:16 +01:00
parent 79e9597dd5
commit e5f2c83120
1 changed files with 34 additions and 0 deletions

View File

@ -2625,9 +2625,28 @@ class Item extends CachedModel
*/
public static function checkLayoutAlertsRecursive(array $item, array $visitedLayouts=[])
{
if (isset($item['type']) === true) {
$excludedItemTypes = [
22,
17,
18,
1,
23,
15,
14,
10,
4,
];
if (in_array($item['type'], $excludedItemTypes) === true) {
return false;
}
}
$agentID = (int) $item['id_agent'];
$agentModuleID = (int) $item['id_agente_modulo'];
$linkedLayoutID = (int) $item['id_layout_linked'];
$metaconsoleID = (int) $item['id_metaconsole'];
$visitedLayouts[] = $item['id_layout'];
@ -2646,8 +2665,22 @@ class Item extends CachedModel
$agentModuleID
);
// Connect to node.
if (\is_metaconsole() === true
&& \metaconsole_connect(null, $metaconsoleID) !== NOERR
) {
throw new \InvalidArgumentException(
'error connecting to the node'
);
}
$firedAlert = db_get_sql($alerts_sql);
// Restore connection.
if (\is_metaconsole() === true) {
\metaconsole_restore_db();
}
// Item has a triggered alert.
if ($firedAlert !== false) {
return true;
@ -2669,6 +2702,7 @@ class Item extends CachedModel
'id_agent',
'id_agente_modulo',
'id_layout_linked',
'id_metaconsole',
]
);