* Both are similars: * get_db_all_rows_filter ('table', array ('disabled', 0)); * get_db_all_rows_filter ('table', 'disabled = 0'); * * Both are similars: * get_db_all_rows_filter ('table', array ('disabled' => 0, 'history_data' => 0), 'name', 'OR'); * get_db_all_rows_filter ('table', 'disabled = 0 OR history_data = 0', 'name'); * * @param mixed Fields of the table to retrieve. Can be an array or a coma * separated string. All fields are retrieved by default * * * @return mixed False in case of error or invalid values passed. Affected rows otherwise */ function get_events ($filter = false, $fields = false) { return get_db_all_rows_filter ('tevento', $filter, $fields); } function get_event ($id, $fields = false) { if (empty ($id)) return false; global $config; if (is_array ($fields)) { if (! in_array ('id_grupo', $fields)) $fields[] = 'id_grupo'; } $event = get_db_row ('tevento', 'id_evento', $id, $fields); if (! give_acl ($config['id_user'], $event['id_grupo'], 'IR')) return false; return $event; } /** * Get all the events ids similar to a given event id. * * An event is similar then the event text (evento) and the id_agentmodule are * the same. * * @param int Event id to get similar events. * * @return array A list of events ids. */ function get_similar_events_ids ($id) { $ids = array (); $event = get_event ($id, array ('evento', 'id_agentmodule')); if ($event === false) return $ids; $events = get_db_all_rows_filter ('tevento', array ('evento' => $event['evento'], 'id_agentmodule' => $event['id_agentmodule']), array ('id_evento')); if ($events === false) return $ids; foreach ($events as $event) $ids[] = $event['id_evento']; return $ids; } /** * Delete events in a transaction * * @param mixed Event ID or array of events * @param bool Whether to delete similar events too. * * @return bool Whether or not it was successful */ function delete_event ($id_event, $similar = true) { global $config; //Cleans up the selection for all unwanted values also casts any single values as an array $id_event = (array) safe_int ($id_event, 1); /* We must delete all events like the selected */ if ($similar) { foreach ($id_event as $id) { $id_event = array_merge ($id_event, get_similar_events_ids ($id)); } } process_sql_begin (); $errors = 0; foreach ($id_event as $event) { $sql = sprintf ("DELETE FROM tevento WHERE id_evento = %d", $event); $ret = process_sql ($sql); if (give_acl ($config["id_user"], get_event_group ($event), "IM") == 0) { //Check ACL audit_db ($config["id_user"], $config["remote_addr"], "ACL Violation", "Attempted deleting event #".$event); } elseif ($ret !== false) { audit_db ($config["id_user"], $config["remote_addr"], "Event deleted", "Deleted event #".$event); //ACL didn't fail nor did return continue; } $errors++; break; } if ($errors > 1) { process_sql_rollback (); return false; } else { process_sql_commit (); return true; } } /** * Validate events in a transaction * * @param mixed Event ID or array of events * @param bool Whether to validate similar events or not. * * @return bool Whether or not it was successful */ function validate_event ($id_event, $similars = true) { global $config; //Cleans up the selection for all unwanted values also casts any single values as an array $id_event = (array) safe_int ($id_event, 1); /* We must validate all events like the selected */ if ($similars) { foreach ($id_event as $id) { $id_event = array_merge ($id_event, get_similar_events_ids ($id)); } } process_sql_begin (); $errors = 0; foreach ($id_event as $event) { $sql = sprintf ("UPDATE tevento SET estado = 1, id_usuario = '%s' WHERE id_evento = %d", $config['id_user'], $event); $ret = process_sql ($sql); if (give_acl ($config["id_user"], get_event_group ($event), "IW") == 0) { //Check ACL audit_db ($config["id_user"], $config["remote_addr"], "ACL Violation", "Attempted updating event #".$event); } elseif ($ret !== false) { //ACL didn't fail nor did return continue; } $errors++; break; } if ($errors > 1) { process_sql_rollback (); return false; } else { foreach ($id_event as $event) { audit_db ($config["id_user"], $config["remote_addr"], "Event validated", "Validated event #".$event); } process_sql_commit (); return true; } } /** * Get group id of an event. * * @param int $id_event Event id * * @return int Group id of the given event. */ function get_event_group ($id_event) { return (int) get_db_value ('id_grupo', 'tevento', 'id_evento', (int) $id_event); } /** * Get description of an event. * * @param int $id_event Event id. * * @return string Description of the given event. */ function get_event_description ($id_event) { return (string) get_db_value ('evento', 'tevento', 'id_evento', (int) $id_event); } /** * Insert a event in the event log system. * * @param int $event * @param int $id_group * @param int $id_agent * @param int $status * @param string $id_user * @param string $event_type * @param int $priority * @param int $id_agent_module * @param int $id_aam * * @return int event id */ function create_event ($event, $id_group, $id_agent, $status = 0, $id_user = "", $event_type = "unknown", $priority = 0, $id_agent_module = 0, $id_aam = 0) { $sql = sprintf ('INSERT INTO tevento (id_agente, id_grupo, evento, timestamp, estado, utimestamp, id_usuario, event_type, criticity, id_agentmodule, id_alert_am) VALUES (%d, %d, "%s", NOW(), %d, UNIX_TIMESTAMP(NOW()), "%s", "%s", %d, %d, %d)', $id_agent, $id_group, $event, $status, $id_user, $event_type, $priority, $id_agent_module, $id_aam); return (int) process_sql ($sql, "insert_id"); } /** * Prints a small event table * * @param string $filter SQL WHERE clause * @param int $limit How many events to show * @param int $width How wide the table should be * @param bool $return Prints out HTML if false * * @return string HTML with table element */ function print_events_table ($filter = "", $limit = 10, $width = 440, $return = false) { global $config; $sql = sprintf ("SELECT * FROM tevento %s ORDER BY timestamp DESC LIMIT %d", $filter, $limit); $result = get_db_all_rows_sql ($sql); if ($result === false) { $return = '