From ba5c3aa0b97da562681161f7aaa34e2fd2539845 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Wed, 14 Jul 2010 17:03:14 +0000 Subject: [PATCH] 2010-07-14 Sergio Martin * lib/PandoraFMS/Core.pm util/pandora_manage.pl: Added a create incident feature to CLI for pending task: 3019638 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3006 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 6 ++++++ pandora_server/lib/PandoraFMS/Core.pm | 13 ++++++++----- pandora_server/util/pandora_manage.pl | 11 +++++++++++ 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 8e3637a7cc..c577699dfb 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,9 @@ +2010-07-14 Sergio Martin + + * lib/PandoraFMS/Core.pm + util/pandora_manage.pl: Added a create incident feature to + CLI for pending task: 3019638 + 2010-07-08 Ramon Novoa * lib/PandoraFMS/PluginServer.pm: Quote the command passed to diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index e15c9c7047..92f6b2bb37 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1013,14 +1013,17 @@ Create an internal Pandora incident. =cut ########################################################################## -sub pandora_create_incident ($$$$$$$$) { +sub pandora_create_incident ($$$$$$$$;$) { my ($pa_config, $dbh, $title, $text, - $priority, $status, $origin, $id_group) = @_; + $priority, $status, $origin, $id_group, $owner) = @_; logger($pa_config, "Creating incident '$text' source '$origin'.", 8); - - db_do($dbh, 'INSERT INTO tincidencia (`inicio`, `titulo`, `descripcion`, `origen`, `estado`, `prioridad`, `id_grupo`) - VALUES (NOW(), ?, ?, ?, ?, ?, ?)', $title, $text, $origin, $status, $priority, $id_group); + + # Initialize default parameters + $owner = '' unless defined ($owner); + + db_do($dbh, 'INSERT INTO tincidencia (`inicio`, `titulo`, `descripcion`, `origen`, `estado`, `prioridad`, `id_grupo`, `id_usuario`) + VALUES (NOW(), ?, ?, ?, ?, ?, ?, ?)', $title, $text, $origin, $status, $priority, $id_group, $owner); } diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index d86aec7df5..cb9ecdbd05 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -463,6 +463,7 @@ sub help_screen{ help_screen_line('--delete_profile', ' ', 'Delete perfil from user'); help_screen_line('--create_event', ' [ ]', 'Add event'); help_screen_line('--validate_event', ' ', 'Validate events'); + help_screen_line('--create_incident', ' <description> <origin> <status> <priority 0 for Informative, 1 for Low, 2 for Medium, 3 for Serious, 4 for Very serious or 5 for Maintenance> <group> [<owner>]', 'Create incidents'); print "\n"; exit; } @@ -1013,6 +1014,16 @@ sub pandora_manage_main ($$$) { pandora_validate_event_filter ($conf, $id_agentmodule, $id_agent, $datetime_min, $datetime_max, $user_name, $id_alert_agent_module, $criticity, $dbh); print "[INFO] Validating event for agent '$agent_name'\n\n"; } + elsif ($param =~ m/--create_incident/i) { + param_check($ltotal, 7, 1); + my ($title, $description, $origin, $status, $priority, $group_name, $owner) = @ARGV[2..8]; + + my $id_group = get_group_id($dbh,$group_name); + exist_check($id_group,'group',$group_name); + + pandora_create_incident ($conf, $dbh, $title, $description, $priority, $status, $origin, $id_group, $owner); + print "[INFO] Creating incident '$title'\n\n"; + } } print "[W] Nothing to do. Exiting !\n\n";