$name) {
if ($i == 0) {
$str_user_groups .= $id;
} else {
$str_user_groups .= ','.$id;
}
$i++;
}
$url = "index.php?sec=estado&" .
"sec2=operation/snmpconsole/snmp_view&" .
"filter_agent=" . $filter_agent . "&" .
"filter_oid=" . $filter_oid . "&" .
"filter_severity=" . $filter_severity . "&" .
"filter_fired=" . $filter_fired . "&" .
"search_string=" . $search_string . "&" .
"free_search_string=" . $free_search_string . "&" .
"pagination=" . $pagination . "&" .
"offset=" . $offset . "&" .
"trap_type=" . $trap_type . "&" .
"group_by=" .$group_by;
if ($config["pure"]) {
$link['text'] = '' . html_print_image("images/normal_screen.png", true, array("title" => __('Normal screen'))) . '';
}
else {
// Fullscreen
$link['text'] = '' . html_print_image("images/full_screen.png", true, array("title" => __('Full screen'))) . '';
}
// Header
ui_print_page_header(__("SNMP Console"), "images/op_snmp.png", false,
"", false, array($link));
// OPERATIONS
// Delete SNMP Trap entry Event (only incident management access).
if (isset ($_GET["delete"])) {
$id_trap = (int) get_parameter_get ("delete", 0);
if ($id_trap > 0 && check_acl ($config['id_user'], 0, "IM")) {
$result = db_process_sql_delete('ttrap', array('id_trap' => $id_trap));
ui_print_result_message ($result,
__('Successfully deleted'),
__('Could not be deleted'));
}
else {
db_pandora_audit("ACL Violation",
"Trying to delete SNMP event ID #".$id_trap);
}
}
// Check Event (only incident write access).
if (isset ($_GET["check"])) {
$id_trap = (int) get_parameter_get ("check", 0);
if (check_acl ($config['id_user'], 0, "IW")) {
$values = array(
'status' => 1,
'id_usuario' => $config["id_user"]);
$result = db_process_sql_update('ttrap', $values, array('id_trap' => $id_trap));
ui_print_result_message ($result,
__('Successfully updated'),
__('Could not be updated'));
}
else {
db_pandora_audit("ACL Violation",
"Trying to checkout SNMP Trap ID".$id_trap);
}
}
// Mass-process DELETE
if (isset ($_POST["deletebt"])) {
$trap_ids = get_parameter_post ("snmptrapid", array ());
if (is_array ($trap_ids) && check_acl ($config['id_user'], 0, "IW")) {
foreach ($trap_ids as $id_trap) {
db_process_sql_delete('ttrap', array('id_trap' => $id_trap));
}
}
else {
db_pandora_audit("ACL Violation",
"Trying to mass-delete SNMP Trap ID");
}
}
// Mass-process UPDATE
if (isset ($_POST["updatebt"])) {
$trap_ids = get_parameter_post ("snmptrapid", array ());
if (is_array ($trap_ids) && check_acl ($config['id_user'], 0, "IW")) {
foreach ($trap_ids as $id_trap) {
$sql = sprintf ("UPDATE ttrap SET status = 1, id_usuario = '%s' WHERE id_trap = %d", $config["id_user"], $id_trap);
db_process_sql ($sql);
}
}
else {
db_pandora_audit("ACL Violation",
"Trying to mass-delete SNMP Trap ID");
}
}
switch ($config["dbtype"]) {
case "mysql":
$sql = sprintf ("
SELECT *
FROM ttrap
WHERE `source` IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR `source`=''
ORDER BY timestamp DESC
LIMIT %d,%d",$offset,$pagination);
break;
case "postgresql":
$sql = sprintf ("
SELECT *
FROM ttrap
WHERE `source` IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR `source`=''
ORDER BY timestamp DESC
LIMIT %d OFFSET %d",$pagination, $offset);
break;
case "oracle":
$set = array();
$set['limit'] = $pagination;
$set['offset'] = $offset;
$sql = sprintf ("
SELECT *
FROM ttrap
WHERE `source` IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR `source`=''
ORDER BY timestamp DESC");
$sql = oracle_recode_query ($sql, $set);
break;
}
$traps = db_get_all_rows_sql ($sql);
// All traps
$all_traps = db_get_all_rows_sql ("SELECT DISTINCT source FROM ttrap
WHERE `source` IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR `source`=''");
if (($config['dbtype'] == 'oracle') && ($traps !== false)) {
for ($i=0; $i < count($traps); $i++) {
unset($traps[$i]['rnum']);
}
}
// No traps
if (empty ($traps)) {
echo '
'.__('There are no SNMP traps in database').'
';
return;
}
$table->width = '90%';
$table->size = array ();
$table->size[0] = '120px';
$table->data = array ();
// Set filters
$agents = array ();
$oids = array ();
$severities = get_priorities ();
$alerted = array (__('Not fired'), __('Fired'));
foreach ($all_traps as $trap) {
$agent = agents_get_agent_with_ip ($trap['source']);
$agents[$trap["source"]] = $agent !== false ? $agent["nombre"] : $trap["source"];
$oid = enterprise_hook ('get_oid', array ($trap));
if ($oid === ENTERPRISE_NOT_HOOK) {
$oid = $trap["oid"];
}
$oids[$oid] = $oid;
}
//Make query to extract traps of DB.
switch ($config["dbtype"]) {
case "mysql":
$sql = "SELECT *
FROM ttrap
WHERE `source` IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR `source`='' %s
ORDER BY timestamp DESC
LIMIT %d,%d";
break;
case "postgresql":
$sql = "SELECT *
FROM ttrap
WHERE source IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR source='' %s
ORDER BY timestamp DESC
LIMIT %d OFFSET %d";
break;
case "oracle":
$sql = "SELECT *
FROM ttrap
WHERE source IN (
SELECT direccion FROM tagente
WHERE id_grupo IN ($str_user_groups)
)
OR source='' %s
ORDER BY timestamp DESC
LIMIT %d OFFSET %d";
break;
}
//$whereSubquery = 'WHERE 1=1';
$whereSubquery = '';
if ($filter_agent != '') {
switch ($config["dbtype"]) {
case "mysql":
$whereSubquery .= ' AND source LIKE "' . $filter_agent . '"';
break;
case "postgresql":
case "oracle":
$whereSubquery .= ' AND source LIKE \'' . $filter_agent . '\'';
break;
}
}
if ($filter_oid != '') {
//Test if install the enterprise to search oid in text or oid field in ttrap.
if ($config['enterprise_installed']) {
switch ($config["dbtype"]) {
case "mysql":
$whereSubquery .= ' AND (text LIKE "' . $filter_oid . '" OR oid LIKE "' . $filter_oid . '")';
break;
case "postgresql":
case "oracle":
$whereSubquery .= ' AND (text LIKE \'' . $filter_oid . '\' OR oid LIKE \'' . $filter_oid . '\')';
break;
}
}
else {
switch ($config["dbtype"]) {
case "mysql":
$whereSubquery .= ' AND oid LIKE "' . $filter_oid . '"';
break;
case "postgresql":
case "oracle":
$whereSubquery .= ' AND oid LIKE \'' . $filter_oid . '\'';
break;
}
}
}
if ($filter_fired != -1)
$whereSubquery .= ' AND alerted = ' . $filter_fired;
if ($search_string != '') {
switch ($config["dbtype"]) {
case "mysql":
$whereSubquery .= ' AND value LIKE "%' . $search_string . '%"';
break;
case "postgresql":
case "oracle":
$whereSubquery .= ' AND value LIKE \'%' . $search_string . '%\'';
break;
}
}
if ($free_search_string != '') {
switch ($config["dbtype"]) {
case "mysql":
$whereSubquery .= '
AND (source LIKE "%' . $free_search_string . '%" OR
oid LIKE "%' . $free_search_string . '%" OR
oid_custom LIKE "%' . $free_search_string . '%" OR
type_custom LIKE "%' . $free_search_string . '%" OR
value LIKE "%' . $free_search_string . '%" OR
value_custom LIKE "%' . $free_search_string . '%" OR
id_usuario LIKE "%' . $free_search_string . '%" OR
text LIKE "%' . $free_search_string . '%" OR
description LIKE "%' . $free_search_string . '%")';
break;
case "postgresql":
case "oracle":
$whereSubquery .= '
AND (source LIKE \'%' . $free_search_string . '%\' OR
oid LIKE \'%' . $free_search_string . '%\' OR
oid_custom LIKE \'%' . $free_search_string . '%\' OR
type_custom LIKE \'%' . $free_search_string . '%\' OR
value LIKE \'%' . $free_search_string . '%\' OR
value_custom LIKE \'%' . $free_search_string . '%\' OR
id_usuario LIKE \'%' . $free_search_string . '%\' OR
text LIKE \'%' . $free_search_string . '%\' OR
description LIKE \'%' . $free_search_string . '%\')';
break;
}
}
if ($filter_severity != -1) {
//Test if install the enterprise to search oid in text or oid field in ttrap.
if ($config['enterprise_installed'])
$whereSubquery .= ' AND (
(alerted = 0 AND severity = ' . $filter_severity . ') OR
(alerted = 1 AND priority = ' . $filter_severity . '))';
else
$whereSubquery .= ' AND (
(alerted = 0 AND 1 = ' . $filter_severity . ') OR
(alerted = 1 AND priority = ' . $filter_severity . '))';
}
if ($filter_status != -1)
$whereSubquery .= ' AND status = ' . $filter_status;
if ($trap_type == 5) {
$whereSubquery .= ' AND type NOT IN (0, 1, 2, 3, 4)';
}
else if ($trap_type != -1){
$whereSubquery .= ' AND type = ' . $trap_type;
}
if ($group_by) {
$where_without_group = $whereSubquery;
$whereSubquery .= ' GROUP BY source,oid';
}
switch ($config["dbtype"]) {
case "mysql":
$sql = sprintf($sql, $whereSubquery, $offset, $pagination);
break;
case "postgresql":
$sql = sprintf($sql, $whereSubquery, $pagination, $offset);
break;
case "oracle":
$set = array();
$set['limit'] = $pagination;
$set['offset'] = $offset;
$sql = oracle_recode_query ($sql, $set);
break;
}
$traps = db_get_all_rows_sql($sql);
if (($config['dbtype'] == 'oracle') && ($traps !== false)) {
for ($i=0; $i < count($traps); $i++) {
unset($traps[$i]['rnum']);
}
}
// Agent select
$table->data[0][0] = ''.__('Agent').'';
$table->data[0][1] = html_print_select ($agents, 'filter_agent', $filter_agent, 'javascript:this.form.submit();', __('All'), '', true);
// OID select
$table->data[0][2] = ''.__('OID').'';
$table->data[0][3] = html_print_select ($oids, 'filter_oid', $filter_oid, 'javascript:this.form.submit();', __('All'), '', true);
// Alert status select
$table->data[1][0] = ''.__('Alert').'';
$table->data[1][1] = html_print_select ($alerted, "filter_fired", $filter_fired, 'javascript:this.form.submit();', __('All'), '-1', true);
// String search_string
$table->data[1][2] = ''.__('Search value').'';
$table->data[1][3] = html_print_input_text ('search_string', $search_string, '', 40, 0, true);
// Block size for pagination select
$table->data[2][0] = ''.__('Block size for pagination').'';
$paginations[25] = 25;
$paginations[50] = 50;
$paginations[100] = 100;
$paginations[200] = 200;
$paginations[500] = 500;
$table->data[2][1] = html_print_select ($paginations, "pagination", $pagination, 'this.form.submit();', __('Default'), $config["block_size"], true);
// Severity select
$table->data[2][2] = ''.__('Severity').'';
$table->data[2][3] = html_print_select ($severities, 'filter_severity', $filter_severity, 'this.form.submit();', __('All'), -1, true);
// Status
$table->data[3][0] = ''.__('Status').'';
$status_array[-1] = __('All');
$status_array[0] = __('Not validated');
$status_array[1] = __('Validated');
$table->data[3][1] = html_print_select ($status_array, 'filter_status', $filter_status, 'this.form.submit();', '', '', true);
// Free search (search by all alphanumeric fields)
$table->data[3][3] = ''.__('Free search').'' . ui_print_help_tip(__('Search by any alphanumeric field in the trap'), true);
$table->data[3][4] = html_print_input_text ('free_search_string', $free_search_string, '', 40, 0, true);
// Type filter (ColdStart, WarmStart, LinkDown, LinkUp, authenticationFailure, Other)
$table->data[4][1] = ''.__('Type').'' . ui_print_help_tip(__('Search by trap type'), true);
$trap_types = array(-1 => __('None'), 0 => __('Cold start (0)'), 1 => __('Warm start (1)'), 2 => __('Link down (2)'), 3 => __('Link up (3)'), 4 => __('Authentication failure (4)'), 5 => __('Other'));
$table->data[4][2] = html_print_select ($trap_types, 'trap_type', $trap_type, 'this.form.submit();', '', '', true, false, false);
$table->data[4][3] = ''.__('Group by OID/IP').'';
$table->data[4][4] .= __('Yes').' '.html_print_radio_button ('group_by', 1, '', $group_by, true).' ';
$table->data[4][4] .= __('No').' '.html_print_radio_button ('group_by', 0, '', $group_by, true);
$filter = '';
ui_toggle($filter, __('Toggle filter(s)'));
unset ($table);
// Prepare index for pagination
/*
$trapcount = db_get_sql ("
SELECT COUNT(id_trap)
FROM ttrap " .
$whereSubquery);
*/
$trapcount = count($traps);
$url_snmp = "index.php?" .
"sec=snmpconsole&" .
"sec2=operation/snmpconsole/snmp_view&" .
"filter_agent=" . $filter_agent . "&" .
"filter_oid=" . $filter_oid . "&" .
"filter_severity=" . $filter_severity . "&" .
"filter_fired=" . $filter_fired . "&" .
"filter_status=" . $filter_status . "&" .
"search_string=" . $search_string . "&" .
"refr=" . ((int)get_parameter('refr', 0)) . "&" .
"pure=" . $config["pure"] . "&" .
"group_by=" . $group_by . "&" .
"search_string=" . $search_string;
$urlPagination = $url_snmp . "&pagination=" . $pagination . "&offset=" . $offset;
ui_pagination ($trapcount, $urlPagination, $offset, $pagination);
echo '";
echo '';
echo '
' . __('Status') . '
';
echo html_print_image("images/pixel_green.png", true, array("width" => "20", "height" => "20")) . ' - ' . __('Validated');
echo '
';
echo html_print_image("images/pixel_red.png", true, array("width" => "20", "height" => "20")) . ' - ' . __('Not validated');
echo '';
echo '';
echo '
' . __('Alert') . '
';
echo html_print_image("images/pixel_yellow.png", true, array("width" => "20", "height" => "20")) . ' - ' .__('Fired');
echo '
';
echo html_print_image("images/pixel_gray.png", true, array("width" => "20", "height" => "20")) . ' - ' . __('Not fired');
echo '';
echo '';
echo '
' . __('Action') . '
';
echo html_print_image("images/ok.png", true) . ' - ' .__('Validate');
echo '
';
echo html_print_image("images/cross.png", true) . ' - ' . __('Delete');
echo '';
echo '';
echo '
'.__('Legend').'
';
foreach (get_priorities () as $num => $name) {
echo ''.$name.'';
echo '
';
}
echo '';
echo '
';
?>