'nombre', 'order' => 'ASC'); break; case 'down': $selectNameDown = $selected; $order = array('field' => 'nombre', 'order' => 'DESC'); break; } break; case 'os': switch ($sort) { case 'up': $selectOsUp = $selected; $order = array('field' => 'id_os', 'order' => 'ASC'); break; case 'down': $selectOsDown = $selected; $order = array('field' => 'id_os', 'order' => 'DESC'); break; } break; case 'interval': switch ($sort) { case 'up': $selectIntervalUp = $selected; $order = array('field' => 'intervalo', 'order' => 'ASC'); break; case 'down': $selectIntervalDown = $selected; $order = array('field' => 'intervalo', 'order' => 'DESC'); break; } break; case 'group': switch ($sort) { case 'up': $selectGroupUp = $selected; $order = array('field' => 'id_grupo', 'order' => 'ASC'); break; case 'down': $selectGroupDown = $selected; $order = array('field' => 'id_grupo', 'order' => 'DESC'); break; } break; case 'last_contact': switch ($sort) { case 'up': $selectLastContactUp = $selected; $order = array('field' => 'ultimo_contacto', 'order' => 'ASC'); break; case 'down': $selectLastContactDown = $selected; $order = array('field' => 'ultimo_contacto', 'order' => 'DESC'); break; } break; default: $selectNameUp = $selected; $selectNameDown = ''; $selectOsUp = ''; $selectOsDown = ''; $selectIntervalUp = ''; $selectIntervalDown = ''; $selectGroupUp = ''; $selectGroupDown = ''; $selectLastContactUp = ''; $selectLastContactDown = ''; $order = array('field' => 'nombre', 'order' => 'ASC'); break; } $agents = false; if ($searchAgents) { $userGroups = users_get_groups($config['id_user'], 'AR', false); $id_userGroups = array_keys($userGroups); switch ($config["dbtype"]) { case "mysql": $sql = " FROM tagente AS t1 INNER JOIN tgrupo AS t2 ON t2.id_grupo = t1.id_grupo WHERE ( 1 = ( SELECT is_admin FROM tusuario WHERE id_user = '" . $config['id_user'] . "' ) OR t1.id_grupo IN ( " . implode(',', $id_userGroups) . " ) OR " . $extra_sql . " 0 IN ( SELECT id_grupo FROM tusuario_perfil WHERE id_usuario = '" . $config['id_user'] . "' AND id_perfil IN ( SELECT id_perfil FROM tperfil WHERE agent_view = 1 ) ) ) AND ( t1.nombre COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%' OR t2.nombre COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%' ) "; break; case "postgresql": case "oracle": $sql = " FROM tagente AS t1 INNER JOIN tgrupo AS t2 ON t2.id_grupo = t1.id_grupo WHERE ( 1 = ( SELECT is_admin FROM tusuario WHERE id_user = '" . $config['id_user'] . "' ) OR t1.id_grupo IN ( " . implode(',', $id_userGroups) . " ) OR " . $extra_sql . " 0 IN ( SELECT id_grupo FROM tusuario_perfil WHERE id_usuario = '" . $config['id_user'] . "' AND id_perfil IN ( SELECT id_perfil FROM tperfil WHERE agent_view = 1 ) ) ) AND ( t1.nombre LIKE '%%" . $stringSearchSQL . "%%' OR t2.nombre LIKE '%%" . $stringSearchSQL . "%%' ) "; break; } $select = "SELECT t1.id_agente, t1.ultimo_contacto, t1.nombre, t1.id_os, t1.intervalo, t1.id_grupo, t1.disabled"; $limit = " ORDER BY " . $order['field'] . " " . $order['order'] . " LIMIT " . $config['block_size'] . " OFFSET " . get_parameter ('offset',0); $query = $select . $sql . $limit; $agents = db_process_sql($query); if($agents !== false) { $totalAgents = db_get_row_sql('SELECT COUNT(id_agente) AS agent_count ' . $sql); $totalAgents = $totalAgents['agent_count']; } } if (!$agents) { echo "
" . __("Zero results found") . "
\n"; } else { $table->cellpadding = 4; $table->cellspacing = 4; $table->width = "98%"; $table->class = "databox"; $table->head = array (); $table->head[0] = __('Agent') . ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . ''; $table->head[1] = __('OS'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectOsUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectOsDown)) . ''; $table->head[2] = __('Interval'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectIntervalUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectIntervalDown)) . ''; $table->head[3] = __('Group'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectGroupUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectGroupDown)) . ''; $table->head[4] = __('Modules'); $table->head[5] = __('Status'); $table->head[6] = __('Alerts'); $table->head[7] = __('Last contact'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectLastContactUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectLastContactDown)) . ''; $table->head[8] = ''; $table->align = array (); $table->align[0] = "left"; $table->align[1] = "center"; $table->align[2] = "center"; $table->align[3] = "center"; $table->align[4] = "center"; $table->align[5] = "center"; $table->align[6] = "center"; $table->align[7] = "right"; $table->align[8] = "center"; $table->data = array (); foreach ($agents as $agent) { $agent_info = reporting_get_agent_module_info ($agent["id_agente"]); $modulesCell = ''. $agent_info["modules"] . ''; if ($agent_info["monitor_alertsfired"] > 0) $modulesCell .= ' : '.$agent_info["monitor_alertsfired"].''; if ($agent_info["monitor_normal"] > 0) $modulesCell .= ' : '.$agent_info["monitor_normal"].''; if ($agent_info["monitor_warning"] > 0) $modulesCell .= ' : '.$agent_info["monitor_warning"].''; if ($agent_info["monitor_critical"] > 0) $modulesCell .= ' : '.$agent_info["monitor_critical"].''; if ($agent_info["monitor_unknown"] > 0) $modulesCell .= ' : '.$agent_info["monitor_unknown"].''; if ($agent['disabled']) { $cellName = "" . ui_print_agent_name ($agent["id_agente"], true, "upper") . ui_print_help_tip(__('Disabled'), true) . ""; } else { $cellName = ui_print_agent_name ($agent["id_agente"], true, "upper"); } $last_time = strtotime ($agent["ultimo_contacto"]); $now = time (); $diferencia = $now - $last_time; $time = ui_print_timestamp ($last_time, true); $time_style = $time; if ($diferencia > ($agent["intervalo"] * 2)) $time_style = ''.$time.''; $manage_agent = ''; if (check_acl ($config['id_user'], $agent['id_grupo'], "AW")) { $manage_agent = '' . html_print_image("images/setup.png", true, array("title" => __('Manage'), "alt" => __('Manage'))) . ''; } array_push($table->data, array( $cellName, ui_print_os_icon ($agent["id_os"], false, true), $agent['intervalo'], ui_print_group_icon ($agent["id_grupo"], true), $modulesCell, $agent_info["status_img"], $agent_info["alert_img"], $time_style, $manage_agent)); } echo "
"; ui_pagination ($totalAgents); html_print_table ($table); unset($table); ui_pagination ($totalAgents); } ?>