Working in the features and improvements in dashboard.
This commit is contained in:
parent
c4fc8586fd
commit
b1034c2071
|
@ -0,0 +1,50 @@
|
|||
<?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 ();
|
||||
|
||||
// Fix: IW was the old ACL to check for report editing, now is RW
|
||||
if (! check_acl ($config['id_user'], 0, "RW")) {
|
||||
db_pandora_audit("ACL Violation",
|
||||
"Trying to access report builder");
|
||||
require ("general/noaccess.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
//Fix ajax to avoid include the file, 'functions_graph.php'.
|
||||
$ajax = true;
|
||||
|
||||
|
||||
require_once('include/functions_visual_map.php');
|
||||
enterprise_include_once('include/functions_visual_map.php');
|
||||
|
||||
$id_visual_console = get_parameter('id_visual_console', null);
|
||||
|
||||
$render_map = (bool)get_parameter('render_map', false);
|
||||
|
||||
if ($render_map) {
|
||||
$width = (int)get_parameter('width', '400');
|
||||
$height = (int)get_parameter('height', '400');
|
||||
|
||||
visual_map_print_visual_map($id_visual_console, true, true, $width,
|
||||
$height);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
|
@ -87,7 +87,7 @@ function visual_map_print_user_line_handles($layoutData) {
|
|||
}
|
||||
|
||||
function visual_map_print_item($mode = "read", $layoutData,
|
||||
$proportion = 1, $show_links = true) {
|
||||
$proportion = null, $show_links = true) {
|
||||
global $config;
|
||||
|
||||
require_once ($config["homedir"] . '/include/functions_graph.php');
|
||||
|
@ -113,6 +113,12 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
$imageSize = '';
|
||||
|
||||
|
||||
if (!empty($proportion)) {
|
||||
$top = $top * $proportion['proportion_height'];
|
||||
$left = $left * $proportion['proportion_width'];
|
||||
}
|
||||
|
||||
|
||||
$text = '<span id="text_' . $id . '" class="text">' . $label . '</span>';
|
||||
|
||||
if (!isset($layoutData['status_calculated'])) {
|
||||
|
@ -695,9 +701,10 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
break;
|
||||
case MODULE_GRAPH:
|
||||
$width =
|
||||
((integer)($proportion * $width));
|
||||
((integer)($proportion['proportion_width'] * $width));
|
||||
$height =
|
||||
((integer)($proportion * $height));
|
||||
((integer)($proportion['proportion_height'] * $height));
|
||||
|
||||
|
||||
//Metaconsole db connection
|
||||
if ($layoutData['id_metaconsole'] != 0) {
|
||||
|
@ -773,9 +780,6 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
break;
|
||||
}
|
||||
|
||||
$top = (int)($proportion * $top);
|
||||
$left = (int)($proportion * $left);
|
||||
|
||||
echo '<div id="' . $id . '" class="' . $class . '" ' .
|
||||
'style="z-index: ' .$z_index . ';' .
|
||||
'position: absolute; top: ' . $top . 'px; ' .
|
||||
|
@ -790,8 +794,8 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
switch ($type) {
|
||||
case BOX_ITEM:
|
||||
$style = "";
|
||||
$style .= "width: " . ($width * $proportion) . "px; ";
|
||||
$style .= "height: " . ($height * $proportion) . "px; ";
|
||||
$style .= "width: " . ($width * $proportion['proportion_width']) . "px; ";
|
||||
$style .= "height: " . ($height * $proportion['proportion_height']) . "px; ";
|
||||
$style .= "border-style: solid; ";
|
||||
$style .= "border-width: " . $border_width . "px; ";
|
||||
$style .= "border-color: " . $border_color . "; ";
|
||||
|
@ -826,22 +830,22 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
}
|
||||
}
|
||||
|
||||
if ($proportion != 1) {
|
||||
if (!empty($proportion)) {
|
||||
if (is_file($config['homedir'] . '/' . $img))
|
||||
$infoImage = getimagesize($config['homedir'] . '/' . $img);
|
||||
|
||||
if ($width != 0) {
|
||||
$width = (integer)($proportion * $width);
|
||||
$width = (integer)($proportion['proportion_width'] * $width);
|
||||
}
|
||||
else {
|
||||
$width = (integer)($proportion * $infoImage[0]);
|
||||
$width = (integer)($proportion['proportion_width'] * $infoImage[0]);
|
||||
}
|
||||
|
||||
if ($height != 0) {
|
||||
$height = (integer)($proportion * $height);
|
||||
$height = (integer)($proportion['proportion_height'] * $height);
|
||||
}
|
||||
else {
|
||||
$height = (integer)($proportion * $infoImage[1]);
|
||||
$height = (integer)($proportion['proportion_height'] * $infoImage[1]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -938,22 +942,22 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
echo '<a href="' . $label . '">' . '</a>' . '<br />';
|
||||
}
|
||||
|
||||
if ($proportion != 1) {
|
||||
if (empty($proportion)) {
|
||||
if (is_file($config['homedir'] . '/' . $img))
|
||||
$infoImage = getimagesize($config['homedir'] . '/' . $img);
|
||||
|
||||
if ($width != 0) {
|
||||
$width = (integer)($proportion * $width);
|
||||
$width = (integer)($proportion['proportion_width'] * $width);
|
||||
}
|
||||
else {
|
||||
$width = (integer)($proportion * $infoImage[0]);
|
||||
$width = (integer)($proportion['proportion_width'] * $infoImage[0]);
|
||||
}
|
||||
|
||||
if ($height != 0) {
|
||||
$height = (integer)($proportion * $height);
|
||||
$height = (integer)($proportion['proportion_height'] * $height);
|
||||
}
|
||||
else {
|
||||
$height = (integer)($proportion * $infoImage[1]);
|
||||
$height = (integer)($proportion['proportion_height'] * $infoImage[1]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1702,15 +1706,25 @@ function visual_map_get_status_element($layoutData) {
|
|||
return $status;
|
||||
}
|
||||
|
||||
function visual_map_print_user_lines($mode = "read", $layout_data, $proportion = 1) {
|
||||
function visual_map_print_user_lines($mode = "read", $layout_data, $proportion = null) {
|
||||
|
||||
if (!empty($proportion)) {
|
||||
$proportion_width = $proportion['proportion_width'];
|
||||
$proportion_height = $proportion['proportion_height'];
|
||||
|
||||
$proportion_line = $proportion_height;
|
||||
if ($proportion_width > $proportion_height) {
|
||||
$proportion_line = $proportion_width;
|
||||
}
|
||||
}
|
||||
|
||||
$line = array();
|
||||
$line["id"] = $layout_data['id'];
|
||||
$line["start_x"] = $layout_data['pos_x'] * $proportion;
|
||||
$line["start_y"] = $layout_data['pos_y'] * $proportion;
|
||||
$line["end_x"] = $layout_data['width'] * $proportion;
|
||||
$line["end_y"] = $layout_data['height'] * $proportion;
|
||||
$line["line_width"] = $layout_data['border_width'] * $proportion;
|
||||
$line["start_x"] = $layout_data['pos_x'] * $proportion_width;
|
||||
$line["start_y"] = $layout_data['pos_y'] * $proportion_height;
|
||||
$line["end_x"] = $layout_data['width'] * $proportion_width;
|
||||
$line["end_y"] = $layout_data['height'] * $proportion_height;
|
||||
$line["line_width"] = $layout_data['border_width'] * $proportion_line;
|
||||
$line["line_color"] = $layout_data['border_color'];
|
||||
|
||||
echo '<script type="text/javascript">';
|
||||
|
@ -1769,20 +1783,29 @@ function visual_map_print_visual_map ($id_layout, $show_links = true,
|
|||
<?php
|
||||
|
||||
$resizedMap = false;
|
||||
$proportion = 1;
|
||||
if (!is_null($width)) {
|
||||
|
||||
$dif_height = 0;
|
||||
$dif_width = 0;
|
||||
$proportion_height = 0;
|
||||
$proportion_width = 0;
|
||||
|
||||
|
||||
|
||||
if (!is_null($height) && !is_null($width)) {
|
||||
$resizedMap = true;
|
||||
if (!is_null($height)) {
|
||||
|
||||
$mapWidth = $width;
|
||||
$mapHeight = $height;
|
||||
}
|
||||
else {
|
||||
$mapWidth = $width;
|
||||
$proportion = $width / $layout["width"];
|
||||
$mapHeight = $proportion * $layout["height"];
|
||||
}
|
||||
|
||||
if (defined('METACONSOLE')) {
|
||||
$dif_height = $layout["height"] - $height;
|
||||
$dif_width = $layout["width"] - $width;
|
||||
|
||||
|
||||
$proportion_height = $height / $layout["height"];
|
||||
$proportion_width = $width / $layout["width"];
|
||||
|
||||
|
||||
if (is_metaconsole()) {
|
||||
$backgroundImage =
|
||||
'/include/Image/image_functions.php?getFile=1&thumb=1&thumb_size=' . $mapWidth . 'x' . $mapHeight . '&file=' .
|
||||
$config['homeurl'] . 'images/console/background/' .
|
||||
|
@ -1824,6 +1847,7 @@ function visual_map_print_visual_map ($id_layout, $show_links = true,
|
|||
|
||||
$lines = array ();
|
||||
|
||||
|
||||
foreach ($layout_datas as $layout_data) {
|
||||
|
||||
if ($resizedMap) {
|
||||
|
@ -1852,11 +1876,17 @@ function visual_map_print_visual_map ($id_layout, $show_links = true,
|
|||
switch ($layout_data['type']) {
|
||||
case LINE_ITEM:
|
||||
visual_map_print_user_lines("read", $layout_data,
|
||||
$proportion);
|
||||
array('dif_height' => $dif_height,
|
||||
'dif_width' => $dif_width,
|
||||
'proportion_height' => $proportion_height,
|
||||
'proportion_width' => $proportion_width));
|
||||
break;
|
||||
default:
|
||||
visual_map_print_item("read", $layout_data,
|
||||
$proportion, $show_links);
|
||||
array('dif_height' => $dif_height,
|
||||
'dif_width' => $dif_width,
|
||||
'proportion_height' => $proportion_height,
|
||||
'proportion_width' => $proportion_width), $show_links);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue