forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_image.php
164 lines (134 loc) · 5.26 KB
/
graph_image.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2017 The Cacti Group |
| |
| 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; either version 2 |
| of the License, or (at your option) any later version. |
| |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/* since we'll have additional headers, tell php when to flush them */
ob_start();
$guest_account = true;
$gtype = 'png';
include('./include/auth.php');
include_once('./lib/rrd.php');
/* ================= input validation ================= */
get_filter_request_var('graph_start');
get_filter_request_var('graph_end');
get_filter_request_var('graph_height');
get_filter_request_var('graph_width');
get_filter_request_var('local_graph_id');
if (isset_request_var('graph_nolegend')) {
set_request_var('graph_nolegend', 'true');
}
get_filter_request_var('graph_theme', FILTER_CALLBACK, array('options' => 'sanitize_search_string'));
/* ==================================================== */
api_plugin_hook_function('graph_image');
$graph_data_array = array();
// Determine the graph type of the output
if (!isset_request_var('image_format')) {
$type = db_fetch_cell_prepared('SELECT image_format_id FROM graph_templates_graph WHERE local_graph_id = ?', array(get_request_var('local_graph_id')));
switch($type) {
case '1':
$gtype = 'png';
break;
case '3':
$gtype = 'svg+xml';
break;
}
} else {
switch(strtolower(get_nfilter_request_var('image_format'))) {
case 'png':
$gtype = 'png';
break;
case 'svg':
$gtype = 'svg+xml';
break;
default:
$gtype = 'png';
break;
}
}
$graph_data_array['image_format'] = $gtype;
session_write_close();
/* override: graph start time (unix time) */
if (!isempty_request_var('graph_start') && get_request_var('graph_start') < 1600000000) {
$graph_data_array['graph_start'] = get_request_var('graph_start');
}
/* override: graph end time (unix time) */
if (!isempty_request_var('graph_end') && get_request_var('graph_end') < 1600000000) {
$graph_data_array['graph_end'] = get_request_var('graph_end');
}
/* override: graph height (in pixels) */
if (!isempty_request_var('graph_height') && get_request_var('graph_height') < 3000) {
$graph_data_array['graph_height'] = get_request_var('graph_height');
}
/* override: graph width (in pixels) */
if (!isempty_request_var('graph_width') && get_request_var('graph_width') < 3000) {
$graph_data_array['graph_width'] = get_request_var('graph_width');
}
/* override: skip drawing the legend? */
if (!isempty_request_var('graph_nolegend')) {
$graph_data_array['graph_nolegend'] = get_request_var('graph_nolegend');
}
/* print RRDtool graph source? */
if (!isempty_request_var('show_source')) {
$graph_data_array['print_source'] = get_request_var('show_source');
}
/* disable cache check */
if (isset_request_var('disable_cache')) {
$graph_data_array['disable_cache'] = true;
}
/* set the theme */
if (isset_request_var('graph_theme')) {
$graph_data_array['graph_theme'] = get_request_var('graph_theme');
}
if (isset_request_var('rra_id')) {
if (get_nfilter_request_var('rra_id') == 'all') {
$rra_id = 'all';
} else {
$rra_id = get_filter_request_var('rra_id');
}
} else {
$rra_id = null;
}
$output = rrdtool_function_graph(get_request_var('local_graph_id'), $rra_id, $graph_data_array);
if ($output !== false && $output != '') {
/* flush the headers now */
ob_end_clean();
header('Content-type: image/'. $gtype);
print $output;
} else {
ob_start();
/* get the error string */
$graph_data_array['get_error'] = true;
rrdtool_function_graph(get_request_var('local_graph_id'), $rra_id, $graph_data_array);
$error = ob_get_contents();
if (isset($graph_data_array['graph_width']) && isset($graph_data_array['graph_height'])) {
$image = rrdtool_create_error_image($error, $graph_data_array['graph_width'], $graph_data_array['graph_height']);
} else {
$image = rrdtool_create_error_image($error);
}
ob_end_clean();
header('Content-type: image/png');
if ($image !== false) {
print $image;
} else {
print file_get_contents(__DIR__ . '/images/cacti_error_image.png');
}
}