diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 59f6b2f368..76f67e78b2 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2012-11-05 Vanessa Gil + + * operation/reporting/reporting_xml.php: Moved functions + to functions_xml.php + * include/functions_xml.php: Added file. + 2012-11-05 Sergio Martin * include/functions_graph.php: Fixed a bug of the events/alerts/unwknown diff --git a/pandora_console/include/functions_xml.php b/pandora_console/include/functions_xml.php new file mode 100644 index 0000000000..81b309e791 --- /dev/null +++ b/pandora_console/include/functions_xml.php @@ -0,0 +1,168 @@ +". $agent_data['nombre']."\n"; + $content_report .= " ". $agent_data['comentarios']."\n"; + $content_report .= " ".$agent_data['direccion']."\n"; + $content_report .= " ".$agent_data['id_grupo']."\n"; + $content_report .= " ". $agent_data['intervalo']."\n"; + + $sql = "SELECT t1.description, t2.name + FROM tagent_custom_data t1, tagent_custom_fields t2 + WHERE t1.id_agent=".$agent_data['id_agente']." + AND t1.id_field=t2.id_field"; + $custom_fields = db_get_all_rows_sql($sql); + + if ($custom_fields !== false) { + foreach ($custom_fields as $field) { + $field['name'] = io_safe_output($field['name']); + //remove blank + $field['name'] = preg_replace('/\s/', '_', $field['name']); + $content_report .= " <".$field['name'].">".$field['description']."\n"; + } + } + $content_report .= " ".$agent_data['id_os']."\n"; + $content_report .= " ". agents_get_name ($agent_data['id_parent'])."\n"; + $content_report .= " ".$agent_data['id_extra']."\n"; + $content_report .= " ".$agent_data['disabled']."\n"; + + $result = fwrite($file, $content_report); + $position++; + + fclose($file); + return $position; +} + +//xml con los datos de módulos de un agente +function xml_file_agent_conf ($modules = array(), $file_temp, $position = 0, $id_agent) { + + $file = fopen($file_temp, 'a+'); + + foreach ($modules as $module) { + + $content_report = " \n"; + + $content_report .= " ".$module['nombre']."\n"; + $content_report .= " ".$module['id_agente_modulo']."\n"; + $content_report .= " ".$module['id_tipo_modulo']."\n"; + $content_report .= " ".$module['descripcion']."\n"; + $content_report .= " ". $module['extended_info']."\n"; + $content_report .= " ". $module['unit']."\n"; + $content_report .= " ". $module['max']."\n"; + $content_report .= " ".$module['min']."\n"; + $content_report .= " ". $module['module_interval']."\n"; + $content_report .= " ". $module['module_ff_interval']."\n"; + $content_report .= " ". $module['tcp_port']."\n"; + $content_report .= " ". $module['tcp_send']."\n"; + $content_report .= " ". $module['tcp_rcv']."\n"; + $content_report .= " ". $module['snmp_community']."\n"; + $content_report .= " ".$module['snmp_oid']."\n"; + $content_report .= " ". $module['ip_target']."\n"; + $content_report .= " ".$module['id_module_group']."\n"; + $content_report .= " ". $module['disabled']."\n"; + $content_report .= " ".$module['id_plugin']."\n"; + $content_report .= " ". $module['post_process']."\n"; + $content_report .= " ". $module['min_warning']."\n"; + $content_report .= " ". $module['max_warning']."\n"; + $content_report .= " ". $module['str_warning']."\n"; + $content_report .= " ". $module['min_critical']."\n"; + $content_report .= " ".$module['max_critical']."\n"; + $content_report .= " ". $module['str_critical']."\n"; + $content_report .= " ". $module['id_policy_module']."\n"; + $content_report .= " ".$module['wizard_level']."\n"; + $content_report .= " ". $module['critical_instructions']."\n"; + $content_report .= " ". $module['warning_instructions']."\n"; + $content_report .= " ".$module['unknown_instructions']."\n"; + + $content_report .= " \n"; + + $result = fwrite($file, $content_report); + $position++; + } + fclose($file); + return $position; +} + +// xml eventos +function xml_file_event ($events = array(), $file_temp, $position = 0, $id_agent) { + + $file = fopen($file_temp, 'a+'); + + foreach ($events as $event) { + + $content_report = " \n"; + $content_report .= " ".$event['evento']."\n"; + $content_report .= " ".$event['event_type']."\n"; + $content_report .= " ".get_priority_name($event['criticity'])."\n"; + $content_report .= " ".$event['count_rep']."\n"; + $content_report .= " ".$event['time2']."\n"; + $content_report .= " ".modules_get_agentmodule_name ($event['id_agentmodule'])."\n"; + $content_report .= " ".agents_get_name ($id_agent)."\n"; + + if ($event['estado'] == 0) + $status = __('New'); + else if ($event['estado'] == 1) + $status = __('Validated'); + else if ($event['estado'] == 2) + $status = __('In process'); + else + $status = ""; + + $content_report .= " ".$status."\n"; + $content_report .= " ".$event['user_comment']."\n"; + $content_report .= " ".$event['tags']."\n"; + $content_report .= " ".$event['source']."\n"; + $content_report .= " ".$event['id_extra']."\n"; + $content_report .= " ".$event['owner_user']."\n"; + $content_report .= " \n"; + + $result = fwrite($file, $content_report); + $position++; + + } + fclose($file); + return $position; +} + +//xml graph +function xml_file_graph ($data_module = array(), $file_temp, $position = 0) { + + $file = fopen($file_temp, 'a+'); + + foreach ($data_module as $data_m) { + + $content_report = " \n"; + $content_report .= " ".date ('Y-m-d H:i:s', $data_m['utimestamp'])."\n"; + $content_report .= " ".$data_m['utimestamp']."\n"; + $content_report .= " ".$data_m['datos']."\n"; + $content_report .= " \n"; + + $result = fwrite($file, $content_report); + $position++; + } + + fclose($file); + return $position; +} +?> diff --git a/pandora_console/operation/reporting/reporting_xml.php b/pandora_console/operation/reporting/reporting_xml.php index 55e360457a..5730456a76 100644 --- a/pandora_console/operation/reporting/reporting_xml.php +++ b/pandora_console/operation/reporting/reporting_xml.php @@ -17,6 +17,7 @@ include_once("include/functions_modules.php"); include_once("include/functions_events.php"); include_once ('include/functions_groups.php'); include_once ('include/functions_netflow.php'); +include_once ('include/functions_xml.php'); enterprise_include_once ('include/functions_metaconsole.php'); function xml_array ($array, $buffer_file = array()) { @@ -56,150 +57,6 @@ function xml_array ($array, $buffer_file = array()) { } } -function write_xml_file_agent_data ($agent_data = array(), $file_temp) { - - $file = fopen($file_temp, 'a+'); - - $content_report = " ". $agent_data['nombre']."\n"; - $content_report .= " ". $agent_data['comentarios']."\n"; - $content_report .= " ".$agent_data['direccion']."\n"; - $content_report .= " ".$agent_data['id_grupo']."\n"; - $content_report .= " ". $agent_data['intervalo']."\n"; - - $sql = "SELECT t1.description, t2.name - FROM tagent_custom_data t1, tagent_custom_fields t2 - WHERE t1.id_agent=".$agent_data['id_agente']." - AND t1.id_field=t2.id_field"; - $custom_fields = db_get_all_rows_sql($sql); - - if ($custom_fields !== false) { - foreach ($custom_fields as $field) { - $field['name'] = io_safe_output($field['name']); - //remove blank - $field['name'] = preg_replace('/\s/', '_', $field['name']); - $content_report .= " <".$field['name'].">".$field['description']."\n"; - } - } - $content_report .= " ".$agent_data['id_os']."\n"; - $content_report .= " ". agents_get_name ($agent_data['id_parent'])."\n"; - $content_report .= " ".$agent_data['id_extra']."\n"; - $content_report .= " ".$agent_data['disabled']."\n"; - - $result = fwrite($file, $content_report); - $position++; - - fclose($file); - return $position; -} - -function write_xml_file_agent_conf ($modules = array(), $file_temp, $position = 0, $id_agent) { - - $file = fopen($file_temp, 'a+'); - - foreach ($modules as $module) { - - $content_report = " \n"; - - $content_report .= " ".$module['nombre']."\n"; - $content_report .= " ".$module['id_agente_modulo']."\n"; - $content_report .= " ".$module['id_tipo_modulo']."\n"; - $content_report .= " ".$module['descripcion']."\n"; - $content_report .= " ". $module['extended_info']."\n"; - $content_report .= " ". $module['unit']."\n"; - $content_report .= " ". $module['max']."\n"; - $content_report .= " ".$module['min']."\n"; - $content_report .= " ". $module['module_interval']."\n"; - $content_report .= " ". $module['module_ff_interval']."\n"; - $content_report .= " ". $module['tcp_port']."\n"; - $content_report .= " ". $module['tcp_send']."\n"; - $content_report .= " ". $module['tcp_rcv']."\n"; - $content_report .= " ". $module['snmp_community']."\n"; - $content_report .= " ".$module['snmp_oid']."\n"; - $content_report .= " ". $module['ip_target']."\n"; - $content_report .= " ".$module['id_module_group']."\n"; - $content_report .= " ". $module['disabled']."\n"; - $content_report .= " ".$module['id_plugin']."\n"; - $content_report .= " ". $module['post_process']."\n"; - $content_report .= " ". $module['min_warning']."\n"; - $content_report .= " ". $module['max_warning']."\n"; - $content_report .= " ". $module['str_warning']."\n"; - $content_report .= " ". $module['min_critical']."\n"; - $content_report .= " ".$module['max_critical']."\n"; - $content_report .= " ". $module['str_critical']."\n"; - $content_report .= " ". $module['id_policy_module']."\n"; - $content_report .= " ".$module['wizard_level']."\n"; - $content_report .= " ". $module['critical_instructions']."\n"; - $content_report .= " ". $module['warning_instructions']."\n"; - $content_report .= " ".$module['unknown_instructions']."\n"; - - $content_report .= " \n"; - - $result = fwrite($file, $content_report); - $position++; - } - fclose($file); - return $position; -} - -function write_xml_file_event ($events = array(), $file_temp, $position = 0, $id_agent) { - - $file = fopen($file_temp, 'a+'); - - foreach ($events as $event) { - - $content_report = " \n"; - $content_report .= " ".$event['evento']."\n"; - $content_report .= " ".$event['event_type']."\n"; - $content_report .= " ".get_priority_name($event['criticity'])."\n"; - $content_report .= " ".$event['count_rep']."\n"; - $content_report .= " ".$event['time2']."\n"; - $content_report .= " ".modules_get_agentmodule_name ($event['id_agentmodule'])."\n"; - $content_report .= " ".agents_get_name ($id_agent)."\n"; - - if ($event['estado'] == 0) - $status = __('New'); - else if ($event['estado'] == 1) - $status = __('Validated'); - else if ($event['estado'] == 2) - $status = __('In process'); - else - $status = ""; - - $content_report .= " ".$status."\n"; - $content_report .= " ".$event['user_comment']."\n"; - $content_report .= " ".$event['tags']."\n"; - $content_report .= " ".$event['source']."\n"; - $content_report .= " ".$event['id_extra']."\n"; - $content_report .= " ".$event['owner_user']."\n"; - $content_report .= " \n"; - - $result = fwrite($file, $content_report); - $position++; - - } - fclose($file); - return $position; -} - -function write_xml_file_graph ($data_module = array(), $file_temp, $position = 0) { - - $file = fopen($file_temp, 'a+'); - - foreach ($data_module as $data_m) { - - $content_report = " \n"; - $content_report .= " ".date ('Y-m-d H:i:s', $data_m['utimestamp'])."\n"; - $content_report .= " ".$data_m['utimestamp']."\n"; - $content_report .= " ".$data_m['datos']."\n"; - $content_report .= " \n"; - - $result = fwrite($file, $content_report); - $position++; - } - - fclose($file); - return $position; -} // Login check if (isset ($_GET["direct"])) { @@ -379,7 +236,6 @@ foreach ($contents as $content) { case 1: case 'simple_graph': - $data["module"] = io_safe_output_xml (db_get_value ('nombre', 'tagente_modulo', 'id_agente_modulo', $content['id_agent_module'])); $data["agent"] = io_safe_output_xml (modules_get_agentmodule_agent_name ($content['id_agent_module'])); @@ -390,7 +246,6 @@ foreach ($contents as $content) { $date_init = $date_end - $content['period']; /// $temp_file = $config['attachment_store'] . '/simple_graph_' . $time.'_'.$content['id_rc'] . '.tmp'; - $file = fopen ($temp_file, 'a+'); $buffer_file["objdata"] = $config['attachment_store'] . '/simple_graph_' . $time.'_'.$content['id_rc'] . '.tmp'; @@ -415,7 +270,7 @@ foreach ($contents as $content) { AND (utimestamp>=$date_init AND utimestamp<=$date_end)"; $data_module = db_get_all_rows_sql($sql); - write_xml_file_graph ($data_module, $temp_file); + xml_file_graph ($data_module, $temp_file); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -434,7 +289,7 @@ foreach ($contents as $content) { AND (utimestamp>=$date_init AND utimestamp<=$date_end) LIMIT $offset,$limit"; $data_module = db_get_all_rows_sql($sql); - $position = write_xml_file_graph ($data_module, $temp_file, $position); + $position = xml_file_graph ($data_module, $temp_file, $position); $offset += $limit; } @@ -480,7 +335,7 @@ foreach ($contents as $content) { AND (utimestamp>=$date_init AND utimestamp<=$date_end)"; $data_module = db_get_all_rows_sql($sql); - write_xml_file_graph ($data_module, $temp_file); + xml_file_graph ($data_module, $temp_file); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -499,7 +354,7 @@ foreach ($contents as $content) { AND (utimestamp>=$date_init AND utimestamp<=$date_end) LIMIT $offset,$limit"; $data_module = db_get_all_rows_sql($sql); - $position = write_xml_file_graph ($data_module, $temp_file, $position); + $position = xml_file_graph ($data_module, $temp_file, $position); $offset += $limit; } @@ -562,7 +417,7 @@ foreach ($contents as $content) { AND (utimestamp>=$date_init AND utimestamp<=$date_end)"; $data_module = db_get_all_rows_sql($sql); - write_xml_file_graph ($data_module, $temp_file); + xml_file_graph ($data_module, $temp_file); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -580,7 +435,7 @@ foreach ($contents as $content) { AND (utimestamp>=$date_init AND utimestamp<=$date_end) LIMIT $offset,$limit"; $data_module = db_get_all_rows_sql($sql); - $position = write_xml_file_graph ($data_module, $temp_file, $position); + $position = xml_file_graph ($data_module, $temp_file, $position); $offset += $limit; } @@ -750,7 +605,7 @@ foreach ($contents as $content) { ORDER BY time2 DESC', $content['id_agent'], $datelimit, $date); $events = db_get_all_rows_sql ($sql); - write_xml_file_event ($events, $temp_file,0, $content['id_agent']); + xml_file_event ($events, $temp_file,0, $content['id_agent']); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -774,7 +629,7 @@ foreach ($contents as $content) { $events = db_get_all_rows_sql ($sql); - $position = write_xml_file_event ($events, $temp_file, $position, $content['id_agent']); + $position = xml_file_event ($events, $temp_file, $position, $content['id_agent']); $offset += $limit; } @@ -883,7 +738,7 @@ foreach ($contents as $content) { ORDER BY utimestamp ASC', $datelimit, $report["datetime"], implode (",", $id_group)); $events = db_get_all_rows_sql($sql); - write_xml_file_event ($events, $temp_file, 0, $content['id_agent']); + xml_file_event ($events, $temp_file, 0, $content['id_agent']); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -905,7 +760,7 @@ foreach ($contents as $content) { $events = db_get_all_rows_sql($sql); - $position = write_xml_file_event ($events, $temp_file, $position, $content['id_agent']); + $position = xml_file_event ($events, $temp_file, $position, $content['id_agent']); $offset += $limit; } @@ -955,7 +810,7 @@ foreach ($contents as $content) { $events = db_get_all_rows_sql($sql); - write_xml_file_event ($events, $temp_file, 0, $content['id_agent']); + xml_file_event ($events, $temp_file, 0, $content['id_agent']); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -976,7 +831,7 @@ foreach ($contents as $content) { $events = db_get_all_rows_sql($sql); - $position = write_xml_file_event ($events, $temp_file, $position, $content['id_agent']); + $position = xml_file_event ($events, $temp_file, $position, $content['id_agent']); $offset += $limit; } @@ -1205,7 +1060,7 @@ foreach ($contents as $content) { $result = fwrite($file, $content_report); fclose($file); - write_xml_file_agent_data($agent_data, $temp_file, $agent_name); + xml_file_agent_data($agent_data, $temp_file, $agent_name); $userGroups = users_get_groups($config['id_user'], 'AR', false); if (empty($userGroups)) { @@ -1284,7 +1139,7 @@ foreach ($contents as $content) { ORDER BY nombre"; $modules = db_get_all_rows_sql ($sql); - write_xml_file_agent_conf ($modules, $temp_file,0, $content['id_agent']); + xml_file_agent_conf ($modules, $temp_file,0, $content['id_agent']); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -1329,7 +1184,7 @@ foreach ($contents as $content) { $modules = db_get_all_rows_sql ($sql); - $position = write_xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']); + $position = xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']); $offset += $limit; } @@ -1372,7 +1227,7 @@ foreach ($contents as $content) { $content_report = " \n"; $content_report .= " \n"; $result = fwrite($file, $content_report); - write_xml_file_agent_data($agent, $temp_file); + xml_file_agent_data($agent, $temp_file); $userGroups = users_get_groups($config['id_user'], 'AR', false); if (empty($userGroups)) { @@ -1452,7 +1307,7 @@ foreach ($contents as $content) { ORDER BY nombre"; $modules = db_get_all_rows_sql ($sql); - write_xml_file_agent_conf ($modules, $temp_file, 0, $content['id_agent']); + xml_file_agent_conf ($modules, $temp_file, 0, $content['id_agent']); $file = fopen ($temp_file, 'a+'); $content_report = " \n"; @@ -1498,7 +1353,7 @@ foreach ($contents as $content) { $modules = db_get_all_rows_sql ($sql); - $position = write_xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']); + $position = xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']); $offset += $limit; }