0) { $groups = array($id_group); if ($recursion === 'true' || $recursion == 1 ) { $groups = array_merge($groups, groups_get_id_recursive($id_group, true)); } } else { $groups_orig = users_get_groups(false, $privilege); $groups = array_keys($groups_orig); } // Build filter $filter = array(); $filter['id_grupo'] = $groups; if (!empty($id_os)) $filter['id_os'] = $id_os; if (!empty($agent_name)) $filter['nombre'] = '%' . $agent_name . '%'; if (!empty($agent_alias)) $filter['alias'] = '%' . $agent_alias . '%'; switch ($status_agents) { case AGENT_STATUS_NORMAL: $filter[] = "(normal_count = total_count)"; break; case AGENT_STATUS_WARNING: $filter[] = "(critical_count = 0 AND warning_count > 0)"; break; case AGENT_STATUS_CRITICAL: $filter[] = "(critical_count > 0)"; break; case AGENT_STATUS_UNKNOWN: $filter[] = "(critical_count = 0 AND warning_count = 0 AND unknown_count > 0)"; break; case AGENT_STATUS_NOT_NORMAL: $filter[] = "(normal_count <> total_count)"; break; case AGENT_STATUS_NOT_INIT: $filter[] = "(notinit_count = total_count)"; break; } $filter['order'] = "alias ASC"; if($cluster_mode){ $agent_id_os = db_get_all_rows_sql('select id_os from tconfig_os where id_os != 100'); foreach ($agent_id_os as $key => $value) { $agent_id_os_array[] = $agent_id_os[$key]['id_os']; } $filter['id_os'] = $agent_id_os_array; if($agents_inserted[0] != ''){ $agents_id_list = ''; foreach($agents_inserted as $elem) { if ($elem === end($agents_inserted)) { $agents_id_list .= $elem; } else{ $agents_id_list .= $elem.','; } } $agent_id_agente = db_get_all_rows_sql('select id_agente from tagente where id_agente not in ('.$agents_id_list.')'); foreach ($agent_id_agente as $key => $value) { $agent_id_agente_array[] = $agent_id_agente[$key]['id_agente']; } $filter['id_agente'] = $agent_id_agente_array; } } // Build fields $fields = array('id_agente', 'alias'); // Perform search $agents = db_get_all_rows_filter('tagente', $filter, $fields); if (empty($agents)) $agents = array(); foreach ($agents as $k => $v) { $agents[$k] = io_safe_output($v); } // Add keys prefix if ($keys_prefix !== '') { foreach ($agents as $k => $v) { $agents[$keys_prefix . $k] = io_safe_output($v); unset($agents[$k]); } } echo json_encode($agents); return; } if ($get_modules_group_json) { $id_group = (int) get_parameter('id_module_group'); $id_agents = get_parameter('id_agents'); $selection = get_parameter('selection'); select_modules_for_agent_group($id_group, $id_agents, $selection); } if ($get_agent_json) { $id_agent = (int) get_parameter ('id_agent'); $agent = db_get_row ('tagente', 'id_agente', $id_agent); echo json_encode ($agent); return; } if ($get_agent_modules_json_for_multiple_agents_id) { $idAgents = get_parameter('id_agent'); $modules = db_get_all_rows_sql(' SELECT nombre, id_agente_modulo FROM tagente_modulo WHERE id_agente IN (' . implode(',', $idAgents) . ')'); $return = array(); foreach ($modules as $module) { $return[$module['id_agente_modulo']] = io_safe_output($module['nombre']); } echo json_encode($return); return; } if ($get_agents_json_for_multiple_modules) { $nameModules = get_parameter('module_name'); $selection_mode = get_parameter('selection_mode','common'); $status_modulo = (int) get_parameter ('status_module', -1); $groups = users_get_groups ($config["id_user"], "AW", false); $group_id_list = ($groups ? join(",",array_keys($groups)):"0"); $sql = 'SELECT DISTINCT(t1.alias) as name FROM tagente t1, tagente_modulo t2 WHERE t1.id_agente = t2.id_agente AND t1.id_grupo IN (' . $group_id_list .') AND t2.nombre IN (\'' . implode('\',\'', $nameModules) . '\')'; // Status selector if ($status_modulo == AGENT_MODULE_STATUS_NORMAL) { //Normal $sql_conditions .= ' estado = 0 AND utimestamp > 0) OR (t2.id_tipo_modulo IN(21,22,23,100)) '; } elseif ($status_modulo == AGENT_MODULE_STATUS_CRITICAL_BAD) { //Critical $sql_conditions .= ' estado = 1 AND utimestamp > 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_WARNING) { //Warning $sql_conditions .= ' estado = 2 AND utimestamp > 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_NOT_NORMAL) { //Not normal $sql_conditions .= ' estado <> 0'; } elseif ($status_modulo == AGENT_MODULE_STATUS_UNKNOWN) { //Unknown $sql_conditions .= ' estado = 3 AND utimestamp <> 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_NOT_INIT) { //Not init $sql_conditions .= ' utimestamp = 0 ) AND t2.id_tipo_modulo NOT IN (21,22,23,100)'; } if ($status_modulo != -1) { $sql .= ' AND t2.id_agente_modulo IN (SELECT id_agente_modulo FROM tagente_estado where ' . $sql_conditions; } if ($selection_mode == 'common') { $sql .= 'AND ( SELECT count(t3.nombre) FROM tagente t3, tagente_modulo t4 WHERE t3.id_agente = t4.id_agente AND t1.nombre = t3.nombre AND t4.nombre IN (\'' . implode('\',\'', $nameModules) . '\')) = '.count($nameModules); } $sql .= ' ORDER BY t1.alias'; $nameAgents = db_get_all_rows_sql($sql); if ($nameAgents == false) $nameAgents = array(); foreach ($nameAgents as $nameAgent) { $names[] = io_safe_output($nameAgent['name']); } echo json_encode($names); return; } if ($get_agent_modules_alerts_json_for_multiple_agents) { $idAgents = (array) get_parameter('id_agent'); $templates = (array) get_parameter('templates'); $selection_mode = get_parameter('selection_mode','common'); $sql = 'SELECT DISTINCT(nombre) FROM tagente_modulo t1, talert_template_modules t2 WHERE t2.id_agent_module = t1.id_agente_modulo AND delete_pending = 0 AND id_alert_template IN (' . implode(',', $templates) . ') AND id_agente IN (' . implode(',', $idAgents) . ')'; if ($selection_mode == 'common') { $sql .= ' AND ( SELECT count(nombre) FROM tagente_modulo t3, talert_template_modules t4 WHERE t4.id_agent_module = t3.id_agente_modulo AND delete_pending = 0 AND t1.nombre = t3.nombre AND id_agente IN (' . implode(',', $idAgents) . ') AND id_alert_template IN (' . implode(',', $templates) . ')) = (' . count($idAgents) . ')'; } $sql .= ' ORDER BY t1.nombre'; $nameModules = db_get_all_rows_sql($sql); if ($nameModules == false) { $nameModules = array(); } $result = array(); foreach($nameModules as $nameModule) { $result[] = io_safe_output($nameModule['nombre']); } echo json_encode($result); return; } if ($get_agent_modules_multiple_alerts_json_for_multiple_agents) { $idAgents = get_parameter('id_agent'); $id_template = get_parameter('template'); $selection_mode = get_parameter('selection_mode','common'); $sql = 'SELECT DISTINCT(nombre) FROM tagente_modulo t1, talert_template_modules t2 WHERE t2.id_agent_module = t1.id_agente_modulo AND delete_pending = 0 AND id_alert_template = '.$id_template.' AND id_agente IN (' . implode(',', $idAgents) . ')'; if ($selection_mode == 'common') { $sql .= ' AND ( SELECT count(nombre) FROM tagente_modulo t3, talert_template_modules t4 WHERE t4.id_agent_module = t3.id_agente_modulo AND delete_pending = 0 AND t1.nombre = t3.nombre AND id_agente IN (' . implode(',', $idAgents) . ') AND id_alert_template = '.$id_template.') = (' . count($idAgents) . ')'; } $sql .= ' ORDER BY t1.nombre'; $nameModules = db_get_all_rows_sql($sql); if ($nameModules == false) { $nameModules = array(); } $result = array(); foreach($nameModules as $nameModule) { $result[] = io_safe_output($nameModule['nombre']); } echo json_encode($result); return; } if ($get_agent_modules_json_for_multiple_agents) { $idAgents = (array) get_parameter('id_agent'); $tags = get_parameter('tags', null); $module_types_excluded = get_parameter('module_types_excluded', array()); $module_name = (string) get_parameter('name'); $selection_mode = get_parameter('selection_mode', 'common'); $serialized = get_parameter('serialized', ''); $id_server = (int) get_parameter('id_server', 0); $status_modulo = (int) get_parameter ('status_module', -1); $metaconsole_server_name = null; if (!empty($id_server)) { $metaconsole_server_name = db_get_value('server_name', 'tmetaconsole_setup', 'id', $id_server); } $filter = '1 = 1'; $all = (string)get_parameter('all', 'all'); switch ($all) { default: case 'all': $filter .= ' AND 1 = 1'; break; case 'enabled': $filter .= ' AND t1.disabled = 0'; break; } if (!empty($module_types_excluded) && is_array($module_types_excluded)) $filter .= ' AND t1.id_tipo_modulo NOT IN (' . implode($module_types_excluded) . ')'; if (!empty($module_name)) { switch ($config['dbtype']) { case "mysql": $filter .= " AND t1.nombre COLLATE utf8_general_ci LIKE '%$module_name%'"; break; case "postgresql": $filter .= " AND t1.nombre LIKE '%$module_name%'"; break; case "oracle": $filter .= " AND UPPER(t1.nombre) LIKE UPPER('%$module_name%')"; break; } } // Status selector if ($status_modulo == AGENT_MODULE_STATUS_NORMAL) { //Normal $sql_conditions .= ' estado = 0 AND utimestamp > 0 ) OR (t1.id_tipo_modulo IN(21,22,23,100)) '; } elseif ($status_modulo == AGENT_MODULE_STATUS_CRITICAL_BAD) { //Critical $sql_conditions .= ' estado = 1 AND utimestamp > 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_WARNING) { //Warning $sql_conditions .= ' estado = 2 AND utimestamp > 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_NOT_NORMAL) { //Not normal $sql_conditions .= ' estado <> 0)'; } elseif ($status_modulo == AGENT_MODULE_STATUS_UNKNOWN) { //Unknown $sql_conditions .= ' estado = 3 AND utimestamp <> 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_NOT_INIT) { //Not init $sql_conditions .= ' utimestamp = 0 ) AND t1.id_tipo_modulo NOT IN (21,22,23,100)'; } if ($status_modulo != -1) { $filter .= ' AND t1.id_agente_modulo IN (SELECT id_agente_modulo FROM tagente_estado where ' . $sql_conditions; } if (is_metaconsole()) { $result = array(); $nameModules = array(); $temp = array(); $first = true; $temp_element = array(); $counter = 0; $first_elements = array(); $array_mapped = array_map(function($item) use ($metaconsole_server_name) { if (empty($metaconsole_server_name)) { if (strstr($item, "|@_@|")) { $row = explode ('|@_@|', $item); } else { $row = explode ('|', $item); } $server_name = array_shift($row); $id_agent = array_shift($row); } else { $server_name = $metaconsole_server_name; $id_agent = $item; } return array( 'server_name' => $server_name, 'id_agent' => $id_agent ); }, $idAgents); $array_reduced = array_reduce($array_mapped, function($carry, $item) { if (!isset($carry[$item['server_name']])) $carry[$item['server_name']] = array(); $carry[$item['server_name']][] = $item['id_agent']; return $carry; }, array()); $last_modules_set = array(); foreach ($array_reduced as $server_name => $id_agents) { //Metaconsole db connection // $server_name can be the server id (ugly hack, I know) if (is_numeric($server_name)) { $connection = metaconsole_get_connection_by_id($server_name); } else { $connection = metaconsole_get_connection($server_name); } if (metaconsole_load_external_db($connection) != NOERR) { continue; } //Get agent's modules $sql = sprintf('SELECT t1.id_agente, t1.id_agente_modulo, t1.nombre FROM tagente_modulo t1 WHERE %s AND t1.delete_pending = 0 AND t1.id_agente IN (%s) AND ( SELECT COUNT(nombre) FROM tagente_modulo t2 WHERE t2.delete_pending = 0 AND t1.nombre = t2.nombre AND t2.id_agente IN (%s)) = (%d)', $filter, implode(',', $id_agents), implode(',', $id_agents), count($id_agents)); $modules = db_get_all_rows_sql($sql); if (empty($modules)) $modules = array(); $modules_aux = array(); foreach ($modules as $key => $module) { // Don't change this order, is used in the serialization $module_data = array( 'id_module' => $module['id_agente_modulo'], 'id_agent' => $module['id_agente'], 'server_name' => $server_name ); if (!isset($modules_aux[$module['nombre']])) $modules_aux[$module['nombre']] = array(); $modules_aux[$module['nombre']][] = $module_data; } $modules = $modules_aux; // Build the next array using the common values if (!empty($last_modules_set)) { $modules = array_intersect_key($modules, $last_modules_set); array_walk($modules, function(&$module_data, $module_name) use ($last_modules_set) { $module_data = array_merge($module_data, $last_modules_set[$module_name]); }); } $last_modules_set = $modules; //Restore db connection metaconsole_restore_db(); } $result = array(); foreach ($last_modules_set as $module_name => $module_data) { $value = ui_print_truncate_text(io_safe_output($module_name), 'module_medium', false, true); $module_data_processed = array_map(function($item) { // data: -> id_module | id_agent | server_name; return implode('|', $item); }, $module_data); $key = implode(';', $module_data_processed); $result[$key] = $value; } asort($result); } else { if($idAgents[0] < 0){ if($selection_mode == 'common'){ $sql_agent_total = 'SELECT count(*) FROM tagente WHERE disabled=0'; $agent_total = db_get_value_sql($sql_agent_total); $sql = "SELECT tam.nombre, tam.id_agente_modulo FROM tagente_modulo tam JOIN ( SELECT COUNT(*) AS num_names, nombre FROM tagente_modulo WHERE disabled=0 AND delete_pending=0 GROUP BY nombre ) AS tj ON tj.num_names = $agent_total AND tj.nombre = tam.nombre "; } else{ $sql = 'SELECT nombre, id_agente_modulo FROM tagente_modulo'; } } else { $sql = 'SELECT DISTINCT nombre, id_agente_modulo FROM tagente_modulo t1 WHERE ' . $filter . ' AND t1.delete_pending = 0 AND t1.id_agente IN (' . implode(',', $idAgents) . ')'; if ($selection_mode == 'common') { $sql .= ' AND ( SELECT count(nombre) FROM tagente_modulo t2 WHERE t2.delete_pending = 0 AND t1.nombre = t2.nombre AND t2.id_agente IN (' . implode(',', $idAgents) . ')) = (' . count($idAgents) . ')'; } elseif ($selection_mode == 'unknown') { $sql .= 'AND t1.id_agente_modulo IN (SELECT id_agente_modulo FROM tagente_estado where estado = 3 OR estado = 4)'; } } $sql .= ' ORDER BY nombre'; $nameModules = db_get_all_rows_sql($sql); if ($tags != null) { if ((count($tags) >= 1) && ($tags[0] != "") && ($tags[0] != -1)) { $implode_tags = implode(",", $tags); $tag_modules = db_get_all_rows_sql("SELECT DISTINCT id_agente_modulo FROM ttag_module WHERE id_tag IN (" . $implode_tags . ")"); if ($tag_modules) { $final_modules = array(); foreach ($nameModules as $key => $module) { $in_array = false; foreach ($tag_modules as $t_module) { if ($module['id_agente_modulo'] == $t_module['id_agente_modulo']) { $in_array = true; } } if ($in_array) { $final_modules[] = $module; } } $nameModules = $final_modules; } else { $nameModules = array(); } } } if ($nameModules == false) { $nameModules = array(); } $result = array(); foreach ($nameModules as $nameModule) { if (empty($serialized)) $result[io_safe_output($nameModule['nombre'])] = ui_print_truncate_text( io_safe_output($nameModule['nombre']), 'module_medium', false, true); else $result[io_safe_output($nameModule['nombre']).'$*$'.implode('|', $idAgents)] = ui_print_truncate_text(io_safe_output($nameModule['nombre']), 'module_medium', false, true); } } echo json_encode($result); return; } if ($get_agent_modules_json) { $id_agent = (int) get_parameter ('id_agent'); // Use -1 as not received $disabled = (int) get_parameter ('disabled', -1); $delete_pending = (int) get_parameter ('delete_pending', -1); // Use 0 as not received $id_tipo_modulo = (int) get_parameter ('id_tipo_modulo', 0); $status_modulo = (int) get_parameter ('status_module', -1); $tags = (array) get_parameter ('tags', array()); // Filter $filter = array(); if ($disabled !== -1) $filter['disabled'] = $disabled; if ($delete_pending !== -1) $filter['delete_pending'] = $delete_pending; if (!empty($id_tipo_modulo)) $filter['id_tipo_modulo'] = $id_tipo_modulo; if (empty($filter)) $filter = false; $get_only_string_modules = get_parameter('get_only_string_modules', false); if ($get_only_string_modules) { $filter['tagente_modulo.id_tipo_modulo IN'] = "(17,23,3,10,33)"; } // Status selector if ($status_modulo == AGENT_MODULE_STATUS_NORMAL) { //Normal $sql_conditions .= ' estado = 0 AND utimestamp > 0 ) OR (tagente_modulo.id_tipo_modulo IN(21,22,23,100)) '; } elseif ($status_modulo == AGENT_MODULE_STATUS_CRITICAL_BAD) { //Critical $sql_conditions .= ' estado = 1 AND utimestamp > 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_WARNING) { //Warning $sql_conditions .= ' estado = 2 AND utimestamp > 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_NOT_NORMAL) { //Not normal $sql_conditions .= ' estado <> 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_UNKNOWN) { //Unknown $sql_conditions .= ' estado = 3 AND utimestamp <> 0 )'; } elseif ($status_modulo == AGENT_MODULE_STATUS_NOT_INIT) { //Not init $sql_conditions .= ' utimestamp = 0 ) AND tagente_modulo.id_tipo_modulo NOT IN (21,22,23,100)'; } if ($status_modulo != -1) { $filter['id_agente_modulo IN'] = ' (SELECT id_agente_modulo FROM tagente_estado where ' . $sql_conditions; } $get_id_and_name = (bool) get_parameter ('get_id_and_name'); $get_distinct_name = (bool) get_parameter ('get_distinct_name'); // Fields $fields = '*'; if ($get_id_and_name) $fields = array('id_agente_modulo', 'nombre'); if ($get_distinct_name) $fields = array('DISTINCT(nombre)'); $indexed = (bool) get_parameter ('indexed', true); $agentName = (string) get_parameter ('agent_name', null); $server_name = (string) get_parameter ('server_name', null); $server_id = (int) get_parameter ('server_id', 0); /* This will force to get local modules although metaconsole is active, by default get all modules from all nodes */ $force_local_modules = (int) get_parameter ('force_local_modules', 0); if ($agentName != null) { $search = array(); $search['alias'] = io_safe_output($agentName); } else $search = false; if (is_metaconsole() && !$force_local_modules) { if (enterprise_include_once ('include/functions_metaconsole.php') !== ENTERPRISE_NOT_HOOK) { $connection = metaconsole_get_connection($server_name); if ($server_id > 0) { $connection = metaconsole_get_connection_by_id($server_id); } if (metaconsole_load_external_db($connection) == NOERR) { /* Get all agents if no agent was given */ if ($id_agent == 0) $id_agent = array_keys( agents_get_group_agents( array_keys (users_get_groups ()), $search, "none")); $agent_modules = agents_get_modules ($id_agent, $fields, $filter, $indexed, true, false, $tags); } // Restore db connection metaconsole_restore_db(); } } else { /* Get all agents if no agent was given */ if ($id_agent == 0) $id_agent = array_keys( agents_get_group_agents( array_keys(users_get_groups ()), $search, "none")); $agent_modules = agents_get_modules ($id_agent, $fields, $filter, $indexed, true, false, $tags); } if (empty($agent_modules)) $agent_modules = array(); if (!empty($tags)) { $implode_tags = implode(",", $tags); $tag_modules = db_get_all_rows_sql("SELECT DISTINCT id_agente_modulo FROM ttag_module WHERE id_tag IN (" . $implode_tags . ")"); if ($tag_modules) { $final_modules = array(); foreach ($agent_modules as $key => $module) { $in_array = false; foreach ($tag_modules as $t_module) { if ($module['id_agente_modulo'] == $t_module['id_agente_modulo']) { $in_array = true; } } if ($in_array) { $final_modules[] = $module; } } $agent_modules = $final_modules; } else { $agent_modules = array(); } } foreach ($agent_modules as $key => $module) { $agent_modules[$key]['nombre'] = io_safe_output($module['nombre']); } $get_order_json = (bool)get_parameter('get_order_json', false); if ($get_order_json) { $new_elements = array(); $index = 0; foreach ($agent_modules as $key => $module) { $new_elements[$index]['id_agente_modulo'] = $module['id_agente_modulo']; $new_elements[$index]['nombre'] = io_safe_output($module['nombre']); $index++; } $agent_modules = $new_elements; } echo json_encode ($agent_modules); return; } if ($get_agent_status_tooltip) { $id_agent = (int) get_parameter ('id_agent'); $metaconsole = (bool) get_parameter('metaconsole', false); $id_server = (int) get_parameter('id_server', 0); //Metaconsole $server = null; if ($metaconsole) { $filter = array(); if (!empty($id_agent)) $filter['id_tagente'] = $id_agent; if (!empty($id_server)) $filter['id_tmetaconsole_setup'] = $id_server; $agent = db_get_row_filter('tmetaconsole_agent', $filter); } else { $agent = db_get_row ('tagente', 'id_agente', $id_agent); } if ($agent === false) { return; } echo '

'.$agent['nombre'].'

'; echo ''.__('Main IP').': '.$agent['direccion'].'
'; echo ''.__('Group').': '; $hack_metaconsole = ''; if ($metaconsole) { $hack_metaconsole = '../../'; } echo html_print_image($hack_metaconsole . 'images/groups_small/'.groups_get_icon ($agent['id_grupo']).'.png', true); echo groups_get_name ($agent['id_grupo']).'
'; echo ''.__('Last contact').': '.human_time_comparation($agent['ultimo_contacto']).'
'; echo ''.__('Last remote contact').': '.human_time_comparation($agent['ultimo_contacto_remoto']).'
'; if (!$metaconsole) { # Fix : Only show agents with module with tags of user profile $_user_tags = tags_get_user_tags($config['id_user'], 'RR'); $_sql_post = ''; if (is_array($_user_tags) && !empty($_user_tags)) { $_tags = implode(',', array_keys($_user_tags)); $_sql_post .= ' AND tagente_modulo.id_agente_modulo IN (SELECT a.id_agente_modulo FROM tagente_modulo a, ttag_module b WHERE a.id_agente_modulo=b.id_agente_modulo AND b.id_tag IN (' . $_tags . ')) '; } $sql = sprintf ('SELECT tagente_modulo.descripcion, tagente_modulo.nombre FROM tagente_estado, tagente_modulo WHERE tagente_modulo.id_agente = %d AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND tagente_estado.estado = 1', $id_agent); $sql .= $_sql_post; $bad_modules = db_get_all_rows_sql ($sql); $sql = sprintf ('SELECT COUNT(*) FROM tagente_modulo WHERE id_agente = %d AND disabled = 0', $id_agent); $total_modules = db_get_sql ($sql); if ($bad_modules === false) $size_bad_modules = 0; else $size_bad_modules = sizeof ($bad_modules); // Modules down if ($size_bad_modules > 0) { echo ''.__('Monitors down').': '.$size_bad_modules.' / '.$total_modules; echo ''; } // Alerts (if present) $sql = sprintf ('SELECT COUNT(talert_template_modules.id) FROM talert_template_modules, tagente_modulo, tagente WHERE tagente.id_agente = %d AND tagente.disabled = 0 AND tagente.id_agente = tagente_modulo.id_agente AND tagente_modulo.disabled = 0 AND tagente_modulo.id_agente_modulo = talert_template_modules.id_agent_module AND talert_template_modules.times_fired > 0 ', $id_agent); $alert_modules = (int) db_get_sql ($sql); if ($alert_modules > 0) { $sql = sprintf ('SELECT tagente_modulo.nombre, talert_template_modules.last_fired FROM talert_template_modules, tagente_modulo, tagente WHERE tagente.id_agente = %d AND tagente.disabled = 0 AND tagente.id_agente = tagente_modulo.id_agente AND tagente_modulo.disabled = 0 AND tagente_modulo.id_agente_modulo = talert_template_modules.id_agent_module AND talert_template_modules.times_fired > 0 ', $id_agent); $alerts = db_get_all_rows_sql ($sql); echo ''.__('Alerts fired').':'; echo "'; } } return; } if ($get_agentmodule_status_tooltip) { $id_module = (int) get_parameter ('id_module'); $metaconsole = (bool)get_parameter('metaconsole'); $id_server = (int)get_parameter('id_server'); if ($metaconsole) { $server = db_get_row('tmetaconsole_setup', 'id', $id_server); if (metaconsole_connect($server) != NOERR) { return; } } $module = db_get_row ('tagente_modulo', 'id_agente_modulo', $id_module); echo '

'; echo html_print_image("images/brick.png", true) . ' '; echo ui_print_truncate_text($module['nombre'], 'module_small', false, true, false).'

'; echo ''.__('Type').': '; $agentmoduletype = modules_get_agentmodule_type ($module['id_agente_modulo']); echo modules_get_moduletype_name ($agentmoduletype).' '; echo html_print_image("images/" . modules_get_type_icon ($agentmoduletype), true) . '
'; echo ''.__('Module group').': '; $modulegroup = modules_get_modulegroup_name (modules_get_agentmodule_modulegroup ($module['id_agente_modulo'])); if ($modulegroup === false) { echo __('None').'
'; } else { echo $modulegroup.'
'; } echo ''.__('Agent').': '; echo ui_print_truncate_text(modules_get_agentmodule_agent_alias($module['id_agente_modulo']), 'agent_small', false, true, false).'
'; if ($module['id_tipo_modulo'] == 18) { echo ''.__('Address').': '; // Get the IP/IPs from the module description // Always the IP is the last part of the description (after the last space) $ips = explode(' ', $module['descripcion']); $ips = $ips[count($ips)-1]; $ips = explode(',', $ips); if (count($ips) == 1) { echo $ips[0]; } else { echo ''; } } if ($metaconsole) { metaconsole_restore_db(); } return; } if ($get_group_status_tooltip) { $id_group = (int) get_parameter ('id_group'); $group = db_get_row ('tgrupo', 'id_grupo', $id_group); echo '

' . html_print_image("images/groups_small/" . groups_get_icon ($group['id_grupo']) . ".png", true); echo ui_print_truncate_text($group['nombre'], GENERIC_SIZE_TEXT, false, true, false) . '

'; echo ''.__('Parent').': '; if ($group['parent'] == 0) { echo __('None') . '
'; } else { $group_parent = db_get_row ('tgrupo', 'id_grupo', $group['parent']); echo html_print_image("images/groups_small/" . groups_get_icon ($group['parent']) . ".png", true); echo $group_parent['nombre'] . '
'; } echo '' . __('Sons') . ': '; $groups_sons = db_get_all_fields_in_table ('tgrupo', 'parent', $group['id_grupo']); if ($groups_sons === false) { echo __('None').'
'; } else { echo '

'; foreach($groups_sons as $group_son) { echo html_print_image("images/groups_small/" . groups_get_icon ($group_son['id_grupo']) . ".png", true); echo $group_son['nombre'].'
'; } } return; } if ($get_agent_id) { $agent_name = (string) get_parameter ("agent_name"); echo agents_get_agent_id ($agent_name); return; } if ($get_agents_source_json) { $source = get_parameter('source', ''); if (empty($source)) { $sql_report_log = 'SELECT id_agente, alias FROM tagente, tagent_module_log WHERE tagente.id_agente = tagent_module_log.id_agent AND tagente.disabled = 0'; } else { $sql_report_log = 'SELECT id_agente, alias FROM tagente, tagent_module_log WHERE tagente.id_agente = tagent_module_log.id_agent AND tagente.disabled = 0 AND tagent_module_log.source like "'. $source.'"'; } $all_agent_log = db_get_all_rows_sql($sql_report_log); foreach ($all_agent_log as $key => $value) { $agents2[$value['id_agente']] = $value['alias']; } echo json_encode($agents2); return; } return; } $id_agente = (int) get_parameter ("id_agente", 0); if (empty ($id_agente)) { return; } $agent_a = check_acl ($config['id_user'], 0, "AR"); $agent_w = check_acl ($config['id_user'], 0, "AW"); $access = ($agent_a == true) ? 'AR' : (($agent_w == true) ? 'AW' : 'AR'); $agent = db_get_row ('tagente', 'id_agente', $id_agente); // get group for this id_agente $id_grupo = $agent['id_grupo']; $is_extra = enterprise_hook('policies_is_agent_extra_policy', array($id_agente)); if ($is_extra === ENTERPRISE_NOT_HOOK) { $is_extra = false; } $all_groups = agents_get_all_groups_agent ($id_agente, $id_grupo); if (! check_acl_one_of_groups ($config['id_user'], $all_groups, "AR") && ! check_acl_one_of_groups ($config['id_user'], $all_groups, "AW", $id_agente) && !$is_extra) { db_pandora_audit("ACL Violation", "Trying to access (read) to agent ".agents_get_name($id_agente)); include ("general/noaccess.php"); return; } // Check for Network FLAG change request $flag = get_parameter('flag', ''); if ($flag !== '') { if ($flag == 1 && check_acl_one_of_groups ($config['id_user'], $all_groups, "AW")) { $id_agent_module = get_parameter('id_agente_modulo'); db_process_sql_update('tagente_modulo', array('flag' => 1), array('id_agente_modulo' => $id_agent_module)); } } // Check for Network FLAG change request $flag_agent = get_parameter('flag_agent',''); if ($flag_agent !== '') { if ($flag_agent == 1 && check_acl_one_of_groups ($config['id_user'], $all_groups, "AW")) { db_process_sql_update('tagente_modulo', array('flag' => 1), array('id_agente' =>$id_agente)); } } if ($agent["icon_path"]) { $icon = gis_get_agent_icon_map($agent["id_agente"], true); } else { $icon = 'images/bricks.png'; } ///-------------Code for the tabs in the header of agent page----------- $tab = get_parameter ("tab", "main"); /* Manage tab */ $managetab = array(); if (check_acl_one_of_groups ($config['id_user'],$all_groups, "AW") || $is_extra) { $managetab['text'] ='' . html_print_image("images/setup.png", true, array ("title" => __('Manage'))) . ''; if ($tab == 'manage') $managetab['active'] = true; else $managetab['active'] = false; $managetab['godmode'] = 1; } /* Main tab */ $maintab['text'] = '' . html_print_image("images/agent_mc.png", true, array("title" => __('Main'))) . ''; if ($tab == 'main') $maintab['active'] = true; else $maintab['active'] = false; /* Alert tab */ $alerttab['text'] = '' . html_print_image("images/op_alerts.png", true, array("title" => __('Alerts'))) . ''; if ($tab == 'alert') $alerttab['active'] = true; else $alerttab['active'] = false; /* Inventory */ $inventorytab = enterprise_hook ('inventory_tab'); if ($inventorytab == -1) $inventorytab = ""; /* Collection */ $collectiontab = enterprise_hook('collection_tab'); if ($collectiontab == -1) $collectiontab = ""; /* Policy */ $policyTab = enterprise_hook('policy_tab'); if ($policyTab == -1) $policyTab = ""; /* UX Console */ enterprise_include_once('/include/functions_ux_console.php'); $active_ux = enterprise_hook('get_ux_transactions', array($id_agente)); if(!empty($active_ux)){ $ux_console_tab = enterprise_hook('ux_console_tab'); if ($ux_console_tab == -1) $ux_console_tab = ""; } /* WUX Console */ $modules_wux = enterprise_hook('get_wux_modules' , array($id_agente)); if($modules_wux){ $wux_console_tab = enterprise_hook('wux_console_tab'); if ($wux_console_tab == -1) $wux_console_tab = ""; } $url_route_analyzer = enterprise_hook('get_url_route_analyzer_modules', array($id_agente)); if ($url_route_analyzer) { $url_route_analyzer_tab = enterprise_hook('url_route_analyzer_tab'); if ($url_route_analyzer_tab == -1) { $url_route_analyzer_tab = ""; } } /* GIS tab */ $gistab=array(); if ($config['activate_gis']) { $gistab['text'] = '' .html_print_image("images/op_gis.png", true, array( "title" => __('GIS data'))) .''; if ($tab == 'gis') $gistab['active'] = true; else $gistab['active'] = false; } /* Incident tab */ $total_incidents = agents_get_count_incidents($id_agente); if ($total_incidents > 0) { $incidenttab['text'] = '' . html_print_image ("images/book_edit.png", true, array ("title" =>__('Incidents'))) . ''; if ($tab == 'incident') $incidenttab['active'] = true; else $incidenttab['active'] = false; } /* Url address tab */ if ($agent['url_address'] != '') { $urladdresstab['text'] = '' . html_print_image ("images/link.png", true, array ("title" =>__('Url address'))) . ''; } if ($tab == 'url_address') $urladdresstab['active'] = true; else $urladdresstab['active'] = false; /* Custom fields tab */ $custom_fields['text'] = '' . html_print_image("images/custom_field.png", true, array("title" => __('Custom fields'))) . ''; if ($tab == 'custom_fields') { $custom_fields['active'] = true; } else { $custom_fields['active'] = false; } /* Graphs tab */ $graphs['text'] = '' . html_print_image("images/chart.png", true, array("title" => __('Graphs'))) . ''; if ($tab == 'graphs') { $graphs['active'] = true; } else { $graphs['active'] = false; } /* Log viewer tab */ if (enterprise_installed() && $config['log_collector']) { $is_windows = strtoupper(substr(PHP_OS, 0, 3)) == 'WIN'; $agent_has_logs = (bool) db_get_value('id_agent', 'tagent_module_log', 'id_agent', $id_agente); if ($agent_has_logs && !$is_windows) { $log_viewer_tab = array(); $log_viewer_tab['text'] = '' . html_print_image("images/gm_log.png", true, array("title" => __('Log Viewer'))) . ''; $log_viewer_tab['active'] = $tab == 'log_viewer'; } } /* eHorus tab */ if ($config['ehorus_enabled'] && !empty($config['ehorus_custom_field']) && (check_acl_one_of_groups($config['id_user'], $all_groups, 'AW') || is_user_admin($config['id_user']))) { $ehorus_agent_id = agents_get_agent_custom_field($id_agente, $config['ehorus_custom_field']); if (!empty($ehorus_agent_id)) { $tab_url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=ehorus&id_agente='.$id_agente; $ehorus_tab['text'] = '' . html_print_image ('images/ehorus/ehorus.png', true, array ( 'title' => __('eHorus'))) . ''; // Hidden subtab layer $ehorus_tab['sub_menu'] = ''; $ehorus_tab['active'] = $tab == 'ehorus'; } } $onheader = array('manage' => $managetab, 'main' => $maintab, 'alert' => $alerttab, 'inventory' => $inventorytab, 'collection' => $collectiontab, 'gis' => $gistab, 'custom' => $custom_fields, 'graphs' => $graphs, 'policy' => $policyTab, 'ux_console' => $ux_console_tab, 'wux_console' => $wux_console_tab, 'url_route_analyzer' => $url_route_analyzer_tab); //Added after it exists // If the agent has incidents associated if ($total_incidents) { $onheader['incident'] = $incidenttab; } if ($agent['url_address'] != '') { $onheader['url_address'] = $urladdresstab; } // If the log viewer tab exists if (isset($log_viewer_tab) && !empty($log_viewer_tab)) { $onheader['log_viewer'] = $log_viewer_tab; } // If the ehorus id exists if (isset($ehorus_tab) && !empty($ehorus_tab)) { $onheader['ehorus'] = $ehorus_tab; } //Tabs for extensions foreach ($config['extensions'] as $extension) { if (isset($extension['extension_ope_tab']) && !isset($extension['extension_god_tab'])) { if (check_acl_one_of_groups($config['id_user'], $all_groups, $extension['extension_ope_tab']['acl'])) { //VMware extension is only available for VMware OS if ($extension['extension_ope_tab']['id'] === "vmware_manager") { //Check if OS is vmware $id_remote_field = db_get_value ("id_field", "tagent_custom_fields", "name", "vmware_type"); $vmware_type = db_get_value_filter("description", "tagent_custom_data", array("id_field" => $id_remote_field, "id_agent" => $agent["id_agente"])); if ($vmware_type != "vm") { continue; } } //RHEV extension is only available for RHEV Virtual Machines if ($extension['extension_ope_tab']['id'] === "rhev_manager") { //Get id for remote field "rhev_type" $id_remote_field = db_get_value("id_field", "tagent_custom_fields", "name", "rhev_type"); //Get rhev type for this agent $rhev_type = db_get_value_filter ("description", "tagent_custom_data", array ("id_field" => $id_remote_field, "id_agent" => $agent['id_agente'])); //Check if rhev type is a vm if ($rhev_type != "vm") { continue; } } $image = $extension['extension_ope_tab']['icon']; $name = $extension['extension_ope_tab']['name']; $id = $extension['extension_ope_tab']['id']; $id_extension = get_parameter('id_extension', ''); if ($id_extension == $id) { $active = true; } else { $active = false; } $url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=extension&id_agente='.$id_agente . '&id_extension=' . $id; $extension_tab = array('text' => '' . html_print_image ($image, true, array ( "title" => $name)) . '', 'active' => $active); $onheader = $onheader + array($id => $extension_tab); } } } if($tab == "wux_console_tab"){ $help_header = "wux_console"; } else{ $help_header = ""; } ui_print_page_header(agents_get_alias($id_agente), $icon, false, $help_header, false, $onheader, false, '', $config['item_title_size_text']); switch ($tab) { case "custom_fields": require ("custom_fields.php"); break; case "gis": require ("gis_view.php"); break; case "manage": require ("estado_generalagente.php"); break; case "main": require ("estado_generalagente.php"); echo ""; require ("estado_monitores.php"); echo ""; require ("alerts_status.php"); echo ""; require ("status_events.php"); break; case "data_view": require ("datos_agente.php"); break; case "alert": require ("alerts_status.php"); break; case "inventory": enterprise_include ("operation/agentes/agent_inventory.php"); break; case "collection": enterprise_include ("operation/agentes/collection_view.php"); break; case "policy": enterprise_include ("operation/agentes/policy_view.php"); break; case "ux_console_tab": enterprise_include ("operation/agentes/ux_console_view.php"); break; case "wux_console_tab": enterprise_include ("operation/agentes/wux_console_view.php"); break; case "url_route_analyzer_tab": enterprise_include ("operation/agentes/url_route_analyzer.php"); break; case "graphs"; require("operation/agentes/graphs.php"); break; case "incident": require("godmode/agentes/agent_incidents.php"); break; case "url_address": require("operation/agentes/url_address.php"); break; case "log_viewer": $embebed_into_agent_view = true; enterprise_include ("operation/log/log_viewer.php"); break; case "ehorus": require("operation/agentes/ehorus.php"); break; case "extension": $found = false; foreach($config['extensions'] as $extension) { if (isset($extension['extension_ope_tab'])) { $id = $extension['extension_ope_tab']['id']; $function = $extension['extension_ope_tab']['function']; $id_extension = get_parameter('id_extension', ''); if ($id_extension == $id) { call_user_func_array($function, array()); $found = true; } } } if (!$found) { ui_print_error_message ("Invalid tab specified in ".__FILE__.":".__LINE__); } break; } ?>