pandorafms/pandora_console/include/ajax/visual_console_builder.ajax...

278 lines
8.3 KiB
PHP

<?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.
// Login check
global $config;
check_login ();
if (! give_acl ($config['id_user'], 0, "IW")) {
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation",
"Trying to access report builder");
require ("general/noaccess.php");
exit;
}
require_once('godmode/reporting/visual_console_builder.constans.php');
require_once('include/functions_visual_map.php');
$action = get_parameter('action');
$type = get_parameter('type');
$id_visual_console = get_parameter('id_visual_console', null);
$id_element = get_parameter('id_element', null);
$image = get_parameter('image', null);
$background = get_parameter('background', null);
$label = get_parameter('label', null);
$left = get_parameter('left', null);
$top = get_parameter('top', null);
$agent = get_parameter('agent', null);
$id_module = get_parameter('module', null);
$period = get_parameter('period', null);
$width = get_parameter('width', null);
$height = get_parameter('height', null);
$parent = get_parameter('parent', null);
$map_linked = get_parameter('map_linked', null);
$label_color = get_parameter('label_color', null);
$width_percentile = get_parameter('width_percentile', null);
$max_percentile = get_parameter('max_percentile', null);
$height_module_graph = get_parameter('height_module_graph', null);
$width_module_graph = get_parameter('width_module_graph', null);
switch ($action) {
case 'get_layout_data':
$layoutData = get_db_row_filter('tlayout_data', array('id' => $id_element));
echo json_encode($layoutData);
break;
case 'get_module_value':
$layoutData = get_db_row_filter('tlayout_data', array('id' => $id_element));
$returnValue = get_db_sql ('SELECT datos FROM tagente_estado WHERE id_agente_modulo = ' . $layoutData['id_agente_modulo']);
$return = array();
$return['value'] = $returnValue;
$return['max_percentile'] = $layoutData['height'];
$return['width_percentile'] = $layoutData['width'];
echo json_encode($return);
break;
case 'get_color_line':
$layoutData = get_db_row_filter('tlayout_data', array('id' => $id_element));
$return = array();
$return['color_line'] = getColorLineStatus($layoutData);
echo json_encode($return);
break;
case 'get_image':
$layoutData = get_db_row_filter('tlayout_data', array('id' => $id_element));
$return = array();
$return['image'] = getImageStatusElement($layoutData);
echo json_encode($return);
break;
case 'update':
switch ($type) {
case 'background':
$values = array();
if ($background !== null)
$values['background'] = $background;
if ($width !== null)
$values['width'] = $width;
if ($height !== null)
$values['height'] = $height;
process_sql_update('tlayout', $values, array('id' => $id_visual_console));
break;
case 'simple_value':
case 'percentile_bar':
case 'static_graph':
case 'module_graph':
case 'label':
case 'icon':
$values = array();
if ($label !== null) {
$values['label'] = $label;
}
if ($left !== null) {
$values['pos_x'] = $left;
}
if ($top !== null) {
$values['pos_y'] = $top;
}
if ($agent !== null) {
$id_agent = get_agent_id($agent);
$values['id_agent'] = $id_agent;
}
if ($id_module !== null) {
$values['id_agente_modulo'] = $id_module;
}
if ($parent !== null) {
$values['parent_item'] = $parent;
}
if ($map_linked !== null) {
$values['id_layout_linked'] = $map_linked;
}
if ($label_color !== null) {
$values['label_color'] = $label_color;
}
switch($type) {
case 'module_graph':
if ($height_module_graph !== null) {
$values['height'] = $height_module_graph;
}
if ($width_module_graph !== null) {
$values['width'] = $width_module_graph;
}
if ($period !== null) {
$values['period'] = $period;
}
break;
case 'percentile_bar':
if ($width_percentile !== null) {
$values['width'] = $width_percentile;
}
if ($max_percentile !== null) {
$values['height'] = $max_percentile;
}
break;
case 'icon':
case 'static_graph':
if ($image !== null) {
$values['image'] = $image;
}
if ($width !== null) {
$values['width'] = $width;
}
if ($height !== null) {
$values['height'] = $height;
}
break;
}
$result = process_sql_update('tlayout_data', $values, array('id' => $id_element));
break;
}
break;
case 'load':
switch ($type) {
case 'background':
$backgroundFields = get_db_row_filter('tlayout', array('id' => $id_visual_console), array('background', 'height', 'width'));
echo json_encode($backgroundFields);
break;
case 'percentile_bar':
case 'static_graph':
case 'module_graph':
case 'simple_value':
case 'label':
case 'icon':
$elementFields = get_db_row_filter('tlayout_data', array('id' => $id_element));
$elementFields['agent_name'] = get_agent_name($elementFields['id_agent']);
//Make the html of select box of modules about id_agent.
if ($elementFields['id_agent'] != 0) {
$modules = get_agent_modules ($elementFields['id_agent'], false, array('disabled' => 0, 'id_agente' => $elementFields['id_agent']));
$elementFields['modules_html'] = '<option value="0">--</option>';
foreach ($modules as $id => $name) {
$elementFields['modules_html'] .= '<option value="' . $id . '">' . $name . '</option>';
}
}
else {
$elementFields['modules_html'] = '<option value="0">' . __('Any') . '</option>';
}
switch ($type) {
case 'percentile_bar':
$elementFields['width_percentile'] = $elementFields['width'];
$elementFields['max_percentile'] = $elementFields['height'];
break;
case 'module_graph':
$elementFields['width_module_graph'] = $elementFields['width'];
$elementFields['height_module_graph'] = $elementFields['height'];
break;
}
echo json_encode($elementFields);
break;
}
break;
case 'insert':
$values = array();
$values['id_layout'] = $id_visual_console;
$values['label'] = $label;
$values['pos_x'] = $left;
$values['pos_y'] = $top;
if ($agent != '')
$values['id_agent'] = get_agent_id($agent);
else
$values['id_agent'] = 0;
$values['id_agente_modulo'] = $id_module;
$values['id_layout_linked'] = $map_linked;
$values['label_color'] = $label_color;
$values['parent_item'] = $parent;
$values['no_link_color'] = 1;
switch ($type) {
case 'module_graph':
$values['type'] = MODULE_GRAPH;
$values['height'] = $height_module_graph;
$values['width'] = $width_module_graph;
$values['period'] = $period;
break;
case 'percentile_bar':
$values['type'] = PERCENTILE_BAR;
$values['width'] = $width_percentile;
$values['height'] = $max_percentile;
break;
case 'static_graph':
$values['type'] = STATIC_GRAPH;
$values['image'] = $image;
$values['width'] = $width;
$values['height'] = $height;
break;
case 'simple_value':
$values['type'] = SIMPLE_VALUE;
break;
case 'label':
$values['type'] = LABEL;
break;
case 'icon':
$values['type'] = ICON;
$values['image'] = $image;
$values['width'] = $width;
$values['height'] = $height;
break;
}
$idData = process_sql_insert('tlayout_data', $values);
$return = array();
if ($idData === false) {
$return['correct'] = 0;
}
else {
$return['correct'] = 1;
$return['id_data'] = $idData;
$return['text'] = $label;
}
echo json_encode($return);
break;
case 'delete':
if (process_sql_delete('tlayout_data', array('id' => $id_element, 'id_layout' => $id_visual_console)) === false) {
$return['correct'] = 0;
}
else {
$return['correct'] = 1;
}
echo json_encode($return);
break;
}
?>