2010-05-31 11:22:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation for version 2.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
// Load global vars
|
|
|
|
check_login ();
|
|
|
|
|
|
|
|
if (! give_acl ($config['id_user'], 0, "AW")) {
|
|
|
|
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation",
|
|
|
|
"Trying to access massive alert deletion");
|
|
|
|
require ("general/noaccess.php");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once ('include/functions_agents.php');
|
|
|
|
require_once ('include/functions_alerts.php');
|
|
|
|
|
|
|
|
if (is_ajax ()) {
|
|
|
|
$get_agents = (bool) get_parameter ('get_agents');
|
|
|
|
|
|
|
|
if ($get_agents) {
|
|
|
|
$id_group = (int) get_parameter ('id_group');
|
|
|
|
|
|
|
|
$agents_alerts = get_group_agents ($id_group);
|
|
|
|
|
|
|
|
echo json_encode ($agents_alerts);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '<h3>'.__('Massive alerts addition').'</h3>';
|
|
|
|
function process_manage_add ($id_alert_template, $id_agents) {
|
|
|
|
if (empty ($id_agents)) {
|
|
|
|
echo '<h3 class="error">'.__('No agents selected').'</h3>';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty ($id_alert_template)) {
|
|
|
|
echo '<h3 class="error">'.__('No alert selected').'</h3>';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
process_sql_begin ();
|
|
|
|
$modules = get_agent_modules ($id_agents, 'id_agente_modulo', false, true);
|
|
|
|
$contfail = 0;
|
|
|
|
$contsuccess = 0;
|
|
|
|
foreach($modules as $module){
|
|
|
|
$success = create_alert_agent_module ($module, $id_alert_template);
|
|
|
|
if(!$success)
|
|
|
|
$contfail = $contfail + 1;
|
|
|
|
else
|
|
|
|
$contsuccess = $contsuccess + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($contfail > 0) {
|
|
|
|
echo '<h3 class="error">'.__('There was an error adding the alerts, the operation has been cancelled').'</h3>';
|
|
|
|
echo '<h3 class="error">'.__('Could not add alerts').'</h3>';
|
|
|
|
process_sql_rollback ();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo '<h3 class="suc">'.__('Successfully added').' '.$contsuccess.' '.__('Alerts').'</h3>';
|
|
|
|
process_sql_commit ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$id_group = (int) get_parameter ('id_group', -1);
|
|
|
|
$id_agents = get_parameter ('id_agents');
|
|
|
|
$id_alert_template = (int) get_parameter ('id_alert_template');
|
|
|
|
|
|
|
|
$add = (bool) get_parameter_post ('add');
|
|
|
|
|
|
|
|
if ($add) {
|
|
|
|
process_manage_add ($id_alert_template, $id_agents);
|
|
|
|
}
|
|
|
|
|
|
|
|
$groups = get_user_groups ();
|
|
|
|
|
|
|
|
$table->id = 'delete_table';
|
|
|
|
$table->width = '95%';
|
|
|
|
$table->data = array ();
|
|
|
|
$table->style = array ();
|
|
|
|
$table->style[0] = 'font-weight: bold; vertical-align:top';
|
|
|
|
$table->style[2] = 'font-weight: bold';
|
|
|
|
$table->size = array ();
|
|
|
|
$table->size[0] = '15%';
|
|
|
|
$table->size[1] = '85%';
|
|
|
|
|
|
|
|
$table->data = array ();
|
|
|
|
|
|
|
|
$table->data[0][0] = __('Group');
|
2010-07-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: added the function "print_select_groups" to
print the field select box for groups with tree style.
* include/functions_db.php: in function "get_user_groups" added test to
false value in parameter $privilege for get all groups without ACL test.
Fixed in function "get_user_groups_tree" the call to "get_user_groups" with
the correct parameters.
* operation/incidents/incident.php, operation/incidents/incident_detail.php,
operation/events/events.php, operation/agentes/status_monitor.php,
operation/agentes/estado_agente.php,
operation/agentes/alerts_status.functions.php,
operation/agentes/exportdata.php, operation/agentes/networkmap.php,
operation/messages/message.php, general/ui/agents_list.php,
godmode/groups/configure_group.php, godmode/groups/group_list.php,
godmode/agentes/massive_add_alerts.php,
godmode/agentes/massive_delete_agents.php,
godmode/agentes/massive_config.php,
godmode/agentes/massive_delete_action_alerts.php,
godmode/agentes/massive_delete_alerts.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/massive_delete_modules.php,
godmode/agentes/massive_add_action_alerts.php,
godmode/agentes/planned_downtime.php,
godmode/agentes/manage_config_remote.php, godmode/agentes/agent_manager.php,
godmode/servers/manage_recontask_form.php,
godmode/alerts/configure_alert_compound.php,
godmode/alerts/alert_compounds.php,
godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php, godmode/setup/gis_step_2.php,
godmode/users/configure_user.php, godmode/gis_maps/configure_gis_map.php,
godmode/reporting/graph_builder.main.php,
godmode/reporting/reporting_builder.main.php,
godmode/reporting/visual_console_builder.data.php: changed the fields select
box of group to tree style select box for groups.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3009 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-15 17:20:43 +02:00
|
|
|
$table->data[0][1] = print_select_groups(false, "AR", true, 'id_group', $id_group,
|
2010-05-31 11:22:15 +02:00
|
|
|
'', 'Select', -1, true, false, true, '', false);
|
|
|
|
|
|
|
|
$table->data[1][0] = __('Agent');
|
|
|
|
$table->data[1][0] .= '<span id="agent_loading" class="invisible">';
|
|
|
|
$table->data[1][0] .= '<img src="images/spinner.png" />';
|
|
|
|
$table->data[1][0] .= '</span>';
|
|
|
|
$agents_alerts = get_agents_with_alert_template ($id_alert_template, $id_group,
|
|
|
|
false, array ('tagente.nombre', 'tagente.id_agente'));
|
|
|
|
$table->data[1][1] = print_select (index_array ($agents_alerts, 'id_agente', 'nombre'),
|
|
|
|
'id_agents[]', '', '', '', '', true, true, true, '', false);
|
|
|
|
|
|
|
|
$templates = get_alert_templates (false, array ('id', 'name'));
|
|
|
|
$table->data[2][0] = __('Alert template');
|
|
|
|
$table->data[2][1] = print_select (index_array ($templates, 'id', 'name'),
|
|
|
|
'id_alert_template', $id_alert_template, false, __('Select'), 0, true);
|
|
|
|
|
|
|
|
echo '<form method="post" onsubmit="if (! confirm(\''.__('Are you sure?').'\')) return false;">';
|
|
|
|
print_table ($table);
|
|
|
|
|
|
|
|
echo '<div class="action-buttons" style="width: '.$table->width.'" onsubmit="if (!confirm(\' '.__('Are you sure?').'\')) return false;">';
|
|
|
|
print_input_hidden ('add', 1);
|
|
|
|
print_submit_button (__('Add'), 'go', false, 'class="sub add"');
|
|
|
|
echo '</div>';
|
|
|
|
echo '</form>';
|
|
|
|
|
|
|
|
echo '<h3 class="error invisible" id="message"> </h3>';
|
|
|
|
|
|
|
|
require_jquery_file ('form');
|
|
|
|
require_jquery_file ('pandora.controls');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
/* <![CDATA[ */
|
|
|
|
$(document).ready (function () {
|
|
|
|
$("#id_group").change (function () {
|
|
|
|
var $select = $("#id_agents").enable ();
|
|
|
|
$("#agent_loading").show ();
|
|
|
|
$("option", $select).remove ();
|
|
|
|
|
|
|
|
jQuery.post ("ajax.php",
|
|
|
|
{"page" : "godmode/agentes/massive_add_alerts",
|
|
|
|
"get_agents" : 1,
|
|
|
|
"id_group" : this.value
|
|
|
|
},
|
|
|
|
function (data, status) {
|
|
|
|
options = "";
|
|
|
|
jQuery.each (data, function (id, value) {
|
|
|
|
options += "<option value=\""+id+"\">"+value+"</option>";
|
|
|
|
});
|
|
|
|
$("#id_agents").append (options);
|
|
|
|
$("#agent_loading").hide ();
|
|
|
|
$select.enable ();
|
|
|
|
},
|
|
|
|
"json"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#id_group").value = "0";
|
|
|
|
});
|
|
|
|
/* ]]> */
|
|
|
|
</script>
|