diff --git a/pandora_console/images/status_sets/default/module_unknown_ball.png b/pandora_console/images/status_sets/default/module_unknown_ball.png index 7d0e20ea74..4d0ff8b35a 100755 Binary files a/pandora_console/images/status_sets/default/module_unknown_ball.png and b/pandora_console/images/status_sets/default/module_unknown_ball.png differ diff --git a/pandora_console/images/tree/branch.png b/pandora_console/images/tree/branch.png new file mode 100644 index 0000000000..dac28141c7 Binary files /dev/null and b/pandora_console/images/tree/branch.png differ diff --git a/pandora_console/images/tree/closed.png b/pandora_console/images/tree/closed.png new file mode 100644 index 0000000000..a0beb9bfd9 Binary files /dev/null and b/pandora_console/images/tree/closed.png differ diff --git a/pandora_console/images/tree/expanded.png b/pandora_console/images/tree/expanded.png new file mode 100644 index 0000000000..a5249e42b4 Binary files /dev/null and b/pandora_console/images/tree/expanded.png differ diff --git a/pandora_console/images/tree/first_closed.png b/pandora_console/images/tree/first_closed.png new file mode 100644 index 0000000000..7a3673c7c2 Binary files /dev/null and b/pandora_console/images/tree/first_closed.png differ diff --git a/pandora_console/images/tree/first_expanded.png b/pandora_console/images/tree/first_expanded.png new file mode 100644 index 0000000000..ef8d30aaa0 Binary files /dev/null and b/pandora_console/images/tree/first_expanded.png differ diff --git a/pandora_console/images/tree/first_leaf.png b/pandora_console/images/tree/first_leaf.png new file mode 100644 index 0000000000..e85d78d93a Binary files /dev/null and b/pandora_console/images/tree/first_leaf.png differ diff --git a/pandora_console/images/tree/last_closed.png b/pandora_console/images/tree/last_closed.png new file mode 100644 index 0000000000..4e07936700 Binary files /dev/null and b/pandora_console/images/tree/last_closed.png differ diff --git a/pandora_console/images/tree/last_expanded.png b/pandora_console/images/tree/last_expanded.png new file mode 100644 index 0000000000..8411630167 Binary files /dev/null and b/pandora_console/images/tree/last_expanded.png differ diff --git a/pandora_console/images/tree/last_leaf.png b/pandora_console/images/tree/last_leaf.png new file mode 100644 index 0000000000..5e75cc5343 Binary files /dev/null and b/pandora_console/images/tree/last_leaf.png differ diff --git a/pandora_console/images/tree/leaf.png b/pandora_console/images/tree/leaf.png new file mode 100644 index 0000000000..52ffb066cb Binary files /dev/null and b/pandora_console/images/tree/leaf.png differ diff --git a/pandora_console/images/tree/no_branch.png b/pandora_console/images/tree/no_branch.png new file mode 100644 index 0000000000..8e97d8b10a Binary files /dev/null and b/pandora_console/images/tree/no_branch.png differ diff --git a/pandora_console/images/tree/one_closed.png b/pandora_console/images/tree/one_closed.png new file mode 100755 index 0000000000..db9d336b17 Binary files /dev/null and b/pandora_console/images/tree/one_closed.png differ diff --git a/pandora_console/images/tree/one_expanded.png b/pandora_console/images/tree/one_expanded.png new file mode 100755 index 0000000000..577c4bf6ce Binary files /dev/null and b/pandora_console/images/tree/one_expanded.png differ diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index db2ab3e94d..2ff6afe878 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -67,25 +67,15 @@ if ($search_modules) { if ($get_module_detail) { - - ui_include_time_picker(); - - ui_require_jquery_file("ui.datepicker-" . get_user_language(), - "include/javascript/i18n/"); - - ui_require_jquery_file ("ui-timepicker-addon"); // This script is included manually to be included after jquery and avoid error - echo ''; - ui_require_jquery_file("ui.datepicker-" . get_user_language(), - "include/javascript/i18n/"); + ui_include_time_picker(); + ui_require_jquery_file("ui.datepicker-" . get_user_language(), "include/javascript/i18n/"); - $module_id = get_parameter ('id_module'); - $period = get_parameter ("period", 86400); + $module_id = (int) get_parameter('id_module'); + $period = (int) get_parameter("period", 86400); $group = agents_get_agentmodule_group ($module_id); - $agentId = get_parameter("id_agent"); - $server_name = get_parameter('server_name'); + $agentId = (int) get_parameter("id_agent"); + $server_name = (string) get_parameter('server_name'); if (defined ('METACONSOLE')) { $server = metaconsole_get_connection ($server_name); diff --git a/pandora_console/include/ajax/tree.ajax.php b/pandora_console/include/ajax/tree.ajax.php new file mode 100644 index 0000000000..6c44b591fb --- /dev/null +++ b/pandora_console/include/ajax/tree.ajax.php @@ -0,0 +1,131 @@ + '', 'statusAgent' => AGENT_STATUS_ALL)); + $id = (int)get_parameter('id', 0); + $childrenMethod = get_parameter('childrenMethod', 'on_demand'); + $countModuleStatusMethod = get_parameter('countModuleStatusMethod', 'on_demand'); + $countAgentStatusMethod = get_parameter('countAgentStatusMethod', 'live'); + + if (class_exists('TreeEnterprise')) { + $tree = new TreeEnterprise($type, + $id, + $childrenMethod, + $countModuleStatusMethod, + $countAgentStatusMethod + ); + } + else { + $tree = new Tree($type, + $id, + $childrenMethod, + $countModuleStatusMethod, + $countAgentStatusMethod + ); + } + + $tree->setFilter(array( + 'statusAgent' => $filter['statusAgent'], + 'searchAgent' => $filter['searchAgent']) + ); + echo json_encode(array('success' => 1, 'tree' => $tree->getArray())); + return; + } + + if ($getGroupStatus) { + $id = (int)get_parameter('id', 0); + $type = get_parameter('type', 'group'); + $id = 0; + + $status = array(); + + switch ($type) { + case 'group': + $data = reporting_get_group_stats($id); + + $status['unknown'] = $data['agents_unknown']; + $status['critical'] = $data['agent_critical']; + $status['warning'] = $data['agent_warning']; + $status['not_init'] = $data['agent_not_init']; + $status['ok'] = $data['agent_ok']; + $status['total'] = $data['total_agents']; + $status['status'] = $data['status']; + $status['alert_fired'] = $data['alert_fired']; + + echo json_encode($status); + break; + } + return; + } + + if ($get_detail) { + require_once($config['homedir']."/include/functions_treeview.php"); + + // Clean the output + ob_clean(); + + $id = (int) get_parameter('id'); + $type = (string) get_parameter('type'); + + $server = array(); + if (defined ('METACONSOLE')) { + $server_name = (string) get_parameter('server'); + $server = metaconsole_get_connection($server_name); + metaconsole_connect($server); + } + + switch ($type) { + case 'agent': + treeview_printTable($id, $server); + break; + case 'module': + treeview_printModuleTable($id, $server); + break; + case 'alert': + treeview_printAlertsTable($id, $server); + break; + default: + // Nothing + break; + } + + if (!empty($server) && defined ('METACONSOLE')) { + metaconsole_restore_db(); + } + + return; + } + + return; +} +?> \ No newline at end of file diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php new file mode 100644 index 0000000000..d28910ba58 --- /dev/null +++ b/pandora_console/include/class/Tree.class.php @@ -0,0 +1,1522 @@ +type = $type; + $this->root = $root; + $this->childrenMethod = $childrenMethod; + $this->countModuleStatusMethod = $countModuleStatusMethod; + $this->countAgentStatusMethod = $countAgentStatusMethod; + + $userGroups = users_get_groups(); + + if (empty($userGroups)) + $this->userGroups = false; + else + $this->userGroups = $userGroups; + + global $config; + include_once($config['homedir']."/include/functions_servers.php"); + } + + public function setType($type) { + $this->type = $type; + } + + public function setFilter($filter) { + $this->filter = $filter; + } + + protected function processModule (&$module) { + global $config; + + $module['type'] = 'module'; + $module['id'] = (int) $module['id_agente_modulo']; + $module['name'] = $module['nombre']; + $module['id_module_type'] = (int) $module['id_tipo_modulo']; + $module['server_type'] = (int) $module['id_modulo']; + // $module['icon'] = modules_get_type_icon($module['id_tipo_modulo']); + + if (!isset($module['value'])) + $module['value'] = modules_get_last_value($module['id']); + + // Status + switch ($module['status']) { + case AGENT_MODULE_STATUS_CRITICAL_ALERT: + $module['alert'] = 1; + case AGENT_MODULE_STATUS_CRITICAL_BAD: + $statusType = STATUS_MODULE_CRITICAL_BALL; + $statusTitle = __('CRITICAL'); + $module['statusText'] = "critical"; + break; + case AGENT_MODULE_STATUS_WARNING_ALERT: + $module['alert'] = 1; + case AGENT_MODULE_STATUS_WARNING: + $statusType = STATUS_MODULE_WARNING_BALL; + $statusTitle = __('WARNING'); + $module['statusText'] = "warning"; + break; + case AGENT_MODULE_STATUS_UNKNOWN: + $statusType = STATUS_MODULE_UNKNOWN_BALL; + $statusTitle = __('UNKNOWN'); + $module['statusText'] = "unknown"; + break; + case AGENT_MODULE_STATUS_NO_DATA: + case AGENT_MODULE_STATUS_NOT_INIT: + $statusType = STATUS_MODULE_NO_DATA_BALL; + $statusTitle = __('NO DATA'); + $module['statusText'] = "not_init"; + break; + case AGENT_MODULE_STATUS_NORMAL_ALERT: + $module['alert'] = 1; + case AGENT_MODULE_STATUS_NORMAL: + default: + $statusType = STATUS_MODULE_OK_BALL; + $statusTitle = __('NORMAL'); + $module['statusText'] = "ok"; + break; + } + + if ($statusType !== STATUS_MODULE_UNKNOWN_BALL + && $statusType !== STATUS_MODULE_NO_DATA_BALL) { + if (is_numeric($module["value"])) { + $statusTitle .= " : " . format_for_graph($module["value"]); + } + else { + $statusTitle .= " : " . substr(io_safe_output($module["value"]),0,42); + } + } + + $module['statusImageHTML'] = ui_print_status_image($statusType, $statusTitle, true); + + // HTML of the server type image + $module['serverTypeHTML'] = servers_show_type($module['server_type']); + + // Link to the Module graph + $graphType = return_graphtype($module['id']); + $winHandle = dechex(crc32($module['id'] . $module['name'])); + + $moduleGraphURL = $config['homeurl'] . + "/operation/agentes/stat_win.php?" . + "type=$graphType&" . + "period=86400&" . + "id=" . $module['id'] . "&" . + "label=" . rawurlencode(urlencode(base64_encode($module['name']))) . "&" . + "refresh=600"; + + $module['moduleGraph'] = array( + 'url' => $moduleGraphURL, + 'handle' => $winHandle + ); + } + + protected function processModules ($modules_aux, &$modules) { + $counters = false; + + if (!empty($modules_aux)) { + $counters = array( + 'critical' => 0, + 'warning' => 0, + 'ok' => 0, + 'not_init' => 0, + 'unknown' => 0, + 'alerts' => 0 + ); + + foreach ($modules_aux as $module) { + $this->processModule($module); + $modules[] = $module; + + if (isset($counters[$module['statusText']])) + $counters[$module['statusText']]++; + if ($module['alert']) + $counters['alerts']++; + } + } + return $counters; + } + + protected function getModules ($parent = 0, $filter = array()) { + $modules = array(); + + $modules_aux = agents_get_modules($parent, + array('id_agente_modulo', 'nombre', 'id_tipo_modulo', 'id_modulo'), $filter); + + if (empty($modules_aux)) + $modules_aux = array(); + + // Process the modules + $this->processModules($modules_aux, $modules); + + return $modules; + } + + protected function processAgent (&$agent, $modulesFilter = array(), $searchChildren = true) { + $agent['type'] = 'agent'; + $agent['id'] = (int) $agent['id_agente']; + $agent['name'] = $agent['nombre']; + + // Counters + if (empty($agent['counters'])) { + $agent['counters'] = array(); + + if (isset($agent['unknown_count'])) + $agent['counters']['unknown'] = $agent['unknown_count']; + else + $agent['counters']['unknown'] = agents_monitor_unknown($agent['id']); + + if (isset($agent['critical_count'])) + $agent['counters']['critical'] = $agent['critical_count']; + else + $agent['counters']['critical'] = agents_monitor_critical($agent['id']); + + if (isset($agent['warning_count'])) + $agent['counters']['warning'] = $agent['warning_count']; + else + $agent['counters']['warning'] = agents_monitor_warning($agent['id']); + + if (isset($agent['notinit_count'])) + $agent['counters']['not_init'] = $agent['notinit_count']; + else + $agent['counters']['not_init'] = agents_monitor_notinit($agent['id']); + + if (isset($agent['normal_count'])) + $agent['counters']['ok'] = $agent['normal_count']; + else + $agent['counters']['ok'] = agents_monitor_ok($agent['id']); + + if (isset($agent['total_count'])) + $agent['counters']['total'] = $agent['total_count']; + else + $agent['counters']['total'] = agents_monitor_total($agent['id']); + + if (isset($agent['fired_count'])) + $agent['counters']['alerts'] = $agent['fired_count']; + else + $agent['counters']['alerts'] = agents_get_alerts_fired($agent['id']); + } + + // Status image + $agent['statusImageHTML'] = agents_tree_view_status_img_ball( + $agent['counters']['critical'], + $agent['counters']['warning'], + $agent['counters']['unknown'], + $agent['counters']['total'], + $agent['counters']['not_init']); + + // Alerts fired image + $agent["alertImageHTML"] = agents_tree_view_alert_img_ball($agent['counters']['alerts']); + + // Status + $agent['statusRaw'] = agents_get_status($agent['id']); + switch ($agent['statusRaw']) { + 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 + if (empty($agent['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; + } + } + } + } + + protected function processAgents (&$agents, $modulesFilter = array()) { + if (!empty($agents)) { + foreach ($agents as $iterator => $agent) { + $this->processAgent($agents[$iterator], $modulesFilter); + } + } + } + + protected function getAgents ($parent = 0, $parentType = '') { + // Agent name filter + $agent_search = ""; + if (!empty($this->filter['searchAgent'])) { + $agent_search = " AND ta.nombre LIKE '%".$this->filter['searchAgent']."%' "; + } + + // Module name filter + $module_search = ""; + if (!empty($this->filter['searchModule'])) { + $module_search = " AND tam.nombre LIKE '%".$this->filter['searchModule']."%' "; + } + + switch ($parentType) { + case 'group': + // ACL Groups + if (isset($this->userGroups) && $this->userGroups === false) + return array(); + + if (!empty($this->userGroups) && !empty($parent)) { + if (!isset($this->userGroups[$parent])) + return array(); + } + // TODO: Check ACL + + // Get the agents. The modules are optional (LEFT JOIN), like their status + $sql = "SELECT ta.id_agente, ta.nombre AS agent_name, ta.fired_count, + ta.normal_count, ta.warning_count, ta.critical_count, + ta.unknown_count, ta.notinit_count, ta.total_count, + tam.id_agente_modulo, tam.nombre AS module_name, + tam.id_tipo_modulo, tam.id_modulo, tae.estado, tae.datos + FROM tagente AS ta + LEFT JOIN tagente_modulo AS tam + LEFT JOIN tagente_estado AS tae + ON tam.id_agente_modulo IS NOT NULL + AND tam.id_agente_modulo = tae.id_agente_modulo + ON tam.disabled = 0 + AND ta.id_agente = tam.id_agente + $module_search + WHERE ta.id_grupo = $parent + AND ta.disabled = 0 + $agent_search + ORDER BY ta.nombre ASC, ta.id_agente ASC, tam.nombre ASC, tam.id_agente_modulo ASC"; + $data = db_process_sql($sql); + break; + case 'tag': + $groups_clause = ""; + if (!empty($this->acltags)) { + $i = 0; + $groups = array(); + foreach ($this->acltags as $group_id => $tags) { + if (!empty($tags)) { + $tags_arr = explode(',', $tags); + + if (in_array($id_tag, $tags_arr)) + $groups[] = $group_id; + } + } + if (!empty($groups)) { + $groups_str = implode(",", $groups); + $groups_clause = " AND ta.id_grupo IN ($groups_str)"; + } + } + + // Get the agents. The modules are required (INNER JOIN), although their status + $sql = "SELECT ta.id_agente, ta.nombre AS agent_name, ta.fired_count, + ta.normal_count, ta.warning_count, ta.critical_count, + ta.unknown_count, ta.notinit_count, ta.total_count, + tam.id_agente_modulo, tam.nombre AS module_name, + tam.id_tipo_modulo, tam.id_modulo, tae.estado, tae.datos + FROM tagente AS ta + INNER JOIN tagente_modulo AS tam + ON tam.disabled = 0 + AND ta.id_agente = tam.id_agente + $module_search + INNER JOIN ttag_module AS ttm + ON ttm.id_tag = $parent + AND tam.id_agente_modulo = ttm.id_agente_modulo + LEFT JOIN tagente_estado AS tae + ON tam.id_agente_modulo = tae.id_agente_modulo + WHERE ta.disabled = 0 + $groups_clause + $agent_search + ORDER BY ta.nombre ASC, ta.id_agente ASC, tam.nombre ASC, tam.id_agente_modulo ASC"; + $data = db_process_sql($sql); + break; + default: + return array(); + break; + } + + if (empty($data)) + return array(); + + $agents = array(); + $actual_agent = array(); + foreach ($data as $key => $value) { + + if (empty($actual_agent) || $actual_agent['id_agente'] != (int)$value['id_agente']) { + if (!empty($actual_agent)) { + $this->processAgent($actual_agent, array(), false); + $agents[] = $actual_agent; + } + + $actual_agent = array(); + $actual_agent['id_agente'] = (int) $value['id_agente']; + $actual_agent['nombre'] = $value['agent_name']; + + $actual_agent['children'] = array(); + + // Initialize counters + $actual_agent['counters'] = array(); + $actual_agent['counters']['total'] = 0; + $actual_agent['counters']['alerts'] = 0; + $actual_agent['counters']['critical'] = 0; + $actual_agent['counters']['warning'] = 0; + $actual_agent['counters']['unknown'] = 0; + $actual_agent['counters']['not_init'] = 0; + $actual_agent['counters']['ok'] = 0; + + // $actual_agent['counters'] = array(); + // $actual_agent['counters']['total'] = (int) $value['total_count']; + // $actual_agent['counters']['alerts'] = (int) $value['fired_count_count']; + // $actual_agent['counters']['critical'] = (int) $value['critical_count']; + // $actual_agent['counters']['warning'] = (int) $value['warning_count']; + // $actual_agent['counters']['unknown'] = (int) $value['unknown_count']; + // $actual_agent['counters']['not_init'] = (int) $value['notinit_count']; + // $actual_agent['counters']['ok'] = (int) $value['normal_count']; + } + + if (empty($value['id_agente_modulo'])) + continue; + + $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['server_type'] = (int) $value['id_modulo']; + $module['status'] = (int) $value['estado']; + $module['value'] = $value['data']; + + $this->processModule($module); + + $actual_agent['children'][] = $module; + $actual_agent['counters']['total']++; + + if (isset($actual_agent['counters'][$module['statusText']])) + $actual_agent['counters'][$module['statusText']]++; + + if ($module['alert']) + $actual_agent['counters']['alerts']++; + } + if (!empty($actual_agent)) { + $this->processAgent($actual_agent, array(), false); + $agents[] = $actual_agent; + } + + return $agents; + } + + protected function getGroupsRecursive($parent, $limit = null, $get_agents = true) { + $filter = array(); + $filter['parent'] = $parent; + + // if (!empty($this->filter['search'])) { + // $filter['nombre'] = "%" . $this->filter['search'] . "%"; + // } + // ACL groups + if (isset($this->userGroups) && $this->userGroups === false) + return array(); + + if (!empty($this->userGroups)) + $filter['id_grupo'] = array_keys($this->userGroups); + + // First filter by name and father + $groups = db_get_all_rows_filter('tgrupo', $filter, array('id_grupo', 'nombre', 'icon')); + if (empty($groups)) + $groups = array(); + + // Filter by status + // $filter_status = AGENT_STATUS_ALL; + // if (!empty($this->filter['status'])) { + // $filter_status = $this->filter['status']; + // } + + foreach ($groups as $iterator => $group) { + // Counters + $group_stats = reporting_get_group_stats($group['id_grupo']); + + $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'] = !empty($group['icon']) ? $group['icon'] . '.png' : 'without_group.png'; + + // // Filter by status + // if ($filter_status != AGENT_STATUS_ALL) { + // $remove_group = true; + // switch ($filter_status) { + // case AGENT_STATUS_NORMAL: + // if ($groups[$iterator]['status'] === "ok") + // $remove_group = false; + // break; + // case AGENT_STATUS_WARNING: + // if ($groups[$iterator]['status'] === "warning") + // $remove_group = false; + // break; + // case AGENT_STATUS_CRITICAL: + // if ($groups[$iterator]['status'] === "critical") + // $remove_group = false; + // break; + // case AGENT_STATUS_UNKNOWN: + // if ($groups[$iterator]['status'] === "unknown") + // $remove_group = false; + // break; + // case AGENT_STATUS_NOT_INIT: + // if ($groups[$iterator]['status'] === "not_init") + // $remove_group = false; + // break; + // } + + // if ($remove_group) { + // unset($groups[$iterator]); + // continue; + // } + // } + + if (is_null($limit)) { + $groups[$iterator]['children'] = + $this->getGroupsRecursive($group['id_grupo']); + } + else if ($limit >= 1) { + $groups[$iterator]['children'] = + $this->getGroupsRecursive($group['id_grupo'], ($limit - 1)); + } + + 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; + break; + case 'live': + $groups[$iterator]['searchChildren'] = 0; + break; + } + + $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); + } + + return $groups; + } + + public function getData() { + switch ($this->type) { + case 'os': + $this->getDataOS(); + break; + case 'group': + $this->getDataGroup(); + break; + case 'module_group': + $this->getDataModuleGroup(); + break; + case 'module': + $this->getDataModules(); + break; + case 'tag': + $this->getDataTag(); + break; + default: + $this->getDataExtended(); + } + } + + protected function getDataExtended () { + // Override this method to add new types + } + + private function getDataGroup() { + global $config; + + // Get the parent + if (empty($this->root)) + $parent = 0; + else + $parent = $this->root; + + // Get all groups + if (empty($parent)) { + require_once($config['homedir']."/include/functions_groups.php"); + + // Return all the children groups + function __searchChildren(&$groups, $id) { + $children = array(); + foreach ($groups as $key => $group) { + if (isset($group['_parent_id_']) && $group['_parent_id_'] == $id) { + $children[] = __getProcessedItem($key, $groups); + } + } + return $children; + } + + function __getProcessedItem($itemKey, &$items) { + if (!isset($items[$itemKey])) { + return false; + } + else { + $item = $items[$itemKey]; + unset($items[$itemKey]); + } + + $processed_item = array(); + $processed_item['id'] = $item['_id_']; + $processed_item['name'] = $item['_name_']; + $processed_item['searchChildren'] = 1; + + if (isset($item['_is_tag_']) && $item['_is_tag_']) { + $processed_item['type'] = 'tag'; + } + else { + $processed_item['type'] = 'group'; + $processed_item['parentID'] = $item['_parent_id_']; + $processed_item['iconHTML'] = $item['_iconImg_']; + } + + $counters = array(); + if (isset($item['_agents_unknown_'])) + $counters['unknown'] = $item['_agents_unknown_']; + if (isset($item['_agents_critical_'])) + $counters['critical'] = $item['_agents_critical_']; + if (isset($item['_agents_warning_'])) + $counters['warning'] = $item['_agents_warning_']; + if (isset($item['_agents_not_init_'])) + $counters['not_init'] = $item['_agents_not_init_']; + if (isset($item['_agents_ok_'])) + $counters['ok'] = $item['_agents_ok_']; + if (isset($item['_total_agents_'])) + $counters['total'] = $item['_total_agents_']; + if (isset($item['_monitors_alerts_fired_'])) + $counters['alerts'] = $item['_monitors_alerts_fired_']; + + $children = __searchChildren($items, $item['_id_']); + if (!empty($children)) { + $processed_item['children'] = $children; + + foreach ($children as $key => $child) { + if (isset($child['counters'])) { + foreach ($child['counters'] as $type => $value) { + if (isset($counters[$type])) + $counters[$type] += $value; + } + } + } + } + + if (!empty($counters)) + $processed_item['counters'] = $counters; + + return $processed_item; + } + + if (! defined ('METACONSOLE')) { + $items = group_get_data($config['id_user'], $this->strictACL, $this->acltags, false, 'tree'); + + // Build the group hierarchy + $processed_items = array(); + foreach ($items as $key => $item) { + if (empty($item['_parent_id_'])) + $processed_items[] = __getProcessedItem($key, $items); + } + $items = $processed_items; + } + else { + //enterprise_include_once("include/functions_metaconsole.php"); + $servers = metaconsole_get_servers(); + + $item_list = array(); + foreach ($servers as $server) { + if (metaconsole_connect($server) != NOERR) + continue; + + $items = group_get_data($config['id_user'], $this->strictACL, $this->acltags, false, 'tree'); + + // Build the group hierarchy + $processed_items = array(); + foreach ($items as $key => $item) { + if (empty($item['_parent_id_'])) + $processed_items[] = __getProcessedItem($key, $items); + } + $item_list[$server['id']] = $processed_items; + + metaconsole_restore_db(); + } + + function __getMergedItems($items) { + // This variable holds the result + $mergedItems = array(); + + foreach ($items as $key => $child) { + + $childrenAux = array(); + + // Store the item in a temporary element + $resultItem = $child; + // Remove the item + unset($items[$key]); + + // The 'id' parameter will be stored as 'server_id' => 'id' + $resultItem['id'] = array(); + $resultItem['id'][$child['server_id']] = $child['id']; + + // Initialize counters if any of it don't exist + if (!isset($resultItem['counters'])) + $resultItem['counters'] = array(); + if (!isset($resultItem['counters']['unknown'])) + $resultItem['counters']['unknown'] = 0; + if (!isset($resultItem['counters']['critical'])) + $resultItem['counters']['critical'] = 0; + if (!isset($resultItem['counters']['warning'])) + $resultItem['counters']['warning'] = 0; + if (!isset($resultItem['counters']['not_init'])) + $resultItem['counters']['not_init'] = 0; + if (!isset($resultItem['counters']['ok'])) + $resultItem['counters']['ok'] = 0; + if (!isset($resultItem['counters']['total'])) + $resultItem['counters']['total'] = 0; + if (!isset($resultItem['counters']['alerts'])) + $resultItem['counters']['alerts'] = 0; + + // Iterate over the list to search items that match the actual item + foreach ($items as $key2 => $child2) { + // Skip the actual or empty items + if (!isset($key) || !isset($key2) || $key == $key2) + continue; + + // Match with the name + if ($child['name'] == $child2['name'] && $child['type'] == $child2['type']) { + // Add the matched ids + $resultItem['id'][$child2['server_id']] = $child2['id']; + + // Add the matched counters + if (isset($child2['counters']) && !child2($item['counters'])) { + foreach ($child2['counters'] as $type => $value) { + if (isset($resultItem['counters'][$type])) + $resultItem['counters'][$type] += $value; + } + } + + // Add the matched children + if (isset($child2['children'])) + $childrenAux += $child2['children']; + + // Remove the item + unset($items[$key2]); + } + } + // Get the merged children (recursion) + if (!empty($childrenAux)) + $resultItem['children'] = __getMergedItems($childrenAux); + + // Add the resulting item + $mergedItems[] = $resultItem; + } + + return $mergedItems; + } + + $items = __getMergedItems($item_list); + + html_debug_print($items, true); + } + + if (empty($items)) + $items = array(); + + $this->tree = $items; + } + // Get the group agents + else { + if (! defined ('METACONSOLE')) { + $this->tree = $this->getAgents($parent, $this->type); + } + else { + function cmpSortAgentNames($a, $b) { + return strcmp($a["name"], $b["name"]); + } + + $agents = array(); + foreach ($parent as $server_id => $group_id) { + $server = metaconsole_get_servers($server_id); + + if (!empty($server)) { + if (metaconsole_connect($server) != NOERR) + continue; + + $agents += $this->tree = $this->getAgents($group_id, $this->type); + + metaconsole_restore_db(); + } + } + if (!empty($agents)) + usort($agents, "cmpSortAgentNames"); + + $this->tree = $agents; + } + } + } + + private function getDataModules() { + // ACL Group + if (isset($this->userGroups) && $this->userGroups === false) + return array(); + + $group_acl = ""; + if (!empty($this->userGroups)) { + $user_groups_str = implode(",", array_keys($this->userGroups)); + $group_acl = " AND ta.id_grupo IN ($user_groups_str) "; + } + + // Agent name filter + $agent_search = ""; + if (!empty($this->filter['searchAgent'])) { + $agent_search = " AND ta.nombre LIKE '%".$this->filter['searchAgent']."%' "; + } + + // Module name filter + $module_search = ""; + if (!empty($this->filter['searchModule'])) { + $module_search = " AND tam.nombre LIKE '%".$this->filter['searchModule']."%' "; + } + + $sql = "SELECT tam.id_agente_modulo, tam.nombre AS module_name, + tam.id_tipo_modulo, tam.id_modulo, + ta.id_agente, ta.nombre AS agent_name, ta.fired_count, + ta.normal_count, ta.warning_count, ta.critical_count, + ta.unknown_count, ta.notinit_count, ta.total_count, + tae.estado, tae.datos + FROM tagente_modulo AS tam + INNER JOIN tagente AS ta + ON ta.id_agente = tam.id_agente + AND ta.disabled = 0 + $agent_search + $group_acl + INNER JOIN tagente_estado AS tae + ON tae.id_agente_modulo = tam.id_agente_modulo + WHERE tam.disabled = 0 + $module_search + ORDER BY tam.nombre ASC, ta.nombre ASC"; + $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'] = (int) $value['id_agente']; + $agent['nombre'] = $value['agent_name']; + + $agent['counters'] = array(); + $agent['counters']['total'] = (int) $value['total_count']; + $agent['counters']['alerts'] = (int) $value['fired_count_count']; + $agent['counters']['critical'] = (int) $value['critical_count']; + $agent['counters']['warning'] = (int) $value['warning_count']; + $agent['counters']['unknown'] = (int) $value['unknown_count']; + $agent['counters']['not_init'] = (int) $value['notinit_count']; + $agent['counters']['ok'] = (int) $value['normal_count']; + + $this->processAgent($agent, array(), false); + + $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['server_type'] = (int) $value['id_modulo']; + $module['status'] = (int) $value['estado']; + $module['value'] = $value['data']; + + $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 getDataModuleGroup() { + // ACL Group + if (isset($this->userGroups) && $this->userGroups === false) + return array(); + + $group_acl = ""; + if (!empty($this->userGroups)) { + $user_groups_str = implode(",", array_keys($this->userGroups)); + $group_acl = " AND ta.id_grupo IN ($user_groups_str) "; + } + + // Agent name filter + $agent_search = ""; + if (!empty($this->filter['searchAgent'])) { + $agent_search = " AND ta.nombre LIKE '%".$this->filter['searchAgent']."%' "; + } + + // Module name filter + $module_search = ""; + if (!empty($this->filter['searchModule'])) { + $module_search = " AND tam.nombre LIKE '%".$this->filter['searchModule']."%' "; + } + + $sql = "SELECT tam.id_agente_modulo, tam.nombre AS module_name, + tam.id_tipo_modulo, tam.id_modulo, + ta.id_agente, ta.nombre AS agent_name, ta.fired_count, + ta.normal_count, ta.warning_count, ta.critical_count, + ta.unknown_count, ta.notinit_count, ta.total_count, + tmg.id_mg, tmg.name AS module_group_name, + tae.estado, tae.datos + FROM tagente_modulo AS tam + INNER JOIN tagente AS ta + ON ta.id_agente = tam.id_agente + AND ta.disabled = 0 + $agent_search + $group_acl + INNER JOIN tagente_estado AS tae + ON tae.id_agente_modulo = tam.id_agente_modulo + LEFT JOIN tmodule_group AS tmg + ON tmg.id_mg = tam.id_module_group + WHERE tam.disabled = 0 + $module_search + ORDER BY tmg.name ASC, tmg.id_mg ASC, ta.nombre ASC, tam.nombre ASC"; + $data = db_process_sql($sql); + + if (empty($data)) { + $data = array(); + } + + $nodes = array(); + $actual_module_group_root = array( + 'id' => -1, + '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_mg']; + $module['server_type'] = (int) $value['id_modulo']; + $module['status'] = (int) $value['estado']; + $module['value'] = $value['data']; + + $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(); + $actual_agent['id_agente'] = (int) $value['id_agente']; + $actual_agent['nombre'] = $value['agent_name']; + $actual_agent['children'] = array(); + + $actual_agent['counters'] = array(); + $actual_agent['counters']['total'] = (int) $value['total_count']; + $actual_agent['counters']['alerts'] = (int) $value['fired_count_count']; + $actual_agent['counters']['critical'] = (int) $value['critical_count']; + $actual_agent['counters']['warning'] = (int) $value['warning_count']; + $actual_agent['counters']['unknown'] = (int) $value['unknown_count']; + $actual_agent['counters']['not_init'] = (int) $value['notinit_count']; + $actual_agent['counters']['ok'] = (int) $value['normal_count']; + + $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 { + // The first iteration doesn't enter here + if ($actual_module_group_root['id'] !== -1) { + // Add the agent to the module group + $actual_module_group_root['children'][] = $actual_agent; + // Add the module group to the branch + $nodes[] = $actual_module_group_root; + } + + // 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(); + + $actual_agent['counters'] = array(); + $actual_agent['counters']['total'] = (int) $value['total_count']; + $actual_agent['counters']['alerts'] = (int) $value['fired_count_count']; + $actual_agent['counters']['critical'] = (int) $value['critical_count']; + $actual_agent['counters']['warning'] = (int) $value['warning_count']; + $actual_agent['counters']['unknown'] = (int) $value['unknown_count']; + $actual_agent['counters']['not_init'] = (int) $value['notinit_count']; + $actual_agent['counters']['ok'] = (int) $value['normal_count']; + + $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(); + $actual_module_group_root['id'] = $module['id_module_group']; + $actual_module_group_root['type'] = $this->type; + + if (!empty($value['module_group_name'])) { + $actual_module_group_root['name'] = $value['module_group_name']; + } + 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']]++; + } + } + // If there is an agent and a module group opened and not saved + if ($actual_module_group_root['id'] !== -1) { + // Add the last agent to the module group + $actual_module_group_root['children'][] = $actual_agent; + // Add the last module group to the branch + $nodes[] = $actual_module_group_root; + } + + $this->tree = $nodes; + } + + private function getDataOS() { + // ACL Group + if (isset($this->userGroups) && $this->userGroups === false) + return array(); + + $group_acl = ""; + if (!empty($this->userGroups)) { + $user_groups_str = implode(",", array_keys($this->userGroups)); + $group_acl = " AND ta.id_grupo IN ($user_groups_str) "; + } + + // Agent name filter + $agent_search = ""; + if (!empty($this->filter['searchAgent'])) { + $agent_search = " AND ta.nombre LIKE '%".$this->filter['searchAgent']."%' "; + } + + // Module name filter + $module_search = ""; + if (!empty($this->filter['searchModule'])) { + $module_search = " AND tam.nombre LIKE '%".$this->filter['searchModule']."%' "; + } + + $sql = "SELECT tam.id_agente_modulo, tam.nombre AS module_name, + tam.id_tipo_modulo, tam.id_modulo, + ta.id_agente, ta.nombre AS agent_name, ta.fired_count, + ta.normal_count, ta.warning_count, ta.critical_count, + ta.unknown_count, ta.notinit_count, ta.total_count, + tos.id_os, tos.name AS os_name, tos.icon_name AS os_icon, + tae.estado, tae.datos + FROM tagente_modulo AS tam + INNER JOIN tagente AS ta + ON ta.id_agente = tam.id_agente + AND ta.disabled = 0 + $agent_search + $group_acl + INNER JOIN tagente_estado AS tae + ON tae.id_agente_modulo = tam.id_agente_modulo + LEFT JOIN tconfig_os AS tos + ON tos.id_os = ta.id_os + WHERE tam.disabled = 0 + $module_search + ORDER BY tos.icon_name ASC, tos.id_os ASC, ta.nombre ASC, tam.nombre"; + $data = db_process_sql($sql); + + if (empty($data)) { + $data = array(); + } + + $nodes = array(); + $actual_os_root = array( + 'id' => -1, + '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']; + $module['server_type'] = (int) $value['id_modulo']; + $module['status'] = (int) $value['estado']; + $module['value'] = $value['datos']; + + $this->processModule($module); + + // OS item + 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 os item + 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(); + + $actual_agent['counters'] = array(); + $actual_agent['counters']['total'] = (int) $value['total_count']; + $actual_agent['counters']['alerts'] = (int) $value['fired_count_count']; + $actual_agent['counters']['critical'] = (int) $value['critical_count']; + $actual_agent['counters']['warning'] = (int) $value['warning_count']; + $actual_agent['counters']['unknown'] = (int) $value['unknown_count']; + $actual_agent['counters']['not_init'] = (int) $value['notinit_count']; + $actual_agent['counters']['ok'] = (int) $value['normal_count']; + + $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 { + // Add the module to the agent + $actual_agent['children'][] = $module; + } + } + else { + // The first iteration doesn't enter here + if ($actual_os_root['id'] !== -1) { + // Add the agent to the os item + $actual_os_root['children'][] = $actual_agent; + // Add the os the branch + $nodes[] = $actual_os_root; + } + + // Create new os item + $actual_os_root = array(); + $actual_os_root['id'] = (int) $value['id_os']; + $actual_os_root['type'] = $this->type; + + if (!empty($actual_os_root['id'])) { + $actual_os_root['name'] = $value['os_name']; + $actual_os_root['icon'] = $value['os_icon']; + } + else { + $actual_os_root['name'] = __('None'); + $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(); + + $actual_agent['counters'] = array(); + $actual_agent['counters']['total'] = (int) $value['total_count']; + $actual_agent['counters']['alerts'] = (int) $value['fired_count_count']; + $actual_agent['counters']['critical'] = (int) $value['critical_count']; + $actual_agent['counters']['warning'] = (int) $value['warning_count']; + $actual_agent['counters']['unknown'] = (int) $value['unknown_count']; + $actual_agent['counters']['not_init'] = (int) $value['notinit_count']; + $actual_agent['counters']['ok'] = (int) $value['normal_count']; + + $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 an os item opened and not saved + if ($actual_os_root['id'] !== -1) { + // Add the last agent to the os item + $actual_os_root['children'][] = $actual_agent; + // Add the last os to the branch + $nodes[] = $actual_os_root; + } + + $this->tree = $nodes; + } + + private function getDataTag() { + + // Get the parent + if (empty($this->root)) + $parent = 0; + else + $parent = $this->root; + + // Get all groups + if (empty($parent)) { + // ACL Group + if (isset($this->userGroups) && $this->userGroups === false) + return array(); + + $group_acl = ""; + if (!empty($this->userGroups)) { + $user_groups_str = implode(",", array_keys($this->userGroups)); + $group_acl = " AND ta.id_grupo IN ($user_groups_str) "; + } + + // Agent name filter + $agent_search = ""; + if (!empty($this->filter['searchAgent'])) { + $agent_search = " AND ta.nombre LIKE '%".$this->filter['searchAgent']."%' "; + } + + // Module name filter + $module_search = ""; + if (!empty($this->filter['searchModule'])) { + $module_search = " AND tam.nombre LIKE '%".$this->filter['searchModule']."%' "; + } + + $sql = "SELECT tam.id_agente_modulo, tam.nombre AS module_name, + tam.id_tipo_modulo, tam.id_modulo, + ta.id_agente, ta.nombre AS agent_name, ta.fired_count, + ta.normal_count, ta.warning_count, ta.critical_count, + ta.unknown_count, ta.notinit_count, ta.total_count, + tt.id_tag, tt.name AS tag_name, + tae.estado, tae.estado + FROM tagente_modulo AS tam + INNER JOIN tagente AS ta + ON ta.id_agente = tam.id_agente + AND ta.disabled = 0 + INNER JOIN tagente_estado AS tae + ON tae.id_agente_modulo = tam.id_agente_modulo + INNER JOIN ttag_module AS ttm + ON ttm.id_agente_modulo = tam.id_agente_modulo + INNER JOIN ttag AS tt + ON tt.id_tag = ttm.id_tag + WHERE tam.disabled = 0 + $agent_search + $module_search + $group_acl + ORDER BY tt.name ASC, tt.id_tag ASC, ta.nombre ASC, tam.nombre ASC"; + $data = db_process_sql($sql); + + if (empty($data)) { + $data = array(); + } + + $nodes = array(); + $actual_tag_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['server_type'] = (int) $value['id_modulo']; + $module['status'] = (int) $value['estado']; + $module['value'] = $value['datos']; + + $this->processModule($module); + + // Tag + if ($actual_tag_root['id'] === (int)$value['id_tag']) { + // Agent + if (empty($actual_agent) || $actual_agent['id'] !== (int)$value['id_agente']) { + // Add the last agent to the tag + if (!empty($actual_agent)) + $actual_tag_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_tag_root['counters']['total']++; + + if (isset($actual_tag_root['counters'][$actual_agent['status']])) + $actual_tag_root['counters'][$actual_agent['status']]++; + } + else { + $actual_agent['children'][] = $module; + } + } + else { + // The first iteration doesn't enter here + if ($actual_tag_root['id'] !== null) { + // Add the agent to the tag + $actual_tag_root['children'][] = $actual_agent; + // Add the tag to the branch + $nodes[] = $actual_tag_root; + } + + // 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 tag + $actual_tag_root = array(); + $actual_tag_root['id'] = (int) $value['id_tag']; + $actual_tag_root['name'] = $value['tag_name']; + $actual_tag_root['type'] = $this->type; + + // Initialize counters + $actual_tag_root['counters'] = array(); + $actual_tag_root['counters']['total'] = 0; + $actual_tag_root['counters']['alerts'] = 0; + $actual_tag_root['counters']['critical'] = 0; + $actual_tag_root['counters']['warning'] = 0; + $actual_tag_root['counters']['unknown'] = 0; + $actual_tag_root['counters']['not_init'] = 0; + $actual_tag_root['counters']['ok'] = 0; + + // Increase counters + $actual_tag_root['counters']['total']++; + + if (isset($actual_tag_root['counters'][$actual_agent['status']])) + $actual_tag_root['counters'][$actual_agent['status']]++; + } + } + // If there is an agent and a tag opened and not saved + if ($actual_tag_root['id'] !== null) { + // Add the last agent to the tag + $actual_tag_root['children'][] = $actual_agent; + // Add the last tag to the branch + $nodes[] = $actual_tag_root; + } + + $this->tree = $nodes; + } + else { + if (! defined ('METACONSOLE')) { + $this->tree = $this->getAgents($parent, $this->type); + } + else { + function cmpSortAgentNames($a, $b) { + return strcmp($a["name"], $b["name"]); + } + + $agents = array(); + foreach ($parent as $server_id => $tag_id) { + $server = metaconsole_get_servers($server_id); + + if (!empty($server)) { + if (metaconsole_connect($server) != NOERR) + continue; + + $agents += $this->tree = $this->getAgents($tag_id, $this->type); + + metaconsole_restore_db(); + } + } + if (!empty($agents)) + usort($agents, "cmpSortAgentNames"); + + $this->tree = $agents; + } + } + } + + public function getJSON() { + $this->getData(); + + return json_encode($this->tree); + } + + public function getArray() { + $this->getData(); + + return $this->tree; + } +} +?> diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php old mode 100644 new mode 100755 index 3be630f662..d6ad8bca8f --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -19,25 +19,25 @@ */ /* Enterprise hook constant */ -define ('ENTERPRISE_NOT_HOOK', -1); +define ('ENTERPRISE_NOT_HOOK', -1); /**/ -define('DATE_FORMAT', 'Y/m/d'); -define('DATE_FORMAT_JS', 'yy/mm/d'); -define('TIME_FORMAT', 'H:i:s'); -define('TIME_FORMAT_JS', 'HH:mm:ss'); +define('DATE_FORMAT', 'Y/m/d'); +define('DATE_FORMAT_JS', 'yy/mm/d'); +define('TIME_FORMAT', 'H:i:s'); +define('TIME_FORMAT_JS', 'HH:mm:ss'); /* Events state constants */ -define ('EVENT_NEW', 0); -define ('EVENT_VALIDATE', 1); -define ('EVENT_PROCESS', 2); +define ('EVENT_NEW', 0); +define ('EVENT_VALIDATE', 1); +define ('EVENT_PROCESS', 2); /* Agents disabled status */ -define ('AGENT_ENABLED',0); -define ('AGENT_DISABLED',1); +define ('AGENT_ENABLED', 0); +define ('AGENT_DISABLED', 1); @@ -97,10 +97,10 @@ define('SECONDS_3YEARS', 93312000); /* Separator constats */ -define('SEPARATOR_COLUMN', ';'); -define('SEPARATOR_ROW', chr(10)); //chr(10) = '\n' -define('SEPARATOR_COLUMN_CSV', "#"); -define('SEPARATOR_ROW_CSV', "@\n"); +define('SEPARATOR_COLUMN', ';'); +define('SEPARATOR_ROW', chr(10)); //chr(10) = '\n' +define('SEPARATOR_COLUMN_CSV', "#"); +define('SEPARATOR_ROW_CSV', "@\n"); @@ -108,72 +108,72 @@ define('SEPARATOR_ROW_CSV', "@\n"); switch ($config["dbtype"]) { case "mysql": case "postgresql": - define ('BACKUP_DIR', 'attachment/backups'); - define ('BACKUP_FULLPATH', $config['homedir'] . '/' . BACKUP_DIR); + define ('BACKUP_DIR', 'attachment/backups'); + define ('BACKUP_FULLPATH', $config['homedir'] . '/' . BACKUP_DIR); break; case "oracle": - define ('BACKUP_DIR', 'DATA_PUMP_DIR'); - define ('BACKUP_FULLPATH', 'DATA_PUMP_DIR'); + define ('BACKUP_DIR', 'DATA_PUMP_DIR'); + define ('BACKUP_FULLPATH', 'DATA_PUMP_DIR'); break; } /* Color constants */ -define('COL_CRITICAL','#f85858'); -define('COL_WARNING','#ffea59'); -define('COL_WARNING_DARK','#FFB900'); -define('COL_NORMAL','#6EB432'); -define('COL_NOTINIT','#3BA0FF'); -define('COL_UNKNOWN','#AAAAAA'); -define('COL_ALERTFIRED','#FF8800'); -define('COL_MINOR','#F099A2'); -define('COL_MAJOR','#C97A4A'); -define('COL_INFORMATIONAL','#E4E4E4'); -define('COL_MAINTENANCE','#3BA0FF'); +define('COL_CRITICAL', '#f85858'); +define('COL_WARNING', '#ffea59'); +define('COL_WARNING_DARK', '#FFB900'); +define('COL_NORMAL', '#6EB432'); +define('COL_NOTINIT', '#3BA0FF'); +define('COL_UNKNOWN', '#AAAAAA'); +define('COL_ALERTFIRED', '#FF8800'); +define('COL_MINOR', '#F099A2'); +define('COL_MAJOR', '#C97A4A'); +define('COL_INFORMATIONAL', '#E4E4E4'); +define('COL_MAINTENANCE', '#3BA0FF'); -define('COL_GRAPH1', '#C397F2'); -define('COL_GRAPH2', '#FFE66C'); -define('COL_GRAPH3', '#92CCA3'); -define('COL_GRAPH4', '#EA6D5B'); -define('COL_GRAPH5', '#6BD8DD'); -define('COL_GRAPH6', '#F49B31'); -define('COL_GRAPH7', '#999999'); -define('COL_GRAPH8', '#F2B8C1'); -define('COL_GRAPH9', '#C4E8C1'); -define('COL_GRAPH10', '#C1DBE5'); -define('COL_GRAPH11', '#C9C1e0'); -define('COL_GRAPH12', '#F45B95'); -define('COL_GRAPH13', '#E83128'); +define('COL_GRAPH1', '#C397F2'); +define('COL_GRAPH2', '#FFE66C'); +define('COL_GRAPH3', '#92CCA3'); +define('COL_GRAPH4', '#EA6D5B'); +define('COL_GRAPH5', '#6BD8DD'); +define('COL_GRAPH6', '#F49B31'); +define('COL_GRAPH7', '#999999'); +define('COL_GRAPH8', '#F2B8C1'); +define('COL_GRAPH9', '#C4E8C1'); +define('COL_GRAPH10', '#C1DBE5'); +define('COL_GRAPH11', '#C9C1e0'); +define('COL_GRAPH12', '#F45B95'); +define('COL_GRAPH13', '#E83128'); /* The styles */ /* Size of text in characters for truncate */ -define('GENERIC_SIZE_TEXT', 25); +define('GENERIC_SIZE_TEXT', 25); /* Agent module status */ -define('AGENT_MODULE_STATUS_CRITICAL_BAD', 1); -define('AGENT_MODULE_STATUS_CRITICAL_ALERT', 100); -define('AGENT_MODULE_STATUS_NO_DATA', 4); -define('AGENT_MODULE_STATUS_NORMAL', 0); -define('AGENT_MODULE_STATUS_NORMAL_ALERT', 300); -define('AGENT_MODULE_STATUS_NOT_NORMAL', 6); -define('AGENT_MODULE_STATUS_WARNING', 2); -define('AGENT_MODULE_STATUS_WARNING_ALERT', 200); -define('AGENT_MODULE_STATUS_UNKNOWN', 3); -define('AGENT_MODULE_STATUS_NOT_INIT', 5); +define('AGENT_MODULE_STATUS_CRITICAL_BAD', 1); +define('AGENT_MODULE_STATUS_CRITICAL_ALERT', 100); +define('AGENT_MODULE_STATUS_NO_DATA', 4); +define('AGENT_MODULE_STATUS_NORMAL', 0); +define('AGENT_MODULE_STATUS_NORMAL_ALERT', 300); +define('AGENT_MODULE_STATUS_NOT_NORMAL', 6); +define('AGENT_MODULE_STATUS_WARNING', 2); +define('AGENT_MODULE_STATUS_WARNING_ALERT', 200); +define('AGENT_MODULE_STATUS_UNKNOWN', 3); +define('AGENT_MODULE_STATUS_NOT_INIT', 5); /* Agent status */ -define('AGENT_STATUS_ALL', -1); -define('AGENT_STATUS_CRITICAL', 1); -define('AGENT_STATUS_NORMAL', 0); -define('AGENT_STATUS_NOT_INIT', 5); -define('AGENT_STATUS_NOT_NORMAL', 6); -define('AGENT_STATUS_UNKNOWN', 3); -define('AGENT_STATUS_ALERT_FIRED', 4); -define('AGENT_STATUS_WARNING', 2); +define('AGENT_STATUS_ALL', -1); +define('AGENT_STATUS_CRITICAL', 1); +define('AGENT_STATUS_NORMAL', 0); +define('AGENT_STATUS_NOT_INIT', 5); +define('AGENT_STATUS_NOT_NORMAL', 6); +define('AGENT_STATUS_UNKNOWN', 3); +define('AGENT_STATUS_ALERT_FIRED', 4); +define('AGENT_STATUS_WARNING', 2); /* Visual maps contants */ @@ -260,6 +260,31 @@ define ('STATUS_SERVER_OK', 'server_ok.png'); define ('STATUS_SERVER_DOWN', 'server_down.png'); +/* Status images (ball) */ +//For modules +define ('STATUS_MODULE_OK_BALL', 'module_ok_ball.png'); +define ('STATUS_MODULE_CRITICAL_BALL', 'module_critical_ball.png'); +define ('STATUS_MODULE_WARNING_BALL', 'module_warning_ball.png'); +define ('STATUS_MODULE_NO_DATA_BALL', 'module_no_data_ball.png'); +define ('STATUS_MODULE_UNKNOWN_BALL', 'module_unknown_ball.png'); +//For agents +define ('STATUS_AGENT_CRITICAL_BALL', 'agent_critical_ball.png'); +define ('STATUS_AGENT_WARNING_BALL', 'agent_warning_ball.png'); +define ('STATUS_AGENT_DOWN_BALL', 'agent_down_ball.png'); +define ('STATUS_AGENT_UNKNOWN_BALL', 'agent_unknown_ball.png'); +define ('STATUS_AGENT_OK_BALL', 'agent_ok_ball.png'); +define ('STATUS_AGENT_NO_DATA_BALL', 'agent_no_data_ball.png'); +define ('STATUS_AGENT_NO_MONITORS_BALL', 'agent_no_monitors_ball.png'); +define ('STATUS_AGENT_NOT_INIT_BALL', 'agent_notinit_ball.png'); +//For alerts +define ('STATUS_ALERT_FIRED_BALL', 'alert_fired_ball.png'); +define ('STATUS_ALERT_NOT_FIRED_BALL', 'alert_not_fired_ball.png'); +define ('STATUS_ALERT_DISABLED_BALL', 'alert_disabled_ball.png'); +//For servers +define ('STATUS_SERVER_OK_BALL', 'server_ok_ball.png'); +define ('STATUS_SERVER_DOWN_BALL', 'server_down_ball.png'); + + /* Events criticity */ define ('EVENT_CRIT_MAINTENANCE', 0); diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 144cf08a2a..22e1da590d 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -370,7 +370,8 @@ function agents_get_agents ($filter = false, $fields = false, $access = 'AR', $o $where = db_format_array_where_clause_sql ($filter, 'AND', ''); - $where_nogroup = db_format_array_where_clause_sql ($filter_nogroup, 'AND', ''); + $where_nogroup = db_format_array_where_clause_sql( + $filter_nogroup, 'AND', ''); if ($where_nogroup == '') { $where_nogroup = '1 = 1'; @@ -1861,7 +1862,7 @@ function agents_get_agent_group ($id_agent) { * @return mixed The incidents attached or false */ function agents_get_count_incidents ($id_agent) { - if (empty($id_agent)){ + if (empty($id_agent)) { return false; } @@ -2023,6 +2024,18 @@ function agents_tree_view_alert_img ($alert_fired) { } } +//Returns the alert ball image to display tree view + +function agents_tree_view_alert_img_ball ($alert_fired) { + + if ($alert_fired) { + return ui_print_status_image (STATUS_ALERT_FIRED_BALL, __('Alert fired'), true); + } + else { + return ui_print_status_image (STATUS_ALERT_NOT_FIRED_BALL, __('Alert not fired'), true); + } +} + //Returns the status image to display tree view function agents_tree_view_status_img ($critical, $warning, $unknown, $total, $notinit) { @@ -2043,7 +2056,33 @@ function agents_tree_view_status_img ($critical, $warning, $unknown, $total, $no __('At least one module is in UKNOWN status'), true); } else { - return ui_print_status_image (STATUS_AGENT_OK, __('All Monitors OK'), true); + return ui_print_status_image (STATUS_AGENT_OK, + __('All Monitors OK'), true); + } +} + +//Returns the status ball image to display tree view + +function agents_tree_view_status_img_ball ($critical, $warning, $unknown, $total, $notinit) { + if ($total == 0 || $total == $notinit) { + return ui_print_status_image (STATUS_AGENT_NO_MONITORS_BALL, + __('No Monitors'), true); + } + if ($critical > 0) { + return ui_print_status_image (STATUS_AGENT_CRITICAL_BALL, + __('At least one module in CRITICAL status'), true); + } + else if ($warning > 0) { + return ui_print_status_image (STATUS_AGENT_WARNING_BALL, + __('At least one module in WARNING status'), true); + } + else if ($unknown > 0) { + return ui_print_status_image (STATUS_AGENT_DOWN_BALL, + __('At least one module is in UKNOWN status'), true); + } + else { + return ui_print_status_image (STATUS_AGENT_OK_BALL, + __('All Monitors OK'), true); } } diff --git a/pandora_console/include/functions_groups.php b/pandora_console/include/functions_groups.php index f20fc25e3a..b49c293957 100644 --- a/pandora_console/include/functions_groups.php +++ b/pandora_console/include/functions_groups.php @@ -278,8 +278,12 @@ function groups_get_parents($parent, $onlyPropagate = false, $groups = null) { continue; } - if (($group['id_grupo'] == $parent) && ($group['propagate'] || !$onlyPropagate)) { - $return = $return + array($group['id_grupo'] => $group) + groups_get_parents($group['parent'], $onlyPropagate, $groups); + if (($group['id_grupo'] == $parent) + && ($group['propagate'] || !$onlyPropagate)) { + + $return = $return + + array($group['id_grupo'] => $group) + + groups_get_parents($group['parent'], $onlyPropagate, $groups); } } @@ -402,7 +406,10 @@ function groups_get_all($groupWithAgents = false) { global $config; if ($groupWithAgents) - $sql .= ' WHERE id_grupo IN (SELECT id_grupo FROM tagente GROUP BY id_grupo)'; + $sql .= ' WHERE id_grupo IN ( + SELECT id_grupo + FROM tagente + GROUP BY id_grupo)'; switch ($config['dbtype']) { case "mysql": @@ -1828,9 +1835,10 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu if ($id_user == false) { $id_user = $config['id_user']; } - + $user_groups = array(); $user_tags = array(); + $groups_without_tags = array(); foreach ($acltags as $group => $tags) { if ($user_strict) { //Remove groups with tags if ($tags == '') { @@ -1852,34 +1860,31 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu } else { $user_groups_ids = implode(',',array_keys($acltags)); } - - if ($user_groups_ids == '') { - $user_groups_ids == -1; - } - switch ($config["dbtype"]) { - case "mysql": - $list_groups = db_get_all_rows_sql(" - SELECT * - FROM tgrupo - WHERE id_grupo IN (" . $user_groups_ids . ") - ORDER BY nombre COLLATE utf8_general_ci ASC"); - - break; - case "postgresql": - $list_groups = db_get_all_rows_sql(" - SELECT * - FROM tgrupo - WHERE id_grupo IN (" . $user_groups_ids . ") - ORDER BY nombre ASC"); - break; - case "oracle": - $list_groups = db_get_all_rows_sql(" - SELECT * - FROM tgrupo - WHERE id_grupo IN (" . $user_groups_ids . ") - ORDER BY nombre COLLATE utf8_general_ci ASC"); - break; + if (!empty($user_groups_ids)) { + switch ($config["dbtype"]) { + case "mysql": + $list_groups = db_get_all_rows_sql(" + SELECT * + FROM tgrupo + WHERE id_grupo IN (" . $user_groups_ids . ") + ORDER BY nombre COLLATE utf8_general_ci ASC"); + break; + case "postgresql": + $list_groups = db_get_all_rows_sql(" + SELECT * + FROM tgrupo + WHERE id_grupo IN (" . $user_groups_ids . ") + ORDER BY nombre ASC"); + break; + case "oracle": + $list_groups = db_get_all_rows_sql(" + SELECT * + FROM tgrupo + WHERE id_grupo IN (" . $user_groups_ids . ") + ORDER BY nombre COLLATE utf8_general_ci ASC"); + break; + } } if ($list_groups == false) { @@ -1924,6 +1929,9 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[$i]['_name_'] = $item['nombre']; $list[$i]['_iconImg_'] = html_print_image ("images/groups_small/" . groups_get_icon($item['id_grupo']).".png", true, array ("style" => 'vertical-align: middle;')); + if ($mode == 'tree' && !empty($item['parent'])) + $list[$i]['_parent_id_'] = $item['parent']; + $list[$i]['_agents_unknown_'] = $group_stat[0]["unknown"]; $list[$i]['_monitors_alerts_fired_'] = $group_stat[0]["alerts_fired"]; $list[$i]['_total_agents_'] = $group_stat[0]["agents"]; @@ -1936,7 +1944,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[$i]['_monitors_not_init_'] = groups_monitor_not_init($id, $user_strict, $id); $list[$i]['_agents_not_init_'] = groups_agent_not_init ($id, $user_strict, $id); - if ($mode == 'tactical') { + if ($mode == 'tactical' || $mode == 'tree') { $list[$i]['_agents_ok_'] = $group_stat[0]["normal"]; $list[$i]['_agents_warning_'] = $group_stat[0]["warning"]; $list[$i]['_agents_critical_'] = $group_stat[0]["critical"]; @@ -1945,7 +1953,8 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[$i]["_monitor_alerts_fire_count_"] = $group_stat[0]["alerts_fired"]; $list[$i]["_total_checks_"] = $group_stat[0]["modules"]; $list[$i]["_total_alerts_"] = $group_stat[0]["alerts"]; - + } + if ($mode == 'tactical') { // Get total count of monitors for this group, except disabled. $list[$i]["_monitor_checks_"] = $list[$i]["_monitors_not_init_"] + $list[$i]["_monitors_unknown_"] + $list[$i]["_monitors_warning_"] + $list[$i]["_monitors_critical_"] + $list[$i]["_monitors_ok_"]; @@ -2002,7 +2011,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[0]['_monitors_not_init_'] += $list[$i]['_monitors_not_init_']; $list[0]['_agents_not_init_'] += $list[$i]['_agents_not_init_']; - if ($mode == 'tactical') { + if ($mode == 'tactical' || $mode == 'tree') { $list[0]['_agents_ok_'] += $group_stat[0]["normal"]; $list[0]['_agents_warning_'] += $group_stat[0]["warning"]; $list[0]['_agents_critical_'] += $group_stat[0]["critical"]; @@ -2010,7 +2019,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu } } - if ($mode == 'group') { + if ($mode == 'group' || $mode == 'tree') { if (! defined ('METACONSOLE')) { if (($list[$i]['_agents_unknown_'] == 0) && ($list[$i]['_monitors_alerts_fired_'] == 0) && ($list[$i]['_total_agents_'] == 0) && ($list[$i]['_monitors_ok_'] == 0) && ($list[$i]['_monitors_critical_'] == 0) && ($list[$i]['_monitors_warning_'] == 0) && ($list[$i]['_monitors_unknown_'] == 0) && ($list[$i]['_monitors_not_init_'] == 0) && ($list[$i]['_agents_not_init_'] == 0)) { unset($list[$i]); @@ -2027,6 +2036,9 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[$i]['_name_'] = $item['nombre']; $list[$i]['_iconImg_'] = html_print_image ("images/groups_small/" . groups_get_icon($item['id_grupo']).".png", true, array ("style" => 'vertical-align: middle;')); + if ($mode == 'tree' && !empty($item['parent'])) + $list[$i]['_parent_id_'] = $item['parent']; + $list[$i]['_monitors_ok_'] = groups_monitor_ok($id, $user_strict, $id); $list[$i]['_monitors_critical_'] = groups_monitor_critical($id, $user_strict, $id); $list[$i]['_monitors_warning_'] = groups_monitor_warning($id, $user_strict, $id); @@ -2037,7 +2049,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[$i]['_monitors_not_init_'] = groups_monitor_not_init($id, $user_strict, $id); $list[$i]['_agents_not_init_'] = groups_agent_not_init ($id, $user_strict, $id); - if ($mode == 'tactical') { + if ($mode == 'tactical' || $mode == 'tree') { $list[$i]['_agents_ok_'] = groups_agent_ok ($id, $user_strict, $id); $list[$i]['_agents_warning_'] = groups_agent_warning ($id, $user_strict, $id); $list[$i]['_agents_critical_'] = groups_agent_critical ($id, $user_strict, $id); @@ -2103,7 +2115,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[0]['_monitors_not_init_'] = $list[$i]['_monitors_not_init_']; $list[0]['_agents_not_init_'] += $list[$i]['_agents_not_init_']; - if ($mode == 'tactical') { + if ($mode == 'tactical' || $mode == 'tree') { $list[0]['_agents_ok_'] += $list[$i]['_agents_ok_']; $list[0]['_agents_warning_'] += $list[$i]['_agents_warning_']; $list[0]['_agents_critical_'] += $list[$i]['_agents_critical_']; @@ -2111,7 +2123,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu } } - if ($mode == 'group') { + if ($mode == 'group' || $mode == 'tree') { if (! defined ('METACONSOLE')) { if (($list[$i]['_agents_unknown_'] == 0) && ($list[$i]['_monitors_alerts_fired_'] == 0) && ($list[$i]['_total_agents_'] == 0) && ($list[$i]['_monitors_ok_'] == 0) && ($list[$i]['_monitors_critical_'] == 0) && ($list[$i]['_monitors_warning_'] == 0) && ($list[$i]['_monitors_unknown_'] == 0) && ($list[$i]['_monitors_not_init_'] == 0) && ($list[$i]['_agents_not_init_'] == 0)) { unset($list[$i]); @@ -2142,7 +2154,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[$i]['_monitors_warning_'] = tags_monitors_warning ($id, $acltags); $list[$i]['_monitors_alerts_fired_'] = tags_monitors_fired_alerts($id, $acltags); - if ($mode == 'tactical') { + if ($mode == 'tactical' || $mode == 'tree') { $list[$i]['_agents_ok_'] = tags_agent_ok ($id, $acltags); $list[$i]['_agents_warning_'] = tags_agent_warning ($id, $acltags); $list[$i]['_agents_critical_'] = tags_get_critical_agents ($id, $acltags); @@ -2160,7 +2172,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu $list[0]['_monitors_unknown_'] += $list[$i]['_monitors_unknown_']; $list[0]['_monitors_not_init_'] = $list[$i]['_monitors_not_init_']; - if ($mode == 'tactical') { + if ($mode == 'tactical' || $mode == 'tree') { $list[0]['_agents_ok_'] += $list[$i]['_agents_ok_']; $list[0]['_agents_warning_'] += $list[$i]['_agents_warning_']; $list[0]['_agents_critical_'] += $list[$i]['_agents_critical_']; @@ -2168,7 +2180,7 @@ function group_get_data ($id_user = false, $user_strict = false, $acltags, $retu } } - if ($mode == 'group') { + if ($mode == 'group' || $mode == 'tree') { if (! defined ('METACONSOLE')) { if (($list[$i]['_agents_unknown_'] == 0) && ($list[$i]['_monitors_alerts_fired_'] == 0) && ($list[$i]['_total_agents_'] == 0) && ($list[$i]['_monitors_ok_'] == 0) && ($list[$i]['_monitors_critical_'] == 0) && ($list[$i]['_monitors_warning_'] == 0) && ($list[$i]['_monitors_unknown_'] == 0) && ($list[$i]['_monitors_not_init_'] == 0) && ($list[$i]['_agents_not_init_'] == 0)) { unset($list[$i]); @@ -2270,4 +2282,4 @@ function groups_get_group_deep ($id_group) { return $deep; } -?> \ No newline at end of file +?> diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 101e75a6cf..0086ff0c8a 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1766,24 +1766,17 @@ function html_print_image ($src, $return = false, $options = false, else { $options['class'] = 'forced_title'; } - - if (!isset ($options['id'])) { - $options['id'] = uniqid(); - } - - $params = array( - 'id' => 'forced_title_' . $options['id'], - 'class' => 'forced_title_layer', - 'content' => $options["title"], - 'hidden' => true); - $output = html_print_div($params, true) . $output; + + // New way to show the force_title (cleaner and better performance) + $output .= 'title="'.io_safe_input_html($options["title"]).'" '; + $output .= 'data-use_title_for_force_title="1" '; } //Valid attributes (invalid attributes get skipped) - $attrs = array ("height", "longdesc", "usemap","width","id", - "class","lang","xml:lang", "onclick", "ondblclick", + $attrs = array ("height", "longdesc", "usemap", "width", "id", + "class", "lang", "xml:lang", "onclick", "ondblclick", "onmousedown", "onmouseup", "onmouseover", "onmousemove", - "onmouseout", "onkeypress", "onkeydown", "onkeyup","pos_tree"); + "onmouseout", "onkeypress", "onkeydown", "onkeyup", "pos_tree"); foreach ($attrs as $attribute) { if (isset ($options[$attribute])) { diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php old mode 100644 new mode 100755 index e5746032bb..5c757042f1 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -875,7 +875,8 @@ function modules_is_string_type ($id_type) { * @return string The name of the icon. */ function modules_get_type_icon ($id_type) { - return (string) db_get_value ('icon', 'ttipo_modulo', 'id_tipo', (int) $id_type); + return (string) db_get_value ('icon', 'ttipo_modulo', 'id_tipo', + (int) $id_type); } /** diff --git a/pandora_console/include/functions_os.php b/pandora_console/include/functions_os.php index a54848ce45..8862b87db7 100755 --- a/pandora_console/include/functions_os.php +++ b/pandora_console/include/functions_os.php @@ -66,4 +66,12 @@ function os_get_name($id_os) { return db_get_value ('name', 'tconfig_os', 'id_os', (int) $id_os); } + +function os_get_os() { + $op_systems = db_get_all_rows_in_table('tconfig_os'); + if (empty($op_systems)) + $op_systems = array(); + + return $op_systems; +} ?> diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index c96f4e8808..8d58420a16 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -2022,6 +2022,32 @@ function reporting_get_group_stats ($id_group = 0, $access = 'AR') { $data["server_sanity"] = format_numeric (100 - $data["module_sanity"], 1); + + $data['alert_fired'] = 0; + if ($data["monitor_alerts_fired"] > 0) { + $data['alert_fired'] = 1; + } + + + if ($data["monitor_critical"] > 0) { + $data['status'] = 'critical'; + } + elseif ($data["monitor_warning"] > 0) { + $data['status'] = 'warning'; + } + elseif (($data["monitor_unknown"] > 0) || ($data["agents_unknown"] > 0)) { + $data['status'] = 'unknown'; + } + elseif ($data["monitor_ok"] > 0) { + $data['status'] = 'ok'; + } + elseif ($data["agent_not_init"] > 0) { + $data['status'] = 'not_init'; + } + else { + $data['status'] = 'none'; + } + return ($data); } diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index d518a3a00c..bb41341d0d 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -274,18 +274,11 @@ function treeview_printTable($id_agente, $server_data = array()) { $url_hash = metaconsole_get_servers_url_hash($server_data); } - require_once ("include/functions_agents.php"); + require_once ($config["homedir"] . "/include/functions_agents.php"); require_once ($config["homedir"] . '/include/functions_graph.php'); - include_graphs_dependencies(); require_once ($config['homedir'] . '/include/functions_groups.php'); require_once ($config['homedir'] . '/include/functions_gis.php'); - - $agent = db_get_row ("tagente", "id_agente", $id_agente); - - if ($agent === false) { - ui_print_error_message(__('There was a problem loading agent')); - return; - } + include_graphs_dependencies(); $is_extra = enterprise_hook('policies_is_agent_extra_policy', array($id_agente)); @@ -300,11 +293,21 @@ function treeview_printTable($id_agente, $server_data = array()) { return; } - echo '
'; - echo ''; - //Agent name - echo ''; + $agent = db_get_row ("tagente", "id_agente", $id_agente); + if ($agent === false) { + ui_print_error_message(__('There was a problem loading agent')); + return; + } + + $table = new StdClass(); + $table->width = "100%"; + $table->style = array(); + $table->style['title'] = 'font-weight: bold;'; + $table->head = array(); + $table->data = array(); + + // Agent name if ($agent['disabled']) { $cellName = ""; } @@ -317,12 +320,13 @@ function treeview_printTable($id_agente, $server_data = array()) { if ($agent['disabled']) { $cellName .= ui_print_help_tip(__('Disabled'), true) . ""; } - - echo ''; - + + $row = array(); + $row['title'] = __('Agent name'); + $row['data'] = $cellName; + $table->data['name'] = $row; + //Addresses - echo ''; - echo ''; + $row = array(); + $row['title'] = __('IP Address'); + $row['data'] = $address; + $table->data['address'] = $row; // Agent Interval - echo ''; - echo ''; + $row = array(); + $row['title'] = __('Interval'); + $row['data'] = human_time_description_raw ($agent["intervalo"]); + $table->data['interval'] = $row; // Comments - echo ''; - echo ''; - + $row = array(); + $row['title'] = __('Description'); + $row['data'] = $agent["comentarios"]; + $table->data['description'] = $row; // Last contact - echo ''; + + $row = array(); + $row['title'] = __('Last contact') . " / " . __('Remote'); + $row['data'] = "$last_contact / $last_remote_contact"; + $table->data['contact'] = $row; // Next contact (agent) $progress = agents_get_next_contact($id_agente); - echo ''; - echo ''; + $row = array(); + $row['title'] = __('Next agent contact'); + $row['data'] = progress_bar($progress, 150, 20); + $table->data['next_contact'] = $row; //End of table - echo '
'.__('Agent name').''.$cellName.'
'.__('IP Address').''; $ips = array(); $addresses = agents_get_addresses ($id_agente); $address = agents_get_address($id_agente); @@ -333,95 +337,115 @@ function treeview_printTable($id_agente, $server_data = array()) { } } - echo $address; - if (!empty($addresses)) { - ui_print_help_tip(__('Other IP addresses').':
'.implode('
',$addresses)); + $address .= ui_print_help_tip(__('Other IP addresses').':
'.implode('
',$addresses), true); } - echo '
'.__('Interval').''.human_time_description_raw ($agent["intervalo"]).'
' . __('Description') . '' . $agent["comentarios"] . '
' . __('Last contact') . " / " . __('Remote') . ''; - - ui_print_timestamp ($agent["ultimo_contacto"]); - - echo " / "; - + $last_contact = ui_print_timestamp($agent["ultimo_contacto"], true); + if ($agent["ultimo_contacto_remoto"] == "01-01-1970 00:00:00") { - echo __('Never'); + $last_remote_contact = __('Never'); } else { - ui_print_timestamp ($agent["ultimo_contacto_remoto"]); + $last_remote_contact = ui_print_timestamp ($agent["ultimo_contacto_remoto"], true); } - echo '
'.__('Next agent contact').'' . progress_bar($progress, 150, 20) . '
'; - + $agent_table = html_print_table($table, true); + if (can_user_access_node () && check_acl ($config["id_user"], $agent["id_grupo"], "AW")) { - echo '
'; - echo '
'; - html_print_submit_button (__('Go to agent edition'), 'upd_button', false, 'class="sub config"'); - echo '
'; - echo '
'; + $go_to_agent = '
'; + $go_to_agent .= '
'; + $go_to_agent .= html_print_submit_button (__('Go to agent edition'), 'upd_button', false, 'class="sub config"', true); + $go_to_agent .= '
'; + $go_to_agent .= '
'; + + $agent_table .= $go_to_agent; } + $agent_table .= "
"; + + // print agent data toggle + ui_toggle($agent_table, __('Agent data'), '', false); + // Advanced data - $advanced = '
'; - $advanced .= ''; - + $table = new StdClass(); + $table->width = "100%"; + $table->style = array(); + $table->style['title'] = 'font-weight: bold;'; + $table->head = array(); + $table->data = array(); + // Agent version - $advanced .= ''; - $advanced .= ''; + $row = array(); + $row['title'] = __('Agent Version'); + $row['data'] = $agent["agent_version"]; + $table->data['agent_version'] = $row; // Position Information if ($config['activate_gis']) { $dataPositionAgent = gis_get_data_last_position_agent($agent['id_agente']); - $advanced .= ''; - $advanced .= ''; } // If the url description is setted if ($agent['url_address'] != '') { - $advanced .= ''; - $advanced .= ''; + $row = array(); + $row['title'] = __('Url address'); + $row['data'] = ''.$agent["url_address"].''; + $table->data['agent_address'] = $row; } // Timezone Offset if ($agent['timezone_offset'] != 0) { - $advanced .= ''; - $advanced .= ''; + $row = array(); + $row['title'] = __('Timezone Offset'); + $row['data'] = $agent["timezone_offset"]; + $table->data['agent_timezone_offset'] = $row; } // Custom fields @@ -431,39 +455,39 @@ function treeview_printTable($id_agente, $server_data = array()) { } if ($fields) { foreach ($fields as $field) { - $advanced .= ''; $custom_value = db_get_value_filter('description', 'tagent_custom_data', array('id_field' => $field['id_field'], 'id_agent' => $id_agente)); - if ($custom_value === false || $custom_value == '') { - $custom_value = '-'.__('empty').'-'; + if (!empty($custom_value)) { + $row = array(); + $row['title'] = $field['name'] . ui_print_help_tip (__('Custom field'), true); + $row['data'] = $custom_value; + $table->data['custom_field_'.$field['id_field']] = $row; } - $advanced .= ''; } } //End of table advanced - $advanced .= '
'.__('Agent Version'). ''.$agent["agent_version"].'
'.__('Position (Long, Lat)'). ''; - - if ($dataPositionAgent === false) { - $advanced .= __('There is no GIS data.'); - } - else { - $advanced .= ''; + if ($dataPositionAgent !== false) { + $position = ''; if ($dataPositionAgent['description'] != "") - $advanced .= $dataPositionAgent['description']; + $position .= $dataPositionAgent['description']; else - $advanced .= $dataPositionAgent['stored_longitude'].', '.$dataPositionAgent['stored_latitude']; - $advanced .= ""; + $position .= $dataPositionAgent['stored_longitude'].', '.$dataPositionAgent['stored_latitude']; + $position .= ""; + + $row = array(); + $row['title'] = __('Position (Long, Lat)'); + $row['data'] = $position; + $table->data['agent_position'] = $row; } - - $advanced .= '
'.__('Url address').'' . $agent["url_address"] . '
'.__('Timezone Offset'). ''.$agent["timezone_offset"].'
'.$field['name'] . ui_print_help_tip (__('Custom field'), true).''.$custom_value.'

'; + $table_advanced = html_print_table($table, true); + $table_advanced .= "
"; - ui_toggle($advanced, __('Advanced information')); + ui_toggle($table_advanced, __('Advanced information')); // Blank space below title, DONT remove this, this // Breaks the layout when Flash charts are enabled :-o //echo '
 
'; if ($config["agentaccess"]) { - $access_graph = '
'; + $access_graph = '
'; $access_graph .= graphic_agentaccess($id_agente, 290, 110, 86400, true); $access_graph .= '

'; ui_toggle($access_graph, __('Agent access rate (24h)')); } - $events_graph = '
'; + $events_graph = '
'; $events_graph .= graph_graphic_agentevents ($id_agente, 290, 15, 86400, '', true); - $events_graph .= '


'; + $events_graph .= '

'; ui_toggle($events_graph, __('Events (24h)')); - - echo '
'; return; } diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 986a0ec065..5d5b23d768 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -588,7 +588,12 @@ function ui_print_group_icon_path ($id_group, $return = false, $path = "images/g * * @return string HTML with icon of the OS */ -function ui_print_os_icon ($id_os, $name = true, $return = false, $apply_skin = true, $networkmap = false, $only_src = false, $relative = false, $options = false) { +function ui_print_os_icon ($id_os, $name = true, $return = false, + $apply_skin = true, $networkmap = false, $only_src = false, + $relative = false, $options = false) { + + + $subfolter = 'os_icons'; if ($networkmap) { $subfolter = 'networkmap'; @@ -598,7 +603,8 @@ function ui_print_os_icon ($id_os, $name = true, $return = false, $apply_skin = $os_name = get_os_name ($id_os); if (empty ($icon)) { if ($only_src) { - $output = html_print_image("images/" . $subfolter . "/unknown.png", false, $options, true, $relative); + $output = html_print_image("images/" . $subfolter . "/unknown.png", + true, $options, true, $relative); } else { return "-"; diff --git a/pandora_console/include/javascript/jquery.pandora.js b/pandora_console/include/javascript/jquery.pandora.js index 97d8f69b98..8179d3780d 100644 --- a/pandora_console/include/javascript/jquery.pandora.js +++ b/pandora_console/include/javascript/jquery.pandora.js @@ -181,7 +181,16 @@ function forced_title_callback() { // Put title in the layer /////////////////////////////////////////// - var title = $('#forced_title_'+img_id).html(); + // If the '.forced_title' element has 'use_title_for_force_title' = 1 + // into their 'data' prop, the element title will be used for the + // content. + if ($(this).data("use_title_for_force_title")) { + var title = $(this).prop("title"); + } + else { + var title = $('#forced_title_'+img_id).html(); + } + $('#forced_title_layer').html(title); /////////////////////////////////////////// diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js new file mode 100644 index 0000000000..f32a3c5bd0 --- /dev/null +++ b/pandora_console/include/javascript/tree/TreeController.js @@ -0,0 +1,840 @@ +// Pandora FMS - http://pandorafms.com +// ================================================== +// Copyright (c) 2005-2010 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. + +var TreeController; +var TreeNodeDetailController; + +TreeController = { + controllers: [], + getController: function () { + var controller = { + index: -1, + recipient: '', + tree: [], + emptyMessage: "Empty", + errorMessage: "Error", + baseURL: "", + ajaxURL: "ajax.php", + ajaxPage: "include/ajax/tree.ajax", + detailRecipient: '', + filter: {}, + counterTitles: {}, + reload: function () { + // Bad recipient + if (typeof this.recipient == 'undefined' || this.recipient.length == 0) { + return; + } + + // Load branch + function _processGroup (container, elements, rootGroup) { + var $group = $(""); + + // First group + if (typeof rootGroup != 'undefinded' && rootGroup == true) { + $group + .addClass("tree-root") + .hide() + .prepend(''); + } + // Normal group + else { + $group + .addClass("tree-group") + .hide(); + } + + container.append($group); + + elements.forEach(function(element, index) { + element.jqObject = _processNode($group, element); + }, $group); + + return $group; + } + + // Load leaf counters + function _processNodeCounters (container, counters, type) { + if (typeof counters != 'undefined') { + + function _processNodeCounterTitle (container, elementType, counterType) { + var defaultCounterTitles = { + total: { + agents: "Total agents", + modules: "Total modules", + none: "Total" + }, + fired: { + agents: "Alert fired", + modules: "Alert fired", + none: "Alert fired" + }, + critical: { + agents: "Critical agents", + modules: "Critical modules", + none: "Critical" + }, + warning: { + agents: "Warning agents", + modules: "Warning modules", + none: "Warning" + }, + unknown: { + agents: "Unknown agents", + modules: "Unknown modules", + none: "Unknown" + }, + not_init: { + agents: "Not init agents", + modules: "Not init modules", + none: "Not init" + }, + ok: { + agents: "Normal agents", + modules: "Normal modules", + none: "Normal" + } + } + + try { + var title = ''; + switch (elementType) { + case "group": + if (typeof controller.counterTitles != 'undefined' + && typeof controller.counterTitles[counterType] != 'undefined' + && typeof controller.counterTitles[counterType].agents != 'undefined') { + title = controller.counterTitles[counterType].agents; + } + else { + title = defaultCounterTitles[counterType].agents; + } + break; + case "agent": + if (typeof controller.counterTitles != 'undefined' + && typeof controller.counterTitles[counterType] != 'undefined' + && typeof controller.counterTitles[counterType].modules != 'undefined') { + title = controller.counterTitles[counterType].modules; + } + else { + title = defaultCounterTitles[counterType].modules; + } + break; + default: + if (typeof controller.counterTitles != 'undefined' + && typeof controller.counterTitles[counterType] != 'undefined' + && typeof controller.counterTitles[counterType].none != 'undefined') { + title = controller.counterTitles[counterType].none; + } + else { + title = defaultCounterTitles[counterType].none; + } + break; + } + if (title.length > 0) { + container + .prop("title", title) + .addClass("forced_title") + .data("use_title_for_force_title", 1); // Trick to make easier the 'force title' output + } + } + catch (error) { + // console.log(error); + } + } + + var $counters = $("
"); + $counters.addClass('tree-node-counters'); + + if (typeof counters.total != 'undefined' + && counters.total > 0) { + var $totalCounter = $("
"); + $totalCounter + .addClass('tree-node-counter') + .addClass('total') + .html(counters.total); + + _processNodeCounterTitle($totalCounter, type, "total"); + + // Open the parentheses + $counters.append(" ("); + + $counters.append($totalCounter); + + if (typeof counters.fired != 'undefined' + && counters.fired > 0) { + var $firedCounter = $("
"); + $firedCounter + .addClass('tree-node-counter') + .addClass('fired') + .addClass('orange') + .html(counters.fired); + + _processNodeCounterTitle($firedCounter, type, "fired"); + + $counters + .append(" : ") + .append($firedCounter); + } + if (typeof counters.critical != 'undefined' + && counters.critical > 0) { + var $criticalCounter = $("
"); + $criticalCounter + .addClass('tree-node-counter') + .addClass('critical') + .addClass('red') + .html(counters.critical); + + _processNodeCounterTitle($criticalCounter, type, "critical"); + + $counters + .append(" : ") + .append($criticalCounter); + } + if (typeof counters.warning != 'undefined' + && counters.warning > 0) { + var $warningCounter = $("
"); + $warningCounter + .addClass('tree-node-counter') + .addClass('warning') + .addClass('yellow') + .html(counters.warning); + + _processNodeCounterTitle($warningCounter, type, "warning"); + + $counters + .append(" : ") + .append($warningCounter); + } + if (typeof counters.unknown != 'undefined' + && counters.unknown > 0) { + var $unknownCounter = $("
"); + $unknownCounter + .addClass('tree-node-counter') + .addClass('unknown') + .addClass('grey') + .html(counters.unknown); + + _processNodeCounterTitle($unknownCounter, type, "unknown"); + + $counters + .append(" : ") + .append($unknownCounter); + } + if (typeof counters.not_init != 'undefined' + && counters.not_init > 0) { + var $notInitCounter = $("
"); + $notInitCounter + .addClass('tree-node-counter') + .addClass('not_init') + .addClass('blue') + .html(counters.not_init); + + _processNodeCounterTitle($notInitCounter, type, "not_init"); + + $counters + .append(" : ") + .append($notInitCounter); + } + if (typeof counters.ok != 'undefined' + && counters.ok > 0) { + var $okCounter = $("
"); + $okCounter + .addClass('tree-node-counter') + .addClass('ok') + .addClass('green') + .html(counters.ok); + + _processNodeCounterTitle($okCounter, type, "ok"); + + $counters + .append(" : ") + .append($okCounter); + } + + // Close the parentheses + $counters.append(")"); + } + + // Add the counters html to the container + container.append($counters); + } + // Load the counters asynchronously + // else if (typeof element.searchCounters != 'undefined' && element.searchCounters) { + // var $counters = $("
"); + // $counters + // .addClass('tree-node-counters') + // .append(' (') + // .append('') + // .append(')'); + + // $content.append($counters); + // } + } + + // Load leaf + function _processNode (container, element) { + var $node = $("
  • "); + var $leafIcon = $("
    "); + var $content = $("
    "); + + // Leaf icon + $leafIcon.addClass("leaf-icon"); + + // Content + $content.addClass("node-content"); + switch (element.type) { + case 'group': + if (typeof element.icon != 'undefined' && element.icon.length > 0) { + $content.append(' '); + } + else if (typeof element.iconHTML != 'undefined' && element.iconHTML.length > 0) { + $content.append(element.iconHTML); + } + $content.append(element.name); + break; + case 'agent': + // Status image + if (typeof element.statusImageHTML != 'undefined' + && element.statusImageHTML.length > 0) { + var $statusImage = $(element.statusImageHTML); + $statusImage.addClass("agent-status"); + + $content.append($statusImage); + } + // Alerts fired image + if (typeof element.alertImageHTML != 'undefined' + && element.alertImageHTML.length > 0) { + var $alertImage = $(element.alertImageHTML); + $alertImage.addClass("agent-alerts-fired"); + + $content.append($alertImage); + } + $content.append(element.name); + break; + case 'module': + // Status image + if (typeof element.statusImageHTML != 'undefined' + && element.statusImageHTML.length > 0) { + var $statusImage = $(element.statusImageHTML); + $statusImage.addClass("module-status"); + + $content.append($statusImage); + } + // Server type + if (typeof element.serverTypeHTML != 'undefined' + && element.serverTypeHTML.length > 0 + && element.serverTypeHTML != '--') { + var $serverTypeImage = $(element.serverTypeHTML); + $serverTypeImage.addClass("module-server-type"); + + $content.append($serverTypeImage); + } + + // Graph pop-up + var $graphImage = $(' '); + $graphImage + .addClass('module-graph') + .click(function (e) { + e.preventDefault(); + + try { + winopeng(element.moduleGraph.url, element.moduleGraph.handle); + } + catch (error) { + console.log(error); + } + }); + + // Data pop-up + var $dataImage = $(' '); + $dataImage + .addClass('module-data') + .click(function (e) { + e.preventDefault(); + + try { + if ($("#module_details_window").length > 0) + show_module_detail_dialog(element.id, '', '', 0, 86400); + } + catch (error) { + console.log(error); + } + }); + + $content + .append($graphImage) + .append($dataImage) + .append(element.name); + break; + case 'os': + if (typeof element.icon != 'undefined' && element.icon.length > 0) { + $content.append(' '); + } + $content.append(element.name); + break; + case 'tag': + if (typeof element.icon != 'undefined' && element.icon.length > 0) { + $content.append(' '); + } + else { + $content.append(' '); + } + $content.append(element.name); + break; + default: + $content.append(element.name); + break; + } + + // Load the status counters + _processNodeCounters($content, element.counters, element.type); + + // If exist the detail container, show the data + if (typeof controller.detailRecipient != 'undefined' && controller.detailRecipient.length > 0) { + $content.click(function (e) { + TreeNodeDetailController.getController().init({ + recipient: controller.detailRecipient, + type: element.type, + id: element.id, + baseURL: controller.baseURL, + ajaxURL: controller.ajaxURL, + ajaxPage: controller.ajaxPage + }); + }); + } + + $node + .addClass("tree-node") + .append($leafIcon) + .append($content); + + container.append($node); + + $node.addClass("leaf-empty"); + + if (typeof element.children != 'undefined' && element.children.length > 0) { + $node + .removeClass("leaf-empty") + .addClass("leaf-closed"); + + // Add children + var $children = _processGroup($node, element.children); + $node.data('children', $children); + + if (typeof element.searchChildren == 'undefined' || !element.searchChildren) { + $leafIcon.click(function (e) { + e.preventDefault(); + + if ($node.hasClass("leaf-open")) { + $node + .removeClass("leaf-open") + .addClass("leaf-closed") + .data('children') + .slideUp(); + } + else { + $node + .removeClass("leaf-closed") + .addClass("leaf-open") + .data('children') + .slideDown(); + } + }); + } + } + if (typeof element.searchChildren != 'undefined' && element.searchChildren) { + $node + .removeClass("leaf-empty") + .addClass("leaf-closed"); + + $leafIcon.click(function (e) { + e.preventDefault(); + + if (!$node.hasClass("children-loaded") && !$node.hasClass("leaf-empty")) { + $node + .removeClass("leaf-closed") + .removeClass("leaf-error") + .addClass("leaf-loading"); + + $.ajax({ + url: controller.ajaxURL, + type: 'POST', + dataType: 'json', + data: { + page: controller.ajaxPage, + getChildren: 1, + id: element.id, + type: element.type, + filter: controller.filter, + childrenMethod: 'live', + countModuleStatusMethod: 'live', + countAgentStatusMethod: 'live' + }, + complete: function(xhr, textStatus) { + $node.removeClass("leaf-loading"); + $node.addClass("children-loaded"); + }, + success: function(data, textStatus, xhr) { + if (data.success) { + if (typeof data.tree != 'undefined' && data.tree.length > 0) { + $node.addClass("leaf-open"); + + var $group = $node.find("ul.tree-group"); + + if ($group.length <= 0) { + $group = $(""); + $group + .addClass("tree-group") + .hide(); + $node.append($group); + } + + data.tree.forEach(function(element, index) { + element.jqObject = _processNode($group, element); + }, $group); + + $group.slideDown(); + + $node.data('children', $group); + + // Add again the hover event to the 'force_callback' elements + forced_title_callback(); + } + else { + $node.addClass("leaf-empty"); + } + } + else { + $node.addClass("leaf-error"); + } + }, + error: function(xhr, textStatus, errorThrown) { + $node.addClass("leaf-error"); + } + }); + } + else if (! $node.hasClass("leaf-empty")) { + if ($node.hasClass("leaf-open")) { + $node + .removeClass("leaf-open") + .addClass("leaf-closed") + .data('children') + .slideUp(); + } + else { + $node + .removeClass("leaf-closed") + .addClass("leaf-open") + .data('children') + .slideDown(); + } + } + }); + } + + return $node; + } + + if (controller.recipient.length == 0) { + return; + } + else if (controller.tree.length == 0) { + controller.recipient.html("
    " + controller.emptyMessage + "
    "); + return; + } + + controller.recipient.empty(); + + var $children = _processGroup(this.recipient, this.tree, true); + $children.show(); + + controller.recipient.data('children', $children); + + // Add again the hover event to the 'force_callback' elements + forced_title_callback(); + }, + load: function () { + this.reload(); + }, + changeTree: function (tree) { + this.tree = tree; + this.reload(); + }, + init: function (data) { + if (typeof data.recipient != 'undefined' && data.recipient.length > 0) { + this.recipient = data.recipient; + } + if (typeof data.detailRecipient != 'undefined' && data.detailRecipient.length > 0) { + this.detailRecipient = data.detailRecipient; + } + if (typeof data.tree != 'undefined' && data.tree.length > 0) { + this.tree = data.tree; + } + if (typeof data.emptyMessage != 'undefined' && data.emptyMessage.length > 0) { + this.emptyMessage = data.emptyMessage; + } + if (typeof data.errorMessage != 'undefined' && data.errorMessage.length > 0) { + this.errorMessage = data.errorMessage; + } + if (typeof data.baseURL != 'undefined' && data.baseURL.length > 0) { + this.baseURL = data.baseURL; + } + if (typeof data.ajaxURL != 'undefined' && data.ajaxURL.length > 0) { + this.ajaxURL = data.ajaxURL; + } + if (typeof data.ajaxPage != 'undefined' && data.ajaxPage.length > 0) { + this.ajaxPage = data.ajaxPage; + } + if (typeof data.filter != 'undefined') { + this.filter = data.filter; + } + + this.load(); + }, + remove: function () { + if (typeof this.recipient != 'undefined' && this.recipient.length > 0) { + this.recipient.empty(); + } + + if (this.index > -1) { + TreeController.controllers.splice(this.index, 1); + } + } + } + controller.index = TreeController.controllers.push(controller) - 1; + + return controller; + } +} + +// The controllers will be inside the 'controllers' object, +// ordered by ['type']['id'] +TreeNodeDetailController = { + controllers: {}, + controllerExist: function (type, id) { + if (typeof this.controllers[type][id] != 'undefined') { + return true; + } + else { + return false; + } + }, + removeControllers: function () { + if (TreeNodeDetailController.controllers.length > 0) { + TreeNodeDetailController.controllers.forEach(function(elements, type) { + if (elements.length > 0) { + elements.forEach(function(element, id) { + element.remove(); + }); + } + }); + } + }, + getController: function () { + var controller = { + recipient: '', + type: 'none', + id: -1, + emptyMessage: "Empty", + errorMessage: "Error", + baseURL: "", + ajaxURL: "ajax.php", + ajaxPage: "include/ajax/tree.ajax", + container: '', + reload: function () { + // Label + var $label = $("
    "); + $label + .addClass("tree-element-detail-label") + .click(function (e) { + if ($label.hasClass('tree-element-detail-loaded')) + controller.toggle(); + }); + + // Content + var $content = $("
    "); + $content.addClass("tree-element-detail-content"); + + // Container + this.container = $("
    "); + this.container + .addClass("tree-element-detail") + .append($label) + .data('label', $label) + .append($content) + .data('content', $content) + .hide(); + + $label.addClass('tree-element-detail-loading'); + $.ajax({ + url: this.ajaxURL, + type: 'POST', + dataType: 'json', + data: { + page: this.ajaxPage, + getDetail: 1, + type: this.type, + id: this.id + }, + complete: function(xhr, textStatus) { + $label.removeClass('tree-element-detail-loading'); + }, + success: function(data, textStatus, xhr) { + if (data.success) { + $label.addClass('tree-element-detail-loaded'); + $content.html(data.html); + + controller.open(); + } + else { + $label.addClass('tree-element-detail-error'); + $content.html(controller.errorMessage); + } + }, + error: function(xhr, textStatus, errorThrown) { + $label.addClass('tree-element-detail-error'); + $content.html(controller.errorMessage); + } + }); + + this.recipient.append(this.container); + this.open(); + }, + load: function () { + this.reload(); + }, + toggle: function () { + if (typeof this.container != 'undefined' && this.container.length > 0) { + return false; + } + if (this.container.isClosed) { + this.open(); + } + else { + this.close(); + } + }, + open: function () { + if (typeof this.container != 'undefined' && this.container.length > 0) { + return false; + } + if (this.container.isClosed) { + this.container.data('content').slideLeft(); + this.container.isClosed = false; + } + }, + close: function () { + if (typeof this.container != 'undefined' && this.container.length > 0) { + return false; + } + if (!this.container.isClosed) { + this.container.data('content').slideRight(); + this.container.isClosed = true; + } + }, + init: function (data) { + // Remove the other controllers + TreeNodeDetailController.removeControllers(); + + // Required + if (typeof data.recipient != 'undefined' && data.recipient.length > 0) { + this.recipient = data.recipient; + } + else { + return false; + } + // Required + if (typeof data.type != 'undefined' && data.type.length > 0) { + this.type = data.type; + } + else { + return false; + } + // Required + if (typeof data.id != 'undefined' && (data.id.length > 0 || !isNaN(data.id))) { + this.id = data.id; + } + else { + return false; + } + if (typeof data.emptyMessage != 'undefined' && data.emptyMessage.length > 0) { + this.emptyMessage = data.emptyMessage; + } + if (typeof data.errorMessage != 'undefined' && data.errorMessage.length > 0) { + this.errorMessage = data.errorMessage; + } + if (typeof data.baseURL != 'undefined' && data.baseURL.length > 0) { + this.baseURL = data.baseURL; + } + if (typeof data.ajaxURL != 'undefined' && data.ajaxURL.length > 0) { + this.ajaxURL = data.ajaxURL; + } + if (typeof data.ajaxPage != 'undefined' && data.ajaxPage.length > 0) { + this.ajaxPage = data.ajaxPage; + } + if (typeof data.counterTitles != 'undefined') { + this.counterTitles = data.counterTitles; + } + + if (typeof TreeNodeDetailController.controllers[this.type] == 'undefined') + TreeNodeDetailController.controllers[this.type] = {}; + TreeNodeDetailController.controllers[this.type][this.id] = this; + this.load(); + }, + remove: function () { + if (typeof this.recipient != 'undefined' && this.recipient.length > 0) { + this.recipient.empty(); + } + if (this.type != 'none' && this.id > -1) { + try { + delete TreeNodeDetailController.controllers[this.type][this.id]; + } + catch (error) { + // console.log('Item not deleted'); + } + } + }, + closeOther: function () { + if (TreeNodeDetailController.controllers.length > 0) { + TreeNodeDetailController.controllers.forEach(function(elements, type) { + if (elements.length > 0) { + elements.forEach(function(element, id) { + if (this.type != type && this.id != id) + element.close(); + }, this); + } + }, this); + } + }, + removeOther: function () { + if (TreeNodeDetailController.controllers.length > 0) { + TreeNodeDetailController.controllers.forEach(function(elements, type) { + if (elements.length > 0) { + elements.forEach(function(element, id) { + if (this.type != type && this.id != id) + element.remove(); + }, this); + } + }, this); + } + } + } + return controller; + } +} \ No newline at end of file diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 596da5ec98..ea715e7df1 100755 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -2833,4 +2833,161 @@ table#policy_modules td * { .left_align { text-align: left; +} + +/* Tree view styles */ +.tree-root { + margin-top: 0px; + margin-bottom: 0px; +} + +.tree-group { + margin-left: 16px; + padding-top: 4px; +} + +.tree-node { + white-space: nowrap; + + background-image: url(../../images/tree/branch.png); + background-position: 0px 0px; + background-repeat: repeat-y; + + min-height: 26px; +} + +.tree-node:last-child { + background: 0 0; +} +.node-content { + height: 21px; +} + +.node-content:hover { + background-color: #9AB8DF; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} + +.leaf-icon { + width: 18px; + height: 20px; +} + +.node-content, .leaf-icon { + display: inline-block; +} + +.node-content>img, .node-content>div { + display: inline; +} + +.tree-node.leaf-open>.leaf-icon { + background-image: url(../../images/tree/last_expanded.png); + cursor: pointer; +} + +.tree-node.tree-first.leaf-open>.leaf-icon { + background-image: url(../../images/tree/first_expanded.png); + cursor: pointer; +} + +.tree-node.leaf-closed>.leaf-icon { + background-image: url(../../images/tree/last_closed.png); + cursor: pointer; +} + +.tree-node.tree-first.leaf-closed>.leaf-icon { + background-image: url(../../images/tree/first_closed.png); + cursor: pointer; +} + +.tree-node.leaf-loading>.leaf-icon { + background-image: url(../../images/tree/last_expanded.png); +} + +.tree-node.leaf-empty>.leaf-icon { + background-image: url(../../images/tree/last_leaf.png); +} + +.tree-node.tree-first.leaf-empty>.leaf-icon { + background-image: url(../../images/tree/first_leaf.png); +} + +.tree-node.leaf-error>.leaf-icon { + background-image: url(../../images/tree/last_leaf.png); +} + +.tree-node>.leaf-icon { + background-position: 0px 0px; + background-repeat: no-repeat; +} + +.tree-node>.node-content>img { + max-height: 20px; + /*max-width: 20px;*/ +} + +.tree-node>.node-content>img.module-data, +.tree-node>.node-content>img.module-graph { + cursor: pointer; + padding-right: 3px; +} + +.tree-node>.node-content>img.module-server-type, +.tree-node>.node-content>img.agent-status, +.tree-node>.node-content>img.agent-alerts-fired, +.tree-node>.node-content>img.module-status { + padding-right: 3px; +} + +.tree-node>.node-content>.tree-node-counters, +.tree-node>.node-content>.tree-node-counters>.tree-node-counter { + display: inline; +} + +.tree-node>.node-content>.tree-node-counters { + +} + +.tree-node>.node-content>img { + vertical-align: middle; +} + +.tree-node>.node-content>.tree-node-counters>.tree-node-counter { + font-weight: bold; + font-size: 7pt; + cursor: default; +} + + +/* The items with the class 'spinner' will rotate */ +/* Not supported on IE9 and below */ +.spinner { + -webkit-animation: spinner 2s infinite linear; + animation: spinner 2s infinite linear; +} + +@-webkit-keyframes spinner { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes spinner { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } } \ No newline at end of file diff --git a/pandora_console/operation/tree.php b/pandora_console/operation/tree.php index 4c77a2021d..2daade52aa 100755 --- a/pandora_console/operation/tree.php +++ b/pandora_console/operation/tree.php @@ -14,6 +14,13 @@ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. + + +require_once("tree2.php"); +return; +//////////////////////////////////////////////////////////////////////// + + define('ALL', -1); define('NORMAL', 0); define('WARNING', 2); @@ -96,7 +103,6 @@ if (is_ajax ()) { metaconsole_connect($server); } - treeview_printTable($id_agent, $server); treeview_printModuleTable($id_module, $server); diff --git a/pandora_console/operation/tree2.php b/pandora_console/operation/tree2.php new file mode 100644 index 0000000000..3b270a505b --- /dev/null +++ b/pandora_console/operation/tree2.php @@ -0,0 +1,328 @@ + "" . + html_print_image("images/operating_system.png", true, + array("title" => __('OS'))) . "", + 'active' => ($tab == "os")); + +$tabs['group'] = array( + 'text' => "" . + html_print_image("images/group.png", true, + array("title" => __('Groups'))) . "", + 'active' => ($tab == "group")); + +$tabs['module_group'] = array( + 'text' => "" . + html_print_image("images/module_group.png", true, + array("title" => __('Module groups'))) . "", + 'active' => ($tab == "module_group")); + +$tabs['module'] = array( + 'text' => "" . + html_print_image("images/brick.png", true, + array("title" => __('Modules'))) . "", + 'active' => ($tab == "module")); + +$tabs['tag'] = array( + 'text' => "" . + html_print_image("images/tag.png", true, + array("title" => __('Tags'))) . "", + 'active' => ($tab == "tag")); + +if ($enterpriseEnable) { + $tabs['policies'] = array( + 'text' => "" . + html_print_image("images/policies_mc.png", true, + array("title" => __('Policies'))) . "", + 'active' => ($tab == "policies")); +} + +$header_title = ""; +switch ($tab) { + case 'os': + $header_title = + __('Tree view - Sort the agents by OS'); + break; + case 'group': + $header_title = + __('Tree view - Sort the agents by groups'); + break; + case 'module_group': + $header_title = + __('Tree view - Sort the agents by module groups'); + break; + case 'module': + $header_title = + __('Tree view - Sort the agents by modules'); + break; + case 'tag': + $header_title = + __('Tree view - Sort the agents by tags'); + break; +} + +ui_print_page_header( + $header_title, "images/extensions.png", false, "", false, $tabs); +// ---------------------Tabs ------------------------------------------- + + +// --------------------- form filter ----------------------------------- +$table = null; +$table->width = "100%"; + +$table->data[0][0] = __('Agent status'); +$fields = array (); +$fields[AGENT_STATUS_ALL] = __('All'); //default +$fields[AGENT_STATUS_NORMAL] = __('Normal'); +$fields[AGENT_STATUS_WARNING] = __('Warning'); +$fields[AGENT_STATUS_CRITICAL] = __('Critical'); +$fields[AGENT_STATUS_UNKNOWN] = __('Unknown'); +$fields[AGENT_STATUS_NOT_INIT] = __('Not init'); +$table->data[0][1] = html_print_select($fields, + "status", + $status, + '', + '', + 0, + true); +$table->data[0][2] = __('Search agent'); +$table->data[0][3] = html_print_input_text( + "search", $search, '', 40, 30, true); +$table->data[0][4] = html_print_submit_button( + __('Filter'), "uptbutton", false, 'class="sub search"', true); + +echo ''; + +// --------------------- form filter ----------------------------------- +ui_include_time_picker(); +ui_require_jquery_file("ui.datepicker-" . get_user_language(), "include/javascript/i18n/"); + +ui_require_javascript_file("TreeController", "include/javascript/tree/"); +html_print_image('images/spinner.gif', false, + array('class' => "loading_tree", + 'style' => 'display: none;')); +echo "
    "; +echo "
    "; +echo "
    "; +echo "
    "; +?> + \ No newline at end of file