pandorafms/pandora_console/include/class/Tree.class.php

764 lines
21 KiB
PHP
Raw Normal View History

2014-12-16 16:39:00 +01:00
<?php
//Pandora FMS- http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; version 2
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
class Tree {
private $type = null;
private $tree = array();
private $filter = array();
private $root = null;
private $childrenMethod = "on_demand";
private $countModuleStatusMethod = "on_demand";
private $countAgentStatusMethod = "on_demand";
private $userGroups;
2014-12-16 16:39:00 +01:00
public function __construct($type, $root = null,
$childrenMethod = "on_demand",
$countModuleStatusMethod = "on_demand",
$countAgentStatusMethod = "on_demand") {
2014-12-16 16:39:00 +01:00
$this->type = $type;
$this->root = $root;
2014-12-17 18:58:34 +01:00
$this->childrenMethod = $childrenMethod;
$this->countModuleStatusMethod = $countModuleStatusMethod;
$this->countAgentStatusMethod = $countAgentStatusMethod;
2014-12-16 16:39:00 +01:00
}
2014-12-17 18:58:34 +01:00
public function setType($type) {
2014-12-16 16:39:00 +01:00
$this->type = $type;
}
2014-12-17 18:58:34 +01:00
public function setFilter($filter) {
2014-12-16 16:39:00 +01:00
$this->filter = $filter;
}
2014-12-17 18:58:34 +01:00
public function getData() {
2014-12-16 16:39:00 +01:00
switch ($this->type) {
case 'os':
2014-12-17 18:58:34 +01:00
$this->getDataOS();
2014-12-16 16:39:00 +01:00
break;
case 'group':
2014-12-17 18:58:34 +01:00
$this->getDataGroup();
2014-12-16 16:39:00 +01:00
break;
case 'module_group':
2014-12-17 18:58:34 +01:00
$this->getDataModuleGroup();
2014-12-16 16:39:00 +01:00
break;
case 'module':
2014-12-19 18:13:47 +01:00
$this->getDataModules();
2014-12-16 16:39:00 +01:00
break;
case 'tag':
2014-12-17 18:58:34 +01:00
$this->getDataTag();
2014-12-16 16:39:00 +01:00
break;
}
}
2014-12-17 18:58:34 +01:00
public function getDataOS() {
2014-12-19 18:39:18 +01:00
2015-01-02 12:11:41 +01:00
// Get the parent
if (empty($this->root))
$parent = 0;
else
$parent = $this->root;
// ACL Group
$group_acl = "";
if (!empty($this->userGroups)) {
$user_groups_str = implode(",", $this->userGroups);
$group_acl = " AND ta.id_grupo IN ($user_groups_str) ";
}
$list_os = os_get_os();
if (!empty($list_os)) {
$list_os_aux = array();
foreach ($list_os as $os) {
$list_os_aux[$os['id_os']] = $os;
}
if (!empty($list_os_aux)) {
$list_os = $list_os_aux;
unset($list_os_aux);
}
}
if (!empty($list_os)) {
$sql = "SELECT tam.nombre AS module_name, tam.id_agente_modulo,
tam.id_tipo_modulo, ta.id_os,
ta.id_agente, ta.nombre AS agent_name
FROM tagente ta, tagente_modulo tam
WHERE ta.id_agente = tam.id_agente
$group_acl
ORDER BY ta.id_os ASC, ta.id_agente ASC";
$data = db_process_sql($sql);
}
if (empty($data)) {
$data = array();
}
$nodes = array();
$actual_os_root = array(
'id' => null,
'name' => '',
'icon' => '',
'children' => array(),
'counters' => array()
);
$actual_agent = array();
foreach ($data as $key => $value) {
// Module
$module = array();
$module['id_agente_modulo'] = (int) $value['id_agente_modulo'];
$module['nombre'] = $value['module_name'];
$module['id_tipo_modulo'] = (int) $value['id_tipo_modulo'];
$this->processModule($module);
// Module group
if ($actual_os_root['id'] === (int)$value['id_os']) {
// Agent
if (empty($actual_agent) || $actual_agent['id'] !== (int)$value['id_agente']) {
// Add the last agent to the agent module
if (!empty($actual_agent))
$actual_os_root['children'][] = $actual_agent;
// Create the new agent
$actual_agent = array();
$actual_agent['id_agente'] = (int) $value['id_agente'];
$actual_agent['nombre'] = $value['agent_name'];
$actual_agent['children'] = array();
$this->processAgent(&$actual_agent, array(), false);
// Add the module to the agent
$actual_agent['children'][] = $module;
// Increase counters
$actual_os_root['counters']['total']++;
if (isset($actual_os_root['counters'][$actual_agent['status']]))
$actual_os_root['counters'][$actual_agent['status']]++;
}
else {
$actual_agent['children'][] = $module;
}
}
else {
// The first iteration don't enter here
if ($actual_os_root['id'] !== null) {
// Add the agent to the module group
$actual_os_root['children'][] = $actual_agent;
// Add the os the branch
$nodes[] = $actual_os_root;
}
// Create new module group
$actual_os_root = array();
$actual_os_root['id'] = (int) $value['id_os'];
if (isset($list_os[$actual_os_root['id']])) {
$actual_os_root['name'] = $list_os[$actual_os_root['id']]['name'];
$actual_os_root['icon'] = $list_os[$actual_os_root['id']]['icon'];
}
else {
$actual_os_root['name'] = __('Other');
$actual_os_root['icon'] = 'so_other.png';
}
// Create the new agent
$actual_agent = array();
$actual_agent['id_agente'] = (int) $value['id_agente'];
$actual_agent['nombre'] = $value['agent_name'];
$actual_agent['children'] = array();
$this->processAgent(&$actual_agent, array(), false);
// Add the module to the agent
$actual_agent['children'][] = $module;
// Initialize counters
$actual_os_root['counters'] = array();
$actual_os_root['counters']['total'] = 0;
$actual_os_root['counters']['alerts'] = 0;
$actual_os_root['counters']['critical'] = 0;
$actual_os_root['counters']['warning'] = 0;
$actual_os_root['counters']['unknown'] = 0;
$actual_os_root['counters']['not_init'] = 0;
$actual_os_root['counters']['ok'] = 0;
// Increase counters
$actual_os_root['counters']['total']++;
if (isset($actual_os_root['counters'][$actual_agent['status']]))
$actual_os_root['counters'][$actual_agent['status']]++;
}
}
// If there is an agent and a module group open and not saved
if ($actual_os_root['id'] !== null) {
// Add the last agent to the module group
$actual_os_root['children'][] = $actual_agent;
// Add the last os to the branch
$nodes[] = $actual_os_root;
}
$this->tree = $nodes;
2014-12-16 16:39:00 +01:00
}
private function getGroupsRecursive($parent, $limit = null, $get_agents = true) {
2014-12-16 16:39:00 +01:00
$filter = array();
2014-12-17 18:58:34 +01:00
$filter['parent'] = $parent;
2014-12-16 16:39:00 +01:00
if (!empty($this->filter['search'])) {
$filter['nombre'] = "%" . $this->filter['search'] . "%";
}
// ACL groups
if (!empty($this->userGroups))
$filter['id_grupo'] = $this->userGroups;
2014-12-16 16:39:00 +01:00
// First filter by name and father
$groups = db_get_all_rows_filter('tgrupo', $filter, array('id_grupo', 'nombre'));
2014-12-16 16:39:00 +01:00
if (empty($groups))
$groups = array();
// Filter by status
2014-12-18 17:10:30 +01:00
$filter_status = AGENT_STATUS_ALL;
2014-12-16 16:39:00 +01:00
if (!empty($this->filter['status'])) {
2014-12-18 17:10:30 +01:00
$filter_status = $this->filter['status'];
2014-12-16 16:39:00 +01:00
}
2014-12-18 17:10:30 +01:00
foreach ($groups as $iterator => $group) {
// Counters
$group_stats = reporting_get_group_stats($group['id_grupo']);
2014-12-18 17:10:30 +01:00
$groups[$iterator]['counters'] = array();
if (!empty($group_stats)) {
$groups[$iterator]['counters']['unknown'] = $group_stats['agents_unknown'];
$groups[$iterator]['counters']['critical'] = $group_stats['agent_critical'];
$groups[$iterator]['counters']['warning'] = $group_stats['agent_warning'];
$groups[$iterator]['counters']['not_init'] = $group_stats['agent_not_init'];
$groups[$iterator]['counters']['ok'] = $group_stats['agent_ok'];
$groups[$iterator]['counters']['total'] = $group_stats['total_agents'];
}
$groups[$iterator]['status'] = $group_stats['status'];
$groups[$iterator]['icon'] = groups_get_icon($group['id_grupo']) . '.png';
// Filter by status
2014-12-18 17:10:30 +01:00
if ($filter_status != AGENT_STATUS_ALL) {
2014-12-16 16:39:00 +01:00
$remove_group = true;
2014-12-18 17:10:30 +01:00
switch ($filter_status) {
2014-12-16 16:39:00 +01:00
case AGENT_STATUS_NORMAL:
if ($groups[$iterator]['status'] === "ok")
2014-12-16 16:39:00 +01:00
$remove_group = false;
break;
case AGENT_STATUS_WARNING:
if ($groups[$iterator]['status'] === "warning")
2014-12-16 16:39:00 +01:00
$remove_group = false;
break;
case AGENT_STATUS_CRITICAL:
if ($groups[$iterator]['status'] === "critical")
2014-12-16 16:39:00 +01:00
$remove_group = false;
break;
case AGENT_STATUS_UNKNOWN:
if ($groups[$iterator]['status'] === "unknown")
2014-12-16 16:39:00 +01:00
$remove_group = false;
break;
case AGENT_STATUS_NOT_INIT:
if ($groups[$iterator]['status'] === "not_init")
2014-12-16 16:39:00 +01:00
$remove_group = false;
break;
}
2014-12-18 17:51:02 +01:00
if ($remove_group) {
2014-12-16 16:39:00 +01:00
unset($groups[$iterator]);
continue;
}
2014-12-17 18:58:34 +01:00
}
2014-12-18 17:10:30 +01:00
if (is_null($limit)) {
$groups[$iterator]['children'] =
$this->getGroupsRecursive($group['id_grupo']);
2014-12-18 17:10:30 +01:00
}
else if ($limit >= 1) {
$groups[$iterator]['children'] =
$this->getGroupsRecursive(
2014-12-18 17:10:30 +01:00
$group['id_grupo'],
($limit - 1));
2014-12-16 16:39:00 +01:00
}
switch ($this->countAgentStatusMethod) {
case 'on_demand':
$groups[$iterator]['searchCounters'] = 1;
break;
case 'live':
$groups[$iterator]['searchCounters'] = 0;
break;
}
switch ($this->childrenMethod) {
case 'on_demand':
// if (!empty($groups[$iterator]['children'])) {
// $groups[$iterator]['searchChildren'] = 1;
// }
// else {
// $groups[$iterator]['searchChildren'] = 0;
// }
$groups[$iterator]['searchChildren'] = 0;
2014-12-18 18:49:57 +01:00
break;
case 'live':
$groups[$iterator]['searchChildren'] = 0;
2014-12-18 18:49:57 +01:00
break;
}
2014-12-16 16:39:00 +01:00
$groups[$iterator]['type'] = 'group';
$groups[$iterator]['name'] = $groups[$iterator]['nombre'];
$groups[$iterator]['id'] = $groups[$iterator]['id_grupo'];
}
if (!empty($parent) && $get_agents) {
$agents = $this->getAgents($parent, 'group');
if (!empty($agents))
$groups = array_merge($groups, $agents);
2014-12-16 16:39:00 +01:00
}
return $groups;
2014-12-16 16:39:00 +01:00
}
public function getDataGroup() {
// Get the parent
if (empty($this->root))
$parent = 0;
else
$parent = $this->root;
$groups = $this->getGroupsRecursive($parent);
if (empty($groups))
$groups = array();
$this->tree = $groups;
}
private function processModule (&$module) {
$module['type'] = 'module';
2015-01-02 09:45:53 +01:00
$module['id'] = (int) $module['id_agente_modulo'];
$module['name'] = $module['nombre'];
2015-01-02 09:45:53 +01:00
$module['id_module_type'] = (int) $module['id_tipo_modulo'];
// $module['icon'] = modules_get_type_icon($module['id_tipo_modulo']);
$module['value'] = modules_get_last_value($module['id']);
// Status
switch (modules_get_status($module['id'])) {
case AGENT_MODULE_STATUS_CRITICAL_BAD:
case AGENT_MODULE_STATUS_CRITICAL_ALERT:
$module['status'] = "critical";
break;
case AGENT_MODULE_STATUS_WARNING:
case AGENT_MODULE_STATUS_WARNING_ALERT:
$module['status'] = "warning";
break;
case AGENT_MODULE_STATUS_UNKNOWN:
$module['status'] = "unknown";
break;
case AGENT_MODULE_STATUS_NO_DATA:
case AGENT_MODULE_STATUS_NOT_INIT:
$module['status'] = "not_init";
break;
case AGENT_MODULE_STATUS_NORMAL:
case AGENT_MODULE_STATUS_NORMAL_ALERT:
default:
$module['status'] = "ok";
break;
}
}
private function processModules ($modules_aux, &$modules) {
if (!empty($modules_aux)) {
foreach ($modules_aux as $module) {
$this->processModule($module);
$modules[] = $module;
}
}
}
public function getModules ($parent = 0, $filter = array()) {
$modules = array();
$modules_aux = agents_get_modules($parent,
array('id_agente_modulo', 'nombre', 'id_tipo_modulo'), $filter);
2014-12-19 18:13:47 +01:00
if (empty($modules_aux))
$modules_aux = array();
2014-12-19 18:13:47 +01:00
// Process the modules
$this->processModules($modules_aux, $modules);
return $modules;
2014-12-19 18:13:47 +01:00
}
public function getDataModules() {
// Get the parent
if (empty($this->root))
$parent = 0;
else
$parent = $this->root;
// ACL Group
$group_acl = "";
if (!empty($this->userGroups)) {
$user_groups_str = implode(",", $this->userGroups);
$group_acl = " AND ta.id_grupo IN ($user_groups_str) ";
}
$sql = "SELECT tam.nombre AS module_name, tam.id_agente_modulo, tam.id_tipo_modulo,
ta.id_agente, ta.nombre AS agent_name
FROM tagente ta, tagente_modulo tam
WHERE ta.id_agente = tam.id_agente
$group_acl
ORDER BY tam.nombre";
$data = db_process_sql($sql);
if (empty($data)) {
$data = array();
}
$modules = array();
$actual_module_root = array(
'name' => '',
'children' => array(),
'counters' => array()
);
foreach ($data as $key => $value) {
$agent = array();
$agent['id_agente'] = $value['id_agente'];
$agent['nombre'] = $value['agent_name'];
$this->processAgent(&$agent, array(), false);
$module = array();
$module['id_agente_modulo'] = $value['id_agente_modulo'];
$module['nombre'] = $value['module_name'];
$module['id_tipo_modulo'] = $value['id_tipo_modulo'];
$this->processModule($module);
$agent['children'] = array($module);
if ($actual_module_root['name'] == $module['name']) {
$actual_module_root['children'][] = $agent;
// Increase counters
$actual_module_root['counters']['total']++;
if (isset($actual_module_root['counters'][$agent['status']]))
$actual_module_root['counters'][$agent['status']]++;
}
else {
if (!empty($actual_module_root['name']))
$modules[] = $actual_module_root;
$actual_module_root = array();
$actual_module_root['name'] = $module['name'];
$actual_module_root['children'] = array($agent);
// Initialize counters
$actual_module_root['counters'] = array();
$actual_module_root['counters']['total'] = 0;
$actual_module_root['counters']['alerts'] = 0;
$actual_module_root['counters']['critical'] = 0;
$actual_module_root['counters']['warning'] = 0;
$actual_module_root['counters']['unknown'] = 0;
$actual_module_root['counters']['not_init'] = 0;
$actual_module_root['counters']['ok'] = 0;
// Increase counters
$actual_module_root['counters']['total']++;
if (isset($actual_module_root['counters'][$agent['status']]))
$actual_module_root['counters'][$agent['status']]++;
}
}
if (!empty($actual_module_root['name'])) {
$modules[] = $actual_module_root;
}
$this->tree = $modules;
}
private function processAgent (&$agent, $modulesFilter = array(), $searchChildren = true) {
$agent['type'] = 'agent';
2015-01-02 09:45:53 +01:00
$agent['id'] = (int) $agent['id_agente'];
$agent['name'] = $agent['nombre'];
// Counters
$agent['counters'] = array();
$agent['counters']['unknown'] =
agents_monitor_unknown($agent['id']);
$agent['counters']['critical'] =
agents_monitor_critical($agent['id']);
$agent['counters']['warning'] =
agents_monitor_warning($agent['id']);
$agent['counters']['not_init'] =
agents_monitor_notinit($agent['id']);
$agent['counters']['ok'] =
agents_monitor_ok($agent['id']);
$agent['counters']['total'] =
agents_monitor_total($agent['id']);
$agent['counters']['alerts'] =
agents_get_alerts_fired($agent['id']);
// Status
switch (agents_get_status($agent['id'])) {
case AGENT_STATUS_NORMAL:
$agent['status'] = "ok";
break;
case AGENT_STATUS_WARNING:
$agent['status'] = "warning";
break;
case AGENT_STATUS_CRITICAL:
$agent['status'] = "critical";
break;
case AGENT_STATUS_UNKNOWN:
$agent['status'] = "unknown";
break;
case AGENT_STATUS_NOT_INIT:
$agent['status'] = "not_init";
break;
default:
$agent['status'] = "none";
break;
}
// Children
$agent['children'] = array();
if ($agent['counters']['total'] > 0) {
switch ($this->childrenMethod) {
case 'on_demand':
$agent['searchChildren'] = 1;
break;
case 'live':
$agent['searchChildren'] = 0;
if ($searchChildren)
$agent['children'] = $this->getModules($agent['id'], $modulesFilter);
break;
}
}
else {
switch ($this->childrenMethod) {
case 'on_demand':
$agent['searchChildren'] = 0;
break;
case 'live':
$agent['searchChildren'] = 0;
break;
}
}
}
private function processAgents (&$agents, $modulesFilter = array()) {
if (!empty($agents)) {
foreach ($agents as $iterator => $agent) {
$this->processAgent($agents[$iterator], $modulesFilter);
}
}
}
public function getAgents ($parent = 0, $parentType = '') {
switch ($parentType) {
2014-12-18 17:51:02 +01:00
case 'group':
// ACL Groups
if (!empty($this->userGroups) && !empty($parent)) {
if (!isset($this->userGroups[$parent]))
return array();
}
2014-12-18 17:51:02 +01:00
$filter = array(
'id_grupo' => $parent,
2014-12-18 17:51:02 +01:00
'status' => $this->filter['status'],
'nombre' => "%" . $this->filter['search'] . "%"
);
$agents = agents_get_agents($filter, array('id_agente', 'nombre'));
2014-12-18 17:51:02 +01:00
if (empty($agents)) {
$agents = array();
}
break;
default:
return array();
break;
2014-12-18 17:51:02 +01:00
}
$this->processAgents($agents);
2014-12-18 17:51:02 +01:00
return $agents;
}
public function getDataAgents($type, $id) {
}
2014-12-17 18:58:34 +01:00
public function getDataModuleGroup() {
// Get the parent
if (empty($this->root))
$parent = 0;
else
$parent = $this->root;
// ACL Group
$group_acl = "";
if (!empty($this->userGroups)) {
$user_groups_str = implode(",", $this->userGroups);
$group_acl = " AND ta.id_grupo IN ($user_groups_str) ";
}
$module_groups = modules_get_modulegroups();
if (!empty($module_groups)) {
$sql = "SELECT tam.nombre AS module_name, tam.id_agente_modulo,
tam.id_tipo_modulo, tam.id_module_group,
ta.id_agente, ta.nombre AS agent_name
FROM tagente ta, tagente_modulo tam
WHERE ta.id_agente = tam.id_agente
$group_acl
ORDER BY tam.id_module_group ASC, ta.id_agente ASC";
$data = db_process_sql($sql);
}
if (empty($data)) {
$data = array();
}
$nodes = array();
$actual_module_group_root = array(
'id' => null,
'name' => '',
'children' => array(),
'counters' => array()
);
$actual_agent = array();
foreach ($data as $key => $value) {
// Module
$module = array();
$module['id_agente_modulo'] = (int) $value['id_agente_modulo'];
$module['nombre'] = $value['module_name'];
$module['id_tipo_modulo'] = (int) $value['id_tipo_modulo'];
$module['id_module_group'] = (int) $value['id_module_group'];
$this->processModule($module);
// Module group
if ($actual_module_group_root['id'] === $module['id_module_group']) {
// Agent
if (empty($actual_agent) || $actual_agent['id'] !== (int)$value['id_agente']) {
// Add the last agent to the agent module
if (!empty($actual_agent))
$actual_module_group_root['children'][] = $actual_agent;
// Create the new agent
$actual_agent = array();
2015-01-02 09:45:53 +01:00
$actual_agent['id_agente'] = (int) $value['id_agente'];
$actual_agent['nombre'] = $value['agent_name'];
$actual_agent['children'] = array();
$this->processAgent(&$actual_agent, array(), false);
// Add the module to the agent
$actual_agent['children'][] = $module;
// Increase counters
$actual_module_group_root['counters']['total']++;
if (isset($actual_module_group_root['counters'][$actual_agent['status']]))
$actual_module_group_root['counters'][$actual_agent['status']]++;
}
else {
$actual_agent['children'][] = $module;
}
}
else {
2015-01-02 09:45:53 +01:00
// The first iteration don't enter here
if ($actual_module_group_root['id'] !== null) {
2015-01-02 09:45:53 +01:00
// Add the agent to the module group
$actual_module_group_root['children'][] = $actual_agent;
2015-01-02 09:45:53 +01:00
// Add the module group to the branch
$nodes[] = $actual_module_group_root;
}
2015-01-02 09:45:53 +01:00
// Create the new agent
$actual_agent = array();
$actual_agent['id_agente'] = (int) $value['id_agente'];
$actual_agent['nombre'] = $value['agent_name'];
$actual_agent['children'] = array();
$this->processAgent(&$actual_agent, array(), false);
// Add the module to the agent
$actual_agent['children'][] = $module;
// Create new module group
$actual_module_group_root = array();
2015-01-02 09:45:53 +01:00
$actual_module_group_root['id'] = (int) $module['id_module_group'];
if (isset($module_groups[$module['id_module_group']])) {
$actual_module_group_root['name'] = $module_groups[$module['id_module_group']];
}
else {
$actual_module_group_root['name'] = __('Not assigned');
}
// Initialize counters
$actual_module_group_root['counters'] = array();
$actual_module_group_root['counters']['total'] = 0;
$actual_module_group_root['counters']['alerts'] = 0;
$actual_module_group_root['counters']['critical'] = 0;
$actual_module_group_root['counters']['warning'] = 0;
$actual_module_group_root['counters']['unknown'] = 0;
$actual_module_group_root['counters']['not_init'] = 0;
$actual_module_group_root['counters']['ok'] = 0;
// Increase counters
$actual_module_group_root['counters']['total']++;
if (isset($actual_module_group_root['counters'][$actual_agent['status']]))
$actual_module_group_root['counters'][$actual_agent['status']]++;
}
}
2015-01-02 09:45:53 +01:00
// If there is an agent and a module group open and not saved
if ($actual_module_group_root['id'] !== null) {
2015-01-02 09:45:53 +01:00
// Add the last agent to the module group
$actual_module_group_root['children'][] = $actual_agent;
2015-01-02 09:45:53 +01:00
// Add the last module group to the branch
$nodes[] = $actual_module_group_root;
}
$this->tree = $nodes;
2014-12-16 16:39:00 +01:00
}
2014-12-17 18:58:34 +01:00
public function getDataTag() {
2014-12-16 16:39:00 +01:00
}
2014-12-17 18:58:34 +01:00
public function getJSON() {
$this->getData();
2014-12-16 16:39:00 +01:00
return json_encode($this->tree);
}
2014-12-17 18:58:34 +01:00
public function getArray() {
$this->getData();
return $this->tree;
}
2014-12-16 16:39:00 +01:00
}
?>