'.__('There was a problem loading agent').''; return; } $is_extra = enterprise_hook('policies_is_agent_extra_policy', array($id_agente)); if($is_extra === ENTERPRISE_NOT_HOOK) { $is_extra = false; } if (! check_acl ($config["id_user"], $agent["id_grupo"], "AR") && !$is_extra) { db_pandora_audit("ACL Violation", "Trying to access Agent General Information"); require_once ("general/noaccess.php"); return; } echo '
'; echo ''; //Agent name echo ''; if ($agent['disabled']) { $cellName = "" . ui_print_agent_name ($agent["id_agente"], true, 500, "text-transform: uppercase;", true) . ui_print_help_tip(__('Disabled'), true) . ""; } else { $cellName = ui_print_agent_name ($agent["id_agente"], true, 500, "text-transform: uppercase;", true); } echo ''; //Addresses echo ''; echo ''; // Agent Interval echo ''; echo ''; // Comments echo ''; echo ''; // Agent version echo ''; echo ''; // Position Information if ($config['activate_gis']) { $dataPositionAgent = gis_get_data_last_position_agent($agent['id_agente']); echo ''; echo ''; } // If the url description is setted if ($agent['url_address'] != ''){ echo ''; echo ''; } // Last contact echo ''; // Timezone Offset if ($agent['timezone_offset'] != 0) { echo ''; echo ''; } // Next contact (agent) $progress = agents_get_next_contact($id_agente); echo ''; echo ''; // Custom fields $fields = db_get_all_rows_filter('tagent_custom_fields', array('display_on_front' => 1)); if ($fields === false) { $fields = array (); } if ($fields) foreach($fields as $field) { echo ''; $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').'-'; } echo ''; } //End of table echo '
'.__('Agent name').''.$cellName.'
'.__('IP Address').''; $ips = array(); $addresses = agents_get_addresses ($id_agente); $address = agents_get_address($id_agente); foreach($addresses as $k => $add) { if($add == $address) { unset($addresses[$k]); } } echo $address; if (!empty($addresses)) { ui_print_help_tip(__('Other IP addresses').':
'.implode('
',$addresses)); } echo '
'.__('Interval').''.human_time_description_raw ($agent["intervalo"]).'
'.__('Description').''.$agent["comentarios"].'
'.__('Agent Version'). ''.$agent["agent_version"].'
'.__('Position (Long, Lat)'). ''; if ($dataPositionAgent === false) { echo __('There is no GIS data.'); } else { echo ''; if ($dataPositionAgent['description'] != "") echo $dataPositionAgent['description']; else echo $dataPositionAgent['stored_longitude'].', '.$dataPositionAgent['stored_latitude']; echo ""; } echo '
'.__('Url address').'' . $agent["url_address"] . '
'.__('Last contact')." / ".__('Remote').''; ui_print_timestamp ($agent["ultimo_contacto"]); echo " / "; if ($agent["ultimo_contacto_remoto"] == "01-01-1970 00:00:00") { echo __('Never'); } else { echo $agent["ultimo_contacto_remoto"]; } echo '
'.__('Timezone Offset'). ''.$agent["timezone_offset"].'
'.__('Next agent contact').'' . progress_bar($progress, 200, 20) . '
'.$field['name'] . ui_print_help_tip (__('Custom field'), true).''.$custom_value.'
'; // Blank space below title, DONT remove this, this // Breaks the layout when Flash charts are enabled :-o echo '
 
'; //Floating div echo '
'; if ($config["agentaccess"]){ echo ''.__('Agent access rate (24h)').'
'; graphic_agentaccess($id_agente, 280, 110, 86400); } echo '
'; graph_graphic_agentevents ($id_agente, 290, 15, 86400, ''); echo '
'; echo '
'; echo '
'; html_print_submit_button (__('Go to agent detail'), 'upd_button', false, 'class="sub upd"'); echo '
'; echo '
'; return; } require_once ('include/functions_reporting.php'); require_once ('include/functions_users.php'); require_once ('include/functions_servers.php'); global $config; $enterpriseEnable = false; if (enterprise_include_once('include/functions_policies.php') !== ENTERPRISE_NOT_HOOK) { $enterpriseEnable = true; require_once ('enterprise/include/functions_policies.php'); } $type = get_parameter('type'); $id = get_parameter('id'); $id_father = get_parameter('id_father'); $statusSel = get_parameter('status'); $search_free = get_parameter('search_free', ''); $printTable = get_parameter('printTable', 0); if ($printTable) { $id_agente = get_parameter('id_agente'); printTable($id_agente); } /* * It's a binary for branch (0 show - 1 hide) * and there are 2 position * 0 0 - show 2 branch * 0 1 - hide the 2º branch * 1 0 - hide the 1º branch * 1 1 - hide 2 branch */ $lessBranchs = get_parameter('less_branchs'); switch ($type) { case 'group': case 'os': case 'module_group': case 'policies': case 'module': $avariableGroups = users_get_groups(); $avariableGroupsIds = array_keys($avariableGroups); $countRows = 0; if (!empty($avariableGroupsIds)) { $extra_sql = enterprise_hook('policies_get_agents_sql_condition'); if($extra_sql != '') { $extra_sql .= ' OR'; } $groups_sql = implode(', ', $avariableGroupsIds); if ($search_free != '') { $search_sql = " AND nombre COLLATE utf8_general_ci LIKE '%$search_free%'"; } else { $search_sql = ''; } //Extract all rows of data for each type switch ($type) { case 'group': $sql = sprintf('SELECT * FROM tagente WHERE id_grupo = %s AND (%s id_grupo IN (%s))', $id, $extra_sql, $groups_sql); break; case 'os': $sql = sprintf('SELECT * FROM tagente WHERE id_os = %s AND (%s id_grupo IN (%s))', $id, $extra_sql, $groups_sql); break; case 'module_group': $extra_sql = substr($extra_sql,1); $extra_sql = "tagente_modulo.".$extra_sql; $sql = sprintf('SELECT * FROM tagente WHERE id_agente IN (SELECT tagente_modulo.id_agente FROM tagente_modulo, tagente_estado WHERE tagente_modulo.id_agente = tagente_estado.id_agente AND tagente_estado.utimestamp !=0 AND tagente_modulo.id_agente_modulo = tagente_estado.id_agente_modulo AND id_module_group = %s AND ((%s id_grupo IN (%s)))', $id, $extra_sql, $groups_sql); break; case 'policies': $sql = ""; if ($id == 0) { $queryWhere = 'id_agente NOT IN (SELECT id_agent FROM tpolicy_agents)'; $sql = sprintf('SELECT DISTINCT tagente.id_agente as id_agente, tagente.nombre as nombre FROM tagente, tagente_modulo, tagente_estado WHERE tagente_estado.id_agente = tagente.id_agente AND tagente_modulo.id_agente_modulo = tagente_estado.id_agente_modulo AND tagente_modulo.id_policy_module = 0 AND tagente_estado.utimestamp != 0 AND tagente.id_agente IN (SELECT id_agente FROM tagente WHERE %s AND ( %s id_grupo IN (%s)))', $queryWhere, $extra_sql, $groups_sql); } else { $queryWhere = sprintf('id_agente IN (SELECT id_agent FROM tpolicy_agents WHERE id_policy = %s)',$id); $sql = sprintf('SELECT DISTINCT tagente.id_agente as id_agente, tagente.nombre as nombre FROM tagente, tagente_modulo, tagente_estado, tpolicy_modules WHERE tagente_estado.id_agente = tagente.id_agente AND tagente_modulo.id_agente_modulo = tagente_estado.id_agente_modulo AND tpolicy_modules.id = tagente_modulo.id_policy_module AND tpolicy_modules.id_policy = %s AND tagente_modulo.id_policy_module != 0 AND tagente_estado.utimestamp != 0 AND tagente.id_agente IN (SELECT id_agente FROM tagente WHERE %s AND ( %s id_grupo IN (%s)))', $id, $queryWhere, $extra_sql, $groups_sql); } break; case 'module': //Replace separator token "articapandora_32_pandoraartica_" for " " //example: // "Load_articapandora_32_pandoraartica_Average" //result -> "Load Average" $name = str_replace(array('_articapandora_'.ord(' ').'_pandoraartica_', '_articapandora_'.ord('#').'_pandoraartica_','_articapandora_'.ord('/').'_pandoraartica_'),array(' ','#','/'),$id); $name = io_safe_input($name); $sql = sprintf('SELECT * FROM tagente WHERE id_agente IN ( SELECT id_agente FROM tagente_modulo WHERE nombre = \'%s\' ) AND (%s id_grupo IN (%s))', $name, $extra_sql, $groups_sql); break; } $sql .= ' AND tagente.disabled = 0'. $search_sql; $countRows = db_get_num_rows($sql); } if ($countRows === 0) { echo ""; return; } $new = true; $count = 0; echo "\n"; break; //also aknolegment as second subtree/branch case 'agent_group': case 'agent_module_group': case 'agent_os': case 'agent_policies': case 'agent_module': $fatherType = str_replace('agent_', '', $type); switch ($fatherType) { case 'group': $sql = 'SELECT * FROM tagente_modulo AS t1 INNER JOIN tagente_estado AS t2 ON t1.id_agente_modulo = t2.id_agente_modulo WHERE t1.id_agente = ' . $id; break; case 'os': $sql = 'SELECT * FROM tagente_modulo AS t1 INNER JOIN tagente_estado AS t2 ON t1.id_agente_modulo = t2.id_agente_modulo WHERE t1.id_agente = ' . $id; break; case 'module_group': $sql = 'SELECT * FROM tagente_modulo AS t1 INNER JOIN tagente_estado AS t2 ON t1.id_agente_modulo = t2.id_agente_modulo WHERE t1.id_agente = ' . $id . ' AND id_module_group = ' . $id_father; break; case 'policies': $whereQuery = ''; if ($id_father != 0) $whereQuery = ' AND t1.id_policy_module IN (SELECT id FROM tpolicy_modules WHERE id_policy = ' . $id_father . ')'; $sql = 'SELECT * FROM tagente_modulo AS t1 INNER JOIN tagente_estado AS t2 ON t1.id_agente_modulo = t2.id_agente_modulo WHERE t1.id_agente = ' . $id . $whereQuery; break; case 'module': $name = str_replace(array('_articapandora_'.ord(' ').'_pandoraartica_', '_articapandora_'.ord('#').'_pandoraartica_','_articapandora_'.ord('/').'_pandoraartica_'),array(' ','#','/'),$id_father); switch ($config["dbtype"]) { case "mysql": $sql = 'SELECT * FROM tagente_modulo AS t1 INNER JOIN tagente_estado AS t2 ON t1.id_agente_modulo = t2.id_agente_modulo WHERE t1.id_agente = ' . $id . ' AND nombre = \'' . io_safe_input($name) . '\''; break; case "postgresql": case "oracle": $sql = 'SELECT * FROM tagente_modulo AS t1 INNER JOIN tagente_estado AS t2 ON t1.id_agente_modulo = t2.id_agente_modulo WHERE t1.id_agente = ' . $id . ' AND nombre = \'' . io_safe_input($name) . '\''; break; } break; } // This line checks for initializated modules or (non-initialized) asyncronous modules $sql .= ' AND disabled = 0 AND (utimestamp > 0 OR id_tipo_modulo IN (21,22,23))'; $countRows = db_get_num_rows($sql); if ($countRows === 0) { echo ""; return; } $new = true; $count = 0; echo "\n"; break; } return; } include_once($config['homedir'] . "/include/functions_groups.php"); include_once($config['homedir'] . "/include/functions_os.php"); include_once($config['homedir'] . "/include/functions_modules.php"); include_once($config['homedir'] . "/include/functions_servers.php"); include_once($config['homedir'] . "/include/functions_reporting.php"); include_once($config['homedir'] . "/include/functions_ui.php"); function printTree_($type) { global $config; $search_free = get_parameter('search_free', ''); $select_status = get_parameter('status', -1); echo ''; echo ''; echo ''; echo '
'; //Get all groups $avariableGroups = users_get_groups (); //db_get_all_rows_in_table('tgrupo', 'nombre'); //Get all groups with agents $full_groups = db_get_all_rows_sql("SELECT DISTINCT tagente.id_grupo FROM tagente, tagente_estado WHERE tagente.id_agente = tagente_estado.id_agente AND tagente_estado.utimestamp != 0"); $fgroups = array(); foreach ($full_groups as $fg) { $fgroups[$fg['id_grupo']] = ""; } //We only want groups with agents, so we need the intesect of both arrays. $avariableGroups = array_intersect_key($avariableGroups, $fgroups); $avariableGroupsIds = implode(',',array_keys($avariableGroups)); if($avariableGroupsIds == ''){ $avariableGroupsIds == -1; } switch ($type) { default: case 'os': if ($search_free != '') { $sql = "SELECT * FROM tconfig_os WHERE id_os IN (SELECT id_os FROM tagente WHERE nombre COLLATE utf8_general_ci LIKE '%$search_free%')"; $list = db_get_all_rows_sql($sql); } else { $list = db_get_all_rows_sql("SELECT DISTINCT (tagente.id_os), tconfig_os.name FROM tagente, tconfig_os WHERE tagente.id_os = tconfig_os.id_os"); } break; case 'group': $stringAvariableGroups = ( implode(', ', array_map( create_function('&$itemA', '{ return "\'" . $itemA . "\'"; }'), $avariableGroups ) ) ); if ($search_free != '') { $sql_search = " AND id_grupo IN (SELECT id_grupo FROM tagente WHERE nombre COLLATE utf8_general_ci LIKE '%$search_free%')"; } else { $sql_search =''; } switch ($config["dbtype"]) { case "mysql": case "postgresql": $list = db_get_all_rows_sql("SELECT * FROM tgrupo WHERE nombre IN (" . $stringAvariableGroups . ") $sql_search"); break; case "oracle": $list = db_get_all_rows_sql("SELECT * FROM tgrupo WHERE dbms_lob.substr(nombre,4000,1) IN (" . $stringAvariableGroups . ")"); break; } break; case 'module_group': if ($search_free != '') { $sql = "SELECT * FROM tmodule_group WHERE id_mg IN (SELECT id_module_group FROM tagente_modulo WHERE id_agente IN (SELECT id_agente FROM tagente WHERE nombre COLLATE utf8_general_ci LIKE '%$search_free%'))"; $list = db_get_all_rows_sql($sql); } else { $list = db_get_all_rows_sql("SELECT distinct id_mg, name FROM tmodule_group, tagente_modulo WHERE tmodule_group.id_mg = tagente_modulo.id_module_group"); if ($list !== false) array_push($list, array('id_mg' => 0, 'name' => 'Not assigned')); } break; case 'policies': $groups_id = array_keys($avariableGroups); $groups = implode(',',$groups_id); if ($search_free != '') { $sql = "SELECT * FROM tpolicies WHERE id_group IN ($groups) AND id IN (SELECT id_policy FROM tpolicy_agents WHERE id_agent IN (SELECT id_agente FROM tagente WHERE nombre COLLATE utf8_general_ci LIKE '%$search_free%'))"; $list = db_get_all_rows_sql($sql); } else { $list = db_get_all_rows_sql("SELECT DISTINCT tpolicies.id, tpolicies.name FROM tpolicies, tpolicy_modules, tagente_estado, tagente, tagente_modulo WHERE tagente.id_agente = tagente_estado.id_agente AND tagente_modulo.id_agente = tagente_estado.id_agente AND tagente_modulo.id_agente_modulo = tagente_estado.id_agente_modulo AND tagente_estado.utimestamp != 0 AND tagente_modulo.id_policy_module != 0 AND tpolicy_modules.id = tagente_modulo.id_policy_module AND tpolicies.id = tpolicy_modules.id_policy AND tpolicies.id_group IN ($groups)"); if ($list !== false) array_push($list, array('id' => 0, 'name' => 'No policy')); } break; case 'module': if ($search_free != '') { $sql_search = " AND t1.id_agente IN (SELECT id_agente FROM tagente WHERE nombre COLLATE utf8_general_ci LIKE '%$search_free%')"; } else { $sql_search =''; } switch ($config["dbtype"]) { case "mysql": case "postgresql": $list = db_get_all_rows_sql('SELECT t1.nombre FROM tagente_modulo t1, tagente t2, tagente_estado t3 WHERE t1.id_agente = t2.id_agente AND t1.id_agente_modulo = t3.id_agente_modulo AND t3.utimestamp !=0 AND t2.id_grupo in (' . $avariableGroupsIds . ')' .$sql_search.' GROUP BY t1.nombre ORDER BY t1.nombre'); break; case "oracle": $list = db_get_all_rows_sql('SELECT dbms_lob.substr(t1.nombre,4000,1) as nombre FROM tagente_modulo t1, tagente t2, tagente_estado t3 WHERE t1.id_agente = t2.id_agente AND t2.id_grupo in (' . $avariableGroupsIds . ') AND t1.id_agente_modulo = t3.id_agente_modulo AND t3.utimestamp !=0 GROUP BY dbms_lob.substr(t1.nombre,4000,1) ORDER BY dbms_lob.substr(t1.nombre,4000,1) ASC'); break; } break; } if ($list === false) { ui_print_error_message("There aren't agents in this agrupation"); } else { echo "
    \n"; $first = true; foreach ($list as $item) { $iconImg = ''; switch ($type) { default: case 'os': $id = $item['id_os']; $name = $item['name']; $iconImg = html_print_image(str_replace('.png' ,'_small.png', ui_print_os_icon ($item['id_os'], false, true, false)) . " ", true); $num_ok = os_agents_ok($id); $num_critical = os_agents_critical($id); $num_warning = os_agents_warning($id); $num_unknown = os_agents_unknown($id); break; case 'group': $id = $item['id_grupo']; $name = $item['nombre']; $iconImg = html_print_image ("images/groups_small/" . groups_get_icon($item['id_grupo']).".png", true, array ("style" => 'vertical-align: middle; width: 16px; height: 16px;')); $num_ok = groups_agent_ok($id); $num_critical = groups_agent_critical($id); $num_warning = groups_agent_warning($id); $num_unknown = groups_agent_unknown ($id); break; case 'module_group': $id = $item['id_mg']; $name = $item['name']; $num_ok = modules_group_agent_ok($id); $num_critical = modules_group_agent_critical ($id); $num_warning = modules_group_agent_warning($id); $num_unknown = modules_group_agent_unknown($id); break; case 'policies': $id = $item['id']; $name = $item['name']; $num_ok = policies_agents_ok($id); $num_critical = policies_agents_critical($id); $num_warning = policies_agents_warning($id); $num_unknown = policies_agents_unknown($id); break; case 'module': $id = str_replace(array(' ','#','/'), array('_articapandora_'.ord(' ').'_pandoraartica_', '_articapandora_'.ord('#').'_pandoraartica_', '_articapandora_'.ord('/').'_pandoraartica_'),io_safe_output($item['nombre'])); $name = io_safe_output($item['nombre']); $module_name = $item['nombre']; $num_ok = modules_agents_ok($module_name); $num_critical = modules_agents_critical($module_name); $num_warning = modules_agents_warning($module_name); $num_unknown = modules_agents_unknown($module_name); break; } $lessBranchs = 0; if ($first) { if ($item != end($list)) { $img = html_print_image ("operation/tree/first_closed.png", true, array ("style" => 'vertical-align: middle;', "id" => "tree_image_" . $type . "_" . $id, "pos_tree" => "0")); $first = false; } else { $lessBranchs = 1; $img = html_print_image ("operation/tree/one_closed.png", true, array ("style" => 'vertical-align: middle;', "id" => "tree_image_" . $type . "_" . $id, "pos_tree" => "1")); } } else { if ($item != end($list)) $img = html_print_image ("operation/tree/closed.png", true, array ("style" => 'vertical-align: middle;', "id" => "tree_image_" . $type . "_" . $id, "pos_tree" => "2")); else { $lessBranchs = 1; $img = html_print_image ("operation/tree/last_closed.png", true, array ("style" => 'vertical-align: middle;', "id" => "tree_image_" . $type . "_" . $id, "pos_tree" => "3")); } } echo "
  • " . $img . $iconImg ." " . __($name) . ' ('. ''.''.$num_ok.''.''. ' : '.$num_critical.'' . ' : '.$num_warning.''. ' : '.$num_unknown.''.') '. ""; echo "
    "; echo "
  • \n"; } echo "
\n"; echo '
'; echo '
'; echo ' '; echo'
'; echo '
'; } } global $config; $enterpriseEnable = false; if (enterprise_include_once('include/functions_policies.php') !== ENTERPRISE_NOT_HOOK) { $enterpriseEnable = true; } ///////// INI MENU AND TABS ///////////// $img_style = array ("class" => "top", "width" => 16); $activeTab = get_parameter('sort_by','group'); $os_tab = array('text' => "" . html_print_image ("images/computer.png", true, array ("title" => __('OS'))) . "", 'active' => $activeTab == "os"); $group_tab = array('text' => "" . html_print_image ("images/group.png", true, array ("title" => __('Groups'))) . "", 'active' => $activeTab == "group"); $module_group_tab = array('text' => "" . html_print_image ("images/agents_group.png", true, array ("title" => __('Module groups'))) . "", 'active' => $activeTab == "module_group"); if ($enterpriseEnable) { $policies_tab = array('text' => "" . html_print_image ("images/policies.png", true, array ("title" => __('Policies'))) . "", 'active' => $activeTab == "policies"); } else { $policies_tab = ''; } $module_tab = array('text' => "" . html_print_image ("images/brick.png", true, array ("title" => __('Modules'))) . "", 'active' => $activeTab == "module"); $onheader = array('os' => $os_tab, 'group' => $group_tab, 'module_group' => $module_group_tab, 'policies' => $policies_tab, 'module' => $module_tab); switch ($activeTab) { case 'group': $order = __('groups'); break; case 'module_group': $order = __('module groups'); break; case 'policies': $order = __('policies'); break; case 'module': $order = __('modules'); break; case 'os': $order = __('OS'); break; } ui_print_page_header (__('Tree view')." - ".__('Sort the agents by ') .$order, "images/extensions.png", false, "", false, $onheader); echo "
"; echo '"; echo "
"; echo "
"; echo "
"; ///////// END MENU AND TABS ///////////// printTree_($activeTab); ?>