2014-04-16 14:06:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2011 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; 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.
|
|
|
|
|
|
|
|
|
|
|
|
function include_javascript_d3 ($return = false) {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
static $is_include_javascript = false;
|
|
|
|
|
|
|
|
$output = '';
|
|
|
|
if (!$is_include_javascript) {
|
|
|
|
$is_include_javascript = true;
|
|
|
|
|
2017-10-09 12:55:57 +02:00
|
|
|
if (is_metaconsole()) {
|
|
|
|
$output .= '<script type="text/javascript" src="' . '../../' . 'include/javascript/d3.3.5.14.js" charset="utf-8"></script>';
|
|
|
|
$output .= '<script type="text/javascript" src="' . '../../' . 'include/graphs/pandora.d3.js" charset="utf-8"></script>';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$output .= '<script type="text/javascript" src="' . $config['homeurl'] . 'include/javascript/d3.3.5.14.js" charset="utf-8"></script>';
|
|
|
|
$output .= '<script type="text/javascript" src="' . $config['homeurl'] . 'include/graphs/pandora.d3.js" charset="utf-8"></script>';
|
|
|
|
}
|
2014-04-16 14:06:19 +02:00
|
|
|
}
|
2017-10-09 12:55:57 +02:00
|
|
|
|
2014-04-16 14:06:19 +02:00
|
|
|
if (!$return)
|
|
|
|
echo $output;
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
function d3_relationship_graph ($elements, $matrix, $unit, $width = 700, $return = false) {
|
|
|
|
global $config;
|
|
|
|
|
2014-04-23 11:34:00 +02:00
|
|
|
if (is_array($elements))
|
|
|
|
$elements = json_encode($elements);
|
|
|
|
if (is_array($matrix))
|
|
|
|
$matrix = json_encode($matrix);
|
|
|
|
|
2014-04-16 14:06:19 +02:00
|
|
|
$output = "<div id=\"chord_diagram\"></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
chordDiagram('#chord_diagram', $elements, $matrix, '$unit', $width);
|
|
|
|
</script>";
|
|
|
|
|
|
|
|
if (!$return)
|
|
|
|
echo $output;
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2014-04-23 11:34:00 +02:00
|
|
|
function d3_tree_map_graph ($data, $width = 700, $height = 700, $return = false) {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
if (is_array($data))
|
|
|
|
$data = json_encode($data);
|
|
|
|
|
2014-05-29 17:50:21 +02:00
|
|
|
$output = "<div id=\"tree_map\" style='overflow: hidden;'></div>";
|
2014-04-23 11:34:00 +02:00
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<style type=\"text/css\">
|
|
|
|
.cell>rect {
|
|
|
|
pointer-events: all;
|
|
|
|
cursor: pointer;
|
|
|
|
stroke: #EEEEEE;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.parent .label {
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
-webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
-moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.labelbody {
|
|
|
|
text-align: center;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
margin: 2px;
|
|
|
|
white-space: pre;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
-webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
-moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.child .label {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
text-align: center;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cell {
|
|
|
|
font-size: 11px;
|
|
|
|
cursor: pointer
|
|
|
|
}
|
|
|
|
</style>";
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
treeMap('#tree_map', $data, '$width', '$height');
|
|
|
|
</script>";
|
|
|
|
|
|
|
|
if (!$return)
|
|
|
|
echo $output;
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
2014-04-16 14:06:19 +02:00
|
|
|
|
2014-06-26 13:32:14 +02:00
|
|
|
function d3_sunburst_graph ($data, $width = 700, $height = 700, $return = false) {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
if (is_array($data))
|
|
|
|
$data = json_encode($data);
|
|
|
|
|
|
|
|
$output = "<div id=\"sunburst\" style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<style type=\"text/css\">
|
|
|
|
path {
|
|
|
|
stroke: #fff;
|
|
|
|
fill-rule: evenodd;
|
|
|
|
}
|
|
|
|
</style>";
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
sunburst('#sunburst', $data, '$width', '$height');
|
|
|
|
</script>";
|
|
|
|
|
|
|
|
if (!$return)
|
|
|
|
echo $output;
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2015-11-04 17:42:45 +01:00
|
|
|
function d3_bullet_chart($chart_data, $width, $height, $color, $legend,
|
2016-01-11 15:18:13 +01:00
|
|
|
$homeurl, $unit, $font, $font_size) {
|
|
|
|
|
2015-11-04 17:42:45 +01:00
|
|
|
global $config;
|
2016-01-11 15:18:13 +01:00
|
|
|
|
2015-11-04 17:42:45 +01:00
|
|
|
$output = '';
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
|
2016-01-11 15:18:13 +01:00
|
|
|
$id_bullet = uniqid();
|
2016-09-08 15:44:36 +02:00
|
|
|
$font = array_shift(explode(".",array_pop(explode("/",$font))));
|
|
|
|
|
|
|
|
$output .=
|
2016-05-26 09:50:13 +02:00
|
|
|
'<div id="bullet_graph_' . $id_bullet . '" class="bullet" style="overflow: hidden; width: '.$width.'px; margin-left: auto; margin-right: auto;"></div>
|
2015-11-04 17:42:45 +01:00
|
|
|
<style>
|
|
|
|
|
2016-01-11 15:18:13 +01:00
|
|
|
.bullet_graph {
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
margin: auto;
|
|
|
|
padding-top: 40px;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2015-11-04 17:42:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bullet { font: 7px sans-serif; }
|
|
|
|
.bullet .marker.s0 { stroke: #FC4444; stroke-width: 2px; }
|
|
|
|
.bullet .marker.s1 { stroke: #FAD403; stroke-width: 2px; }
|
|
|
|
.bullet .marker.s2 { stroke: steelblue; stroke-width: 2px; }
|
|
|
|
.bullet .tick line { stroke: #666; stroke-width: .5px; }
|
|
|
|
.bullet .range.s0 { fill: #ddd; }
|
|
|
|
.bullet .range.s1 { fill: #ddd; }
|
|
|
|
.bullet .range.s2 { fill: #ccc; }
|
|
|
|
.bullet .measure.s0 { fill: steelblue; }
|
|
|
|
.bullet .measure.s1 { fill: steelblue; }
|
|
|
|
.bullet .title { font-size: 7pt; font-weight: bold; text-align:left; }
|
|
|
|
.bullet .subtitle { fill: #999; font-size: 7pt;}
|
2016-09-08 15:44:36 +02:00
|
|
|
.bullet g text { font-size:'.$font_size.'pt;}
|
|
|
|
|
2015-11-04 17:42:45 +01:00
|
|
|
</style>
|
|
|
|
<script src="'. $config['homeurl'] . 'include/graphs/bullet.js"></script>
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
|
|
|
|
|
|
var margin = {top: 5, right: 40, bottom: 20, left: 120};
|
|
|
|
|
|
|
|
width = ('.$width.'+10);
|
|
|
|
height = '.$height.'- margin.top - margin.bottom;
|
|
|
|
|
|
|
|
var chart = d3.bullet()
|
|
|
|
.width(width)
|
|
|
|
.height(height)
|
|
|
|
.orient("left");
|
|
|
|
';
|
|
|
|
|
|
|
|
$temp = array();
|
|
|
|
foreach ($chart_data as $data) {
|
|
|
|
if (isset ($data["label"]) ) {
|
|
|
|
$name = io_safe_output($data["label"]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$name = io_safe_output($data["nombre"]);
|
|
|
|
$name = ui_print_truncate_text($name, 15, false, true, false, '...', false);
|
|
|
|
$marker = "";
|
|
|
|
if ($data['value'] == 0) {
|
|
|
|
$marker = ", 0";
|
|
|
|
}
|
|
|
|
$temp[] = '{"title":"'.$name.'","subtitle":"'.$data["unit"].'",
|
|
|
|
"ranges":['.((float)$data['max']) .'],"measures":[' .$data['value']. '],
|
|
|
|
"markers":[' .$data['min_warning'].','. $data['min_critical'].$marker.']}';
|
|
|
|
}
|
|
|
|
$output .= 'var data = ['
|
|
|
|
. implode(",",$temp) . '];
|
|
|
|
';
|
2016-01-11 15:18:13 +01:00
|
|
|
$output .= '
|
2015-11-04 17:42:45 +01:00
|
|
|
|
2016-01-11 15:18:13 +01:00
|
|
|
var svg = d3.select("#bullet_graph_' . $id_bullet . '").selectAll("svg")
|
|
|
|
.data(data)
|
2015-11-04 17:42:45 +01:00
|
|
|
.enter().append("svg")
|
2016-01-11 15:18:13 +01:00
|
|
|
.attr("class", "bullet")
|
|
|
|
.attr("width", "100%")
|
|
|
|
.attr("height", height+ margin.top + margin.bottom)
|
2015-11-04 17:42:45 +01:00
|
|
|
.append("g")
|
2016-01-11 15:18:13 +01:00
|
|
|
.attr("transform", "translate(" + (margin.left) + "," + margin.top + ")")
|
|
|
|
.call(chart);
|
2015-11-04 17:42:45 +01:00
|
|
|
|
|
|
|
|
2016-01-11 15:18:13 +01:00
|
|
|
var title = svg.append("g")
|
2015-11-04 17:42:45 +01:00
|
|
|
.style("text-anchor", "end")
|
2016-03-15 09:25:48 +01:00
|
|
|
.attr("transform", "translate(-10, 15)");
|
2016-01-11 15:18:13 +01:00
|
|
|
|
|
|
|
title.append("text")
|
2016-09-08 15:44:36 +02:00
|
|
|
.attr("class", "'.$font.'")
|
2016-01-11 15:18:13 +01:00
|
|
|
.text(function(d) { return d.title; });
|
|
|
|
|
|
|
|
title.append("text")
|
|
|
|
.attr("class", "subtitle")
|
|
|
|
.attr("dy", "1em")
|
|
|
|
.text(function(d) { return d.subtitle; });
|
|
|
|
|
|
|
|
$(".tick>text").each(function() {
|
|
|
|
|
|
|
|
label = $(this).text().replace(/,/g,"");
|
|
|
|
label = parseFloat(label);
|
|
|
|
text = label.toLocaleString();
|
|
|
|
if ( label >= 1000000)
|
|
|
|
text = text.substring(0,3) + "M";
|
|
|
|
else if (label >= 100000)
|
|
|
|
text = text.substring(0,3) + "K";
|
|
|
|
else if (label >= 1000)
|
|
|
|
text = text.substring(0,2) + "K";
|
|
|
|
|
|
|
|
$(this).text(text);
|
|
|
|
});
|
2015-11-04 17:42:45 +01:00
|
|
|
</script>';
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function d3_gauges($chart_data, $width, $height, $color, $legend,
|
2015-11-25 14:25:19 +01:00
|
|
|
$homeurl, $unit, $font, $font_size, $no_data_image) {
|
2015-11-04 17:42:45 +01:00
|
|
|
global $config;
|
|
|
|
|
|
|
|
if (is_array($chart_data))
|
|
|
|
$data = json_encode($chart_data);
|
|
|
|
$output = include_javascript_d3(true);
|
|
|
|
|
|
|
|
foreach ($chart_data as $module) {
|
2015-12-01 08:59:44 +01:00
|
|
|
$output .= "<div id='".$module['gauge']."' style='float:left; overflow: hidden; margin-left: 10px;'></div>";
|
2015-11-25 14:25:19 +01:00
|
|
|
|
2015-11-04 17:42:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
var data = $data;
|
2016-09-08 15:44:36 +02:00
|
|
|
createGauges(data, '$width', '$height','$font_size','$no_data_image','$font');
|
2015-11-04 17:42:45 +01:00
|
|
|
</script>";
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
2017-04-25 15:34:11 +02:00
|
|
|
|
|
|
|
function ux_console_phases_donut ($phases, $id, $return = false) {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
foreach ($phases as $i => $phase) {
|
|
|
|
$phases[$i]['phase_name'] = io_safe_output($phase['phase_name']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($phases))
|
|
|
|
$phases = json_encode($phases);
|
|
|
|
|
|
|
|
$recipient_name = "phases_donut_" . $id;
|
|
|
|
$recipient_name_to_js = "#phases_donut_" . $id;
|
|
|
|
|
|
|
|
$output = "<div id=" . $recipient_name . " style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<style type=\"text/css\">
|
|
|
|
path {
|
|
|
|
stroke: #fff;
|
|
|
|
fill-rule: evenodd;
|
|
|
|
}
|
|
|
|
</style>";
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
print_phases_donut('" . $recipient_name_to_js . "', " . $phases . ");
|
|
|
|
</script>";
|
|
|
|
|
|
|
|
if (!$return)
|
|
|
|
echo $output;
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
2017-10-05 13:33:34 +02:00
|
|
|
|
2017-10-06 14:04:20 +02:00
|
|
|
function d3_progress_bar ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$recipient_name = "progress_bar_" . $id;
|
|
|
|
$recipient_name_to_js = "#progress_bar_" . $id;
|
|
|
|
|
|
|
|
$output = "";
|
|
|
|
|
|
|
|
$output .= "<div id=" . $recipient_name . " style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
progress_bar_d3('" . $recipient_name_to_js . "', " . (int)$percentile . ", " . (int)$width . ", " . (int)$height . ", '" . $color . "', '" . $unit . "', '" . $text . "', '" . $fill_color . "');
|
|
|
|
</script>";
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
function d3_progress_bubble ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$recipient_name = "progress_bubble_" . $id;
|
|
|
|
$recipient_name_to_js = "#progress_bubble_" . $id;
|
|
|
|
|
|
|
|
$output = "";
|
|
|
|
|
|
|
|
$output .= "<div id=" . $recipient_name . " style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
|
|
|
progress_bubble_d3('" . $recipient_name_to_js . "', " . (int)$percentile . ", " . (int)$width . ", " . (int)$height . ", '" . $color . "', '" . $unit . "', '" . $text . "', '" . $fill_color . "');
|
|
|
|
</script>";
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
function progress_circular_bar ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") {
|
2017-10-05 16:38:21 +02:00
|
|
|
global $config;
|
|
|
|
|
|
|
|
$recipient_name = "circular_progress_bar_" . $id;
|
|
|
|
$recipient_name_to_js = "#circular_progress_bar_" . $id;
|
|
|
|
|
|
|
|
$output = "";
|
|
|
|
|
|
|
|
$output .= "<div id=" . $recipient_name . " style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
2017-10-06 14:04:20 +02:00
|
|
|
print_circular_progress_bar('" . $recipient_name_to_js . "', " . (int)$percentile . ", " . (int)$width . ", " . (int)$height . ", '" . $color . "', '" . $unit . "', '" . $text . "', '" . $fill_color . "');
|
2017-10-05 16:38:21 +02:00
|
|
|
</script>";
|
2017-10-05 13:33:34 +02:00
|
|
|
|
2017-10-05 16:38:21 +02:00
|
|
|
return $output;
|
2017-10-05 13:33:34 +02:00
|
|
|
}
|
|
|
|
|
2017-10-06 14:04:20 +02:00
|
|
|
function progress_circular_bar_interior ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") {
|
2017-10-05 16:38:21 +02:00
|
|
|
global $config;
|
|
|
|
|
|
|
|
$recipient_name = "circular_progress_bar_interior_" . $id;
|
|
|
|
$recipient_name_to_js = "#circular_progress_bar_interior_" . $id;
|
|
|
|
|
|
|
|
$output = "";
|
|
|
|
|
|
|
|
$output .= "<div id=" . $recipient_name . " style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
2017-10-06 14:04:20 +02:00
|
|
|
print_interior_circular_progress_bar('" . $recipient_name_to_js . "', " . (int)$percentile . ", " . (int)$width . ", " . (int)$height . ", '" . $color . "', '" . $unit . "', '" . $text . "', '" . $fill_color . "');
|
2017-10-05 16:38:21 +02:00
|
|
|
</script>";
|
2017-10-05 13:33:34 +02:00
|
|
|
|
2017-10-05 16:38:21 +02:00
|
|
|
return $output;
|
2017-10-05 13:33:34 +02:00
|
|
|
}
|
2017-10-06 14:04:20 +02:00
|
|
|
|
2017-11-08 10:21:09 +01:00
|
|
|
function d3_donut_graph ($id, $width, $height, $module_data, $resume_color) {
|
2017-10-26 15:37:43 +02:00
|
|
|
global $config;
|
|
|
|
|
|
|
|
$module_data = json_encode($module_data);
|
|
|
|
|
|
|
|
$recipient_name = "donut_graph_" . $id;
|
|
|
|
$recipient_name_to_js = "#donut_graph_" . $id;
|
|
|
|
|
|
|
|
$output = "<div id=" . $recipient_name . " style='overflow: hidden;'></div>";
|
|
|
|
$output .= include_javascript_d3(true);
|
|
|
|
$output .= "<style type=\"text/css\">
|
|
|
|
path {
|
|
|
|
stroke: #fff;
|
|
|
|
fill-rule: evenodd;
|
|
|
|
}
|
|
|
|
</style>";
|
|
|
|
|
|
|
|
$output .= "<script language=\"javascript\" type=\"text/javascript\">
|
2017-11-08 10:21:09 +01:00
|
|
|
print_donut_graph('" . $recipient_name_to_js . "', " . $width . ", " . $height . ", " . $module_data . ", '" . $resume_color . "');
|
2017-10-26 15:37:43 +02:00
|
|
|
</script>";
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2014-06-02 19:36:00 +02:00
|
|
|
?>
|