pandorafms/pandora_console/operation/agentes/networkmap.dinamic.php

359 lines
7.8 KiB
PHP
Executable File

<?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
global $config;
check_login ();
if (! check_acl ($config['id_user'], 0, "AR")) {
db_pandora_audit("ACL Violation",
"Trying to access node graph builder");
include ("general/noaccess.php");
exit;
}
require_once ('include/functions_networkmap.php');
if ($activeTab == "radial_dynamic") {
include_once("include/functions_graph.php");
echo "<div style='width: auto; text-align: center;'>";
$filter = array();
if (!empty($group))
$filter['group'] = $group;
if (!empty($module_group))
$filter['module_group'] = $module_group;
echo graph_monitor_wheel(600, 650, $filter);
echo "</div>";
return;
}
// Set filter
$filter = networkmap_get_filter ($layout);
if (!isset($text_filter)) {
$text_filter = '';
}
// Generate dot file
$graph = networkmap_generate_hash(__('Pandora FMS'), $group, $simple,
$font_size, $layout, $nooverlap, $zoom, $ranksep, $center, $regen,
$pure, $id_networkmap, $show_snmp_modules, true, true,
$text_filter);
networkmap_print_jsdata($graph);
$zoom_default = file($config['homedir'] . '/images/zoom_default.svg');
?>
<div style="display: none">
<?php
echo implode("\n", $zoom_default);
?>
</div>
<?php
//html_debug_print($graph);
echo '<script type="text/javascript" src="' . $config['homeurl'] . 'include/javascript/d3.v3.js" charset="utf-8"></script>';
echo '<div id="dinamic_networkmap" style="overflow: hidden;"></div>';
?>
<style type="text/css">
#tooltip_networkmap {
text-align: left !important;
padding: 5px;
-webkit-box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
-moz-box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
}
#tooltip_networkmap h3 {
text-align: center !important;
background-color: #B1B1B1;
color: #FFFFFF;
}
</style>
<style>
.node {
stroke: #fff;
stroke-width: 1.5px;
}
.select_node {
stroke: #000;
stroke-width: 1.5px;
}
.link {
stroke: #999;
stroke-opacity: 1;
stroke-width: 1;
}
.select_link {
stroke: #000;
stroke-opacity: 1;
stroke-width: 1;
}
</style>
<script>
var width = $("#dinamic_networkmap").width();
if ($("#main").height()) {
var height = $("#main").height();
}
else {
//Set the height in the pure view (fullscreen).
var height = $(window).height() -
$("#menu_tab_frame_view").height() -
80; // 80 of margin
}
var color = d3.scale.category20();
var force = d3.layout.force()
.charge(-60)
.linkDistance(20)
.friction(0.9)
//.gravity(0.2)
.size([width, height]);
var zoom_obj = d3.behavior.zoom();
zoom_obj.scaleExtent([0.3, 3]).on("zoom", zoom);
var svg = d3.select("#dinamic_networkmap").append("svg")
.attr("id", "dinamic_networkmap_svg")
.attr("width", width)
.attr("height", height)
.attr("pointer-events", "all")
.call(zoom_obj)
.append('svg:g')
///Added default zoom buttom
d3.select("#dinamic_networkmap svg")
.append("g")
.attr("id", "zoom_control");
zoom_default = $("#zoom_default").clone();
$("#zoom_default").remove();
$("#zoom_control").append(zoom_default);
d3.select("#zoom_default")
.on("click", click_zoom_default)
.on("mouseover", over_zoom_default)
.on("mouseout", out_zoom_default);
force
.nodes(graph.nodes)
.links(graph.links)
.start();
var link = svg.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("id", function(d) {
var id_text = 'link_'
+ d.source.id
+ "_" + d.target.id;
return id_text;
})
.attr("class", function(d) {
var class_text = 'link';
class_text += " source_" + d.source.id;
class_text += " target_" + d.target.id;
return class_text;
});
var node = svg.selectAll(".node")
.data(graph.nodes)
.enter().append("circle")
.attr("id", function(d) { return "node_" + d.id})
.attr("tooltip", function(d) { return d.tooltip})
.attr("class", "node")
.attr("r", 5)
.style("fill", function(d) { return d.color; })
.on("mouseover", over)
.on("mouseout", out)
.on("mousedown", mousedown)
.on("mouseup", mouseup)
//.on("click", click)
.call(force.drag);
svg.style("opacity", 1e-6)
.transition()
.duration(1000)
.style("opacity", 1);
force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
});
function click_zoom_default() {
zoom([0, 0], 1);
}
function over_zoom_default() {
}
function out_zoom_default() {
}
function over(d) {
$("#node_" + d.id).attr('class', 'select_node');
$.each($(".source_" + d.id), function(i, line) {
class_txt = $(line).attr('class');
id_txt = $(line).attr('id');
$("#" + id_txt).attr('class',
class_txt.replace("link", "select_link"));
});
show_tooltip(d);
}
function out(d) {
$("#node_" + d.id).attr('class', 'node');
$.each($(".source_" + d.id), function(i, line) {
class_txt = $(line).attr('class');
id_txt = $(line).attr('id');
$("#" + id_txt).attr('class',
class_txt.replace("select_link", "link"));
});
hide_tooltip(d);
}
function click(d) {
window.location = d.url;
}
var mouse_x = -1;
var mouse_y = -1;
function mousedown(d) {
mouse_x = d3.event.clientX;
mouse_y = d3.event.clientY;
}
function mouseup(d) {
if ((d3.event.clientX == mouse_x) &&
(d3.event.clientY == mouse_y)) {
//The drag is diferent to click in the same position.
click(d);
}
}
function zoom(translate_param, scale_param) {
var scale;
var translate;
if (typeof(translate_param) == "undefined") {
scale = d3.event.scale;
translate = d3.event.translate;
}
else {
translate = translate_param;
scale = scale_param;
zoom_obj.setScale(scale);
zoom_obj.setTranslate(translate);
}
svg.attr("transform", "translate(" + translate + ")scale(" + scale + ")");
}
function create_tooltip(d, x, y) {
if ($("#tooltip_networkmap").length == 0) {
$("body")
.append($("<div></div>")
.attr('id', 'tooltip_networkmap')
.html(d.tooltip_content));
}
else {
$("#tooltip_networkmap").html(d.tooltip_content);
}
$("#tooltip_networkmap").attr('style', 'background: #fff;' +
'position: absolute;' +
'display: block;' +
'width: 275px;' +
'left: ' + x + 'px;' +
'top: ' + y + 'px;');
}
function create_loading_tooltip(d, x, y) {
if ($("#tooltip_networkmap_loading").length == 0) {
$("body")
.append($("<div></div>")
.attr('id', 'tooltip_networkmap_loading')
.html(d.tooltip_content));
}
else {
$("#tooltip_networkmap_loading").html(d.tooltip_content);
}
$("#tooltip_networkmap_loading").attr('style', 'background: #fff;' +
'position: absolute;' +
'display: block;' +
'left: ' + x + 'px;' +
'top: ' + y + 'px;');
}
function show_tooltip(d) {
x = d3.event.clientX + 10;
y = d3.event.clientY + 10;
if (d.default_tooltip) {
create_loading_tooltip(d, x, y);
$.get(d.tooltip, function(data) {
$("#tooltip_networkmap_loading").hide();
create_tooltip(d, x, y);
graph.nodes[d.id].tooltip_content = data;
graph.nodes[d.id].default_tooltip = 0;
$("#tooltip_networkmap").html(data);
});
}
else {
create_tooltip(d, x, y);
}
}
function hide_tooltip(d) {
$("#tooltip_networkmap").hide();
$("#tooltip_networkmap_loading").hide();
}
</script>