2010-09-02 Sergio Martin <sergio.martin@artica.es>
* godmode/massive/massive_operations.php godmode/massive/massive_enable_disable_alerts.php: Added the disable/enable alerts massive operation git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3214 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
330449d290
commit
e51847ce72
|
@ -1,3 +1,9 @@
|
|||
2010-09-02 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* godmode/massive/massive_operations.php
|
||||
godmode/massive/massive_enable_disable_alerts.php: Added
|
||||
the disable/enable alerts massive operation
|
||||
|
||||
2010-09-01 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* operation/menu.php
|
||||
|
|
|
@ -0,0 +1,206 @@
|
|||
<?php
|
||||
|
||||
// Pandora FMS - http://pandorafms.com
|
||||
// ==================================================
|
||||
// Copyright (c) 2005-2010 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 (! check_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_alerts = (bool) get_parameter ('get_alerts');
|
||||
|
||||
if ($get_alerts) {
|
||||
$id_group = (int) get_parameter ('id_group');
|
||||
$id_alert_template = (int) get_parameter ('id_alert_template');
|
||||
$disabled = (int) get_parameter ('disabled');
|
||||
|
||||
$agents_alerts = get_agents_with_alert_template ($id_alert_template, $id_group,
|
||||
array('order' => 'tagente.nombre, talert_template_modules.disabled', '`talert_template_modules`.disabled' => $disabled),
|
||||
array ('LEFT(CONCAT(LEFT(tagente.nombre,40), " - ", tagente_modulo.nombre), 85) as agent_agentmodule_name',
|
||||
'talert_template_modules.id as template_module_id'));
|
||||
|
||||
echo json_encode (index_array ($agents_alerts, 'template_module_id', 'agent_agentmodule_name'));
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
$id_group = (int) get_parameter ('id_group');
|
||||
$action = (string) get_parameter ('action', '');
|
||||
|
||||
$result = false;
|
||||
|
||||
switch($action) {
|
||||
case 'enable_alerts':
|
||||
$id_alert_template = (int) get_parameter ('id_alert_template_disabled', 0);
|
||||
$id_disabled_alerts = get_parameter_post ('id_disabled_alerts', array());
|
||||
foreach($id_disabled_alerts as $id_alert) {
|
||||
$result = set_alerts_agent_module_disable ($id_alert, false);
|
||||
}
|
||||
print_result_message ($result, __('Successfully enabled'), __('Could not be enabled'));
|
||||
break;
|
||||
case 'disable_alerts':
|
||||
$id_alert_template = (int) get_parameter ('id_alert_template_enabled', 0);
|
||||
$id_enabled_alerts = get_parameter_post ('id_enabled_alerts', array());
|
||||
|
||||
foreach($id_enabled_alerts as $id_alert) {
|
||||
$result = set_alerts_agent_module_disable ($id_alert, true);
|
||||
}
|
||||
print_result_message ($result, __('Successfully disabled'), __('Could not be disabled'));
|
||||
break;
|
||||
default:
|
||||
$id_alert_template = (int) get_parameter ('id_alert_template', 0);
|
||||
break;
|
||||
}
|
||||
|
||||
$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 ();
|
||||
|
||||
$templates = get_alert_templates (false, array ('id', 'name'));
|
||||
$table->data[0][0] = '<form method="post" action="index.php?sec=gmassive&sec2=godmode/massive/massive_operations&tab=massive_alerts&option=enable_disable_alerts&action=disable_alerts" onsubmit="if (! confirm(\''.__('Are you sure?').'\')) return false;">';
|
||||
$table->data[0][0] .= print_input_hidden('id_alert_template_enabled', $id_alert_template, true);
|
||||
$table->data[0][0] .= __('Alert template');
|
||||
$table->data[0][1] = print_select (index_array ($templates, 'id', 'name'),
|
||||
'id_alert_template', $id_alert_template, false, __('Select'), 0, true);
|
||||
|
||||
$table->data[1][0] = __('Group');
|
||||
$table->data[1][1] = print_select_groups(false, "AR", true, 'id_group', $id_group,
|
||||
'', '', '', true, false, true, '', $id_alert_template == 0);
|
||||
|
||||
$table->data[2][0] = __('Enabled alerts').print_help_tip(__('Format').":<br> ".__('Agent')." - ".__('Module'), true);
|
||||
$table->data[2][0] .= '<span id="alerts_loading" class="invisible">';
|
||||
$table->data[2][0] .= '<img src="images/spinner.png" />';
|
||||
$table->data[2][0] .= '</span>';
|
||||
$agents_alerts = get_agents_with_alert_template ($id_alert_template, $id_group,
|
||||
false, array ('tagente.nombre', 'tagente.id_agente'));
|
||||
$table->data[2][1] = print_select (index_array ($agents_alerts, 'id_agente', 'nombre'),
|
||||
'id_enabled_alerts[]', '', '', '', '', true, true, true, '', $id_alert_template == 0);
|
||||
|
||||
$table->data[3][0] = __('Action');
|
||||
|
||||
$table->data[3][1] = "<table border='0' width='100%'><tr><td>".print_input_image ('disable_alerts', 'images/darrowdown.png', 1, 'margin-left: 150px;', true, array ('title' => __('Disable selected alerts')))."</td><td>";
|
||||
$table->data[3][1] .= '</form>';
|
||||
$table->data[3][1] .= '<form method="post" action="index.php?sec=gmassive&sec2=godmode/massive/massive_operations&tab=massive_alerts&option=enable_disable_alerts&action=enable_alerts" onsubmit="if (! confirm(\''.__('Are you sure?').'\')) return false;">';
|
||||
$table->data[3][1] .= print_input_hidden('id_alert_template_disabled', $id_alert_template, true);
|
||||
$table->data[3][1] .= print_input_image ('enable_alerts', 'images/darrowup.png', 1, 'margin-left: 200px;', true, array ('title' => __('Enable selected alerts')))."</td></tr></table>";
|
||||
|
||||
$table->data[4][0] = __('Disabled alerts').print_help_tip(__('Format').":<br> ".__('Agent')." - ".__('Module'), true);
|
||||
$table->data[4][0] .= '<span id="alerts_loading2" class="invisible">';
|
||||
$table->data[4][0] .= '<img src="images/spinner.png" />';
|
||||
$table->data[4][0] .= '</span>';
|
||||
$table->data[4][1] = print_select (index_array ($agents_alerts, 'id_agente2', 'nombre'),
|
||||
'id_disabled_alerts[]', '', '', '', '', true, true, true, '', $id_alert_template == 0);
|
||||
$table->data[4][1] .= '</form>';
|
||||
|
||||
print_table ($table);
|
||||
|
||||
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 () {
|
||||
update_alerts();
|
||||
|
||||
$("#id_alert_template").change (function () {
|
||||
if (this.value != 0) {
|
||||
$("#id_enabled_alerts").enable ();
|
||||
$("#id_disabled_alerts").enable ();
|
||||
$("#id_group").enable ().change ();
|
||||
} else {
|
||||
$("#id_group, #id_enabled_alerts").disable ();
|
||||
$("#id_group, #id_disabled_alerts").disable ();
|
||||
}
|
||||
$("#hidden-id_alert_template_enabled").attr("value",$("#id_alert_template").attr("value"));
|
||||
$("#hidden-id_alert_template_disable").val($("#id_alert_template").attr("value"));
|
||||
});
|
||||
|
||||
|
||||
function update_alerts() {
|
||||
var $select = $("#id_enabled_alerts").disable ();
|
||||
var $select2 = $("#id_disabled_alerts").disable ();
|
||||
$("#alerts_loading").show ();
|
||||
$("#alerts_loading2").show ();
|
||||
$("option", $select).remove ();
|
||||
$("option", $select2).remove ();
|
||||
|
||||
jQuery.post ("ajax.php",
|
||||
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
||||
"get_alerts" : 1,
|
||||
"id_group" : this.value,
|
||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||
"disabled" : 0
|
||||
},
|
||||
function (data, status) {
|
||||
options = "";
|
||||
jQuery.each (data, function (id, value) {
|
||||
options += "<option value=\""+id+"\">"+value+"</option>";
|
||||
});
|
||||
$("#id_enabled_alerts").append (options);
|
||||
$("#alerts_loading").hide ();
|
||||
$select.enable ();
|
||||
},
|
||||
"json"
|
||||
);
|
||||
|
||||
jQuery.post ("ajax.php",
|
||||
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
||||
"get_alerts" : 1,
|
||||
"id_group" : this.value,
|
||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||
"disabled" : 1
|
||||
},
|
||||
function (data, status) {
|
||||
options = "";
|
||||
jQuery.each (data, function (id, value) {
|
||||
options += "<option value=\""+id+"\">"+value+"</option>";
|
||||
});
|
||||
$("#id_disabled_alerts").append (options);
|
||||
$("#alerts_loading2").hide ();
|
||||
$select2.enable ();
|
||||
},
|
||||
"json"
|
||||
);
|
||||
}
|
||||
|
||||
$("#id_group").change (function () {
|
||||
update_alerts();
|
||||
});
|
||||
});
|
||||
/* ]]> */
|
||||
</script>
|
|
@ -34,7 +34,8 @@ $option = (string) get_parameter ('option', '');
|
|||
|
||||
|
||||
$options_alerts = array('add_alerts' => __('Massive alerts addition'), 'delete_alerts' => __('Massive alerts deletion'),
|
||||
'add_action_alerts' => __('Massive alert actions addition'), 'delete_action_alerts' => __('Massive alert actions deletion'));
|
||||
'add_action_alerts' => __('Massive alert actions addition'), 'delete_action_alerts' => __('Massive alert actions deletion'),
|
||||
'enable_disable_alerts' => __('Massive alert enable/disable'));
|
||||
|
||||
$options_agents = array('delete_agents' => __('Massive agents deletion'));
|
||||
|
||||
|
@ -133,6 +134,9 @@ switch ($option) {
|
|||
case 'add_action_alerts':
|
||||
require_once ('godmode/massive/massive_add_action_alerts.php');
|
||||
break;
|
||||
case 'enable_disable_alerts':
|
||||
require_once ('godmode/massive/massive_enable_disable_alerts.php');
|
||||
break;
|
||||
case 'delete_agents':
|
||||
require_once ('godmode/massive/massive_delete_agents.php');
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue