From 468edbe5ddb35589b3cc90892751be06ee519c3f Mon Sep 17 00:00:00 2001 From: vgilc Date: Wed, 16 Jan 2013 15:55:50 +0000 Subject: [PATCH] 2013-01-16 Vanessa Gil * include/functions_api.php: Added 'agent_name' and 'module_name' in option 'create_event'. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7487 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 ++ pandora_console/include/functions_api.php | 71 ++++++++++++++--------- 2 files changed, 50 insertions(+), 26 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index f407b6ca2b..197afc9582 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-01-16 Vanessa Gil + + * include/functions_api.php: Added 'agent_name' and + 'module_name' in option 'create_event'. + 2013-01-16 Sergio Martin * operation/events/events.php: Hide the history events tab diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index 1f27c8efa3..d6dbd7eb6d 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -5568,39 +5568,58 @@ function api_set_create_event($id, $trash1, $other, $returnType) { } if ($other['data'][2] != '') $values['id_agente'] = $other['data'][2]; - if ($other['data'][3] != '') - $values['id_usuario'] = $other['data'][3]; - + else { + if ($other['data'][3] != '') { + $agent_name = $other['data'][3]; + $id_agent = agents_get_agent_id ($agent_name); + if ($id_agent !== false) { + $values['id_agente'] = $id_agent; + } + } + } if ($other['data'][4] != '') - $values['estado'] = $other['data'][4]; + $values['id_usuario'] = $other['data'][4]; + + if ($other['data'][5] != '') + $values['estado'] = $other['data'][5]; $values['timestamp'] = date("Y-m-d H:i:s", get_system_time()); $values['evento'] = $id; $values['utimestamp'] = get_system_time (); - if ($other['data'][5] != '') - $values['id_agentmodule'] = $other['data'][5]; if ($other['data'][6] != '') - $values['id_alert_am'] = $other['data'][6]; - if ($other['data'][7] != '') - $values['criticity'] = $other['data'][7]; - + $values['id_agentmodule'] = $other['data'][6]; + else { + if ($other['data'][7] != '') { + $module_name = $other['data'][7]; + $id_agent_module = modules_get_agentmodule_id ($module_name, $values['id_agente']); + if ($id_agent_module !== false) { + $values['id_agentmodule'] = $id_agent_module; + } + } + } + if ($other['data'][8] != '') + $values['id_alert_am'] = $other['data'][8]; + if ($other['data'][9] != '') - $values['tags'] = $other['data'][9]; - if ($other['data'][10] != '') - $values['source'] = $other['data'][10]; + $values['criticity'] = $other['data'][9]; + + if ($other['data'][11] != '') + $values['tags'] = $other['data'][11]; + if ($other['data'][12] != '') + $values['source'] = $other['data'][12]; else $values['source'] = 'Pandora'; - if ($other['data'][11] != '') - $values['id_extra'] = $other['data'][11]; - if ($other['data'][12] != '') { - $values['critical_instructions'] = $other['data'][12]; - } - if ($other['data'][13] != '') { - $values['warning_instructions'] = $other['data'][13]; - } + if ($other['data'][13] != '') + $values['id_extra'] = $other['data'][13]; if ($other['data'][14] != '') { - $values['unknown_instructions'] = $other['data'][14]; + $values['critical_instructions'] = $other['data'][14]; + } + if ($other['data'][15] != '') { + $values['warning_instructions'] = $other['data'][15]; + } + if ($other['data'][16] != '') { + $values['unknown_instructions'] = $other['data'][16]; } $values ['ack_utimestamp'] = 0; @@ -5619,13 +5638,13 @@ function api_set_create_event($id, $trash1, $other, $returnType) { $return = db_process_sql_insert('tevento', $values); - if ($other['data'][8] != '') { //user comments + if ($other['data'][10] != '') { //user comments if ($return !== false) { //event successfully created - $user_comment = $other['data'][8]; + $user_comment = $other['data'][10]; $res = events_comment ($return, $user_comment); - if ($other['data'][15] != '') { //owner user + if ($other['data'][17] != '') { //owner user if ($res !== false) { //comment added - $owner_user = $other['data'][15]; + $owner_user = $other['data'][17]; events_change_owner ($return, $owner_user, true); } }