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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 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/ |
+-------------------------------------------------------------------------+
*/
function api_delete_graphs(&$local_graph_ids, $delete_type) {
/* check for a bad local_graph_id = 0, and remove graphs */
api_graph_remove_bad_graphs($local_graph_ids);
if (!cacti_sizeof($local_graph_ids)) {
return;
}
api_graph_remove_aggregate_items($local_graph_ids);
switch ($delete_type) {
case '2': // delete all data sources referenced by this graph
$all_data_sources = array_rekey(
db_fetch_assoc('SELECT DISTINCT dtd.local_data_id
FROM data_template_data AS dtd
INNER JOIN data_template_rrd AS dtr
ON dtd.local_data_id=dtr.local_data_id
INNER JOIN graph_templates_item AS gti
ON dtr.id=gti.task_item_id
WHERE ' . array_to_sql_or($local_graph_ids, 'gti.local_graph_id') . '
AND gti.local_graph_id NOT IN(SELECT local_graph_id FROM aggregate_graphs)
AND dtd.local_data_id > 0'),
'local_data_id', 'local_data_id'
);
if (cacti_sizeof($all_data_sources)) {
$data_sources = array_rekey(
db_fetch_assoc('SELECT dtd.local_data_id,
COUNT(DISTINCT gti.local_graph_id) AS graphs
FROM data_template_data AS dtd
INNER JOIN data_template_rrd AS dtr
ON dtd.local_data_id=dtr.local_data_id
INNER JOIN graph_templates_item AS gti
ON dtr.id=gti.task_item_id
WHERE dtd.local_data_id > 0
AND gti.local_graph_id NOT IN(SELECT local_graph_id FROM aggregate_graphs)
GROUP BY dtd.local_data_id
HAVING graphs = 1
AND ' . array_to_sql_or($all_data_sources, 'local_data_id')),
'local_data_id', 'local_data_id'
);
if (cacti_sizeof($data_sources)) {
api_data_source_remove_multi($data_sources);
}
api_graph_remove_multi($local_graph_ids);
/* Remove orphaned data sources */
$data_sources = array_rekey(
db_fetch_assoc('SELECT DISTINCT dtd.local_data_id
FROM data_template_data AS dtd
INNER JOIN data_template_rrd AS dtr
ON dtd.local_data_id=dtr.local_data_id
LEFT JOIN graph_templates_item AS gti
ON dtr.id=gti.task_item_id
WHERE ' . array_to_sql_or($all_data_sources, 'dtd.local_data_id') . '
AND gti.local_graph_id IS NULL
AND gti.local_graph_id NOT IN(SELECT local_graph_id FROM aggregate_graphs)
AND dtd.local_data_id > 0'),
'local_data_id', 'local_data_id'
);
if (cacti_sizeof($data_sources)) {
api_data_source_remove_multi($data_sources);
}
} else {
api_graph_remove_multi($local_graph_ids);
}
break;
case '1':
api_graph_remove_multi($local_graph_ids);
break;
}
/**
* Save the last time a graph was created/updated
* for Caching.
*/
set_config_option('time_last_change_graph', time());
}
function api_graph_remove($local_graph_id) {
if (empty($local_graph_id)) {
$local_graph_ids = array($local_graph_id);
api_graph_remove_bad_graphs($local_graph_ids);
return;
}
api_plugin_hook_function('graphs_remove', array($local_graph_id));
api_graph_remove_aggregate_items($local_graph_id);
db_execute_prepared('DELETE FROM graph_templates_graph WHERE local_graph_id = ?', array($local_graph_id));
db_execute_prepared('DELETE FROM graph_templates_item WHERE local_graph_id = ?', array($local_graph_id));
db_execute_prepared('DELETE FROM graph_tree_items WHERE local_graph_id = ?', array($local_graph_id));
db_execute_prepared('DELETE FROM reports_items WHERE local_graph_id = ?', array($local_graph_id));
db_execute_prepared('DELETE FROM graph_local WHERE id = ?', array($local_graph_id));
/**
* Save the last time a graph was created/updated
* for Caching.
*/
set_config_option('time_last_change_graph', time());
}
function api_graph_remove_bad_graphs(&$local_graph_ids = array()) {
if (cacti_sizeof($local_graph_ids)) {
$bad_graph = array_search(0, $local_graph_ids);
if ($bad_graph !== false) {
unset($local_graph_ids[$bad_graph]);
db_execute('DELETE FROM graph_local
WHERE id = 0');
db_execute('DELETE FROM graph_templates_graph
WHERE local_graph_id = 0
AND graph_template_id = 0');
db_execute('DELETE FROM graph_templates_item
WHERE hash = ""
AND local_graph_id = 0');
}
}
/**
* Save the last time a graph was created/updated
* for Caching.
*/
set_config_option('time_last_change_graph', time());
}
function api_graph_remove_aggregate_items($local_graph_ids) {
if (!is_array($local_graph_ids)) {
$local_graph_ids = explode(',', $local_graph_ids);
}
foreach($local_graph_ids as $lgid) {
$aggregate_graphs = array_rekey(
db_fetch_assoc_prepared('SELECT DISTINCT aggregate_graph_id
FROM aggregate_graphs_items
WHERE local_graph_id = ?',
array($lgid)),
'aggregate_graph_id', 'aggregate_graph_id'
);
if (cacti_sizeof($aggregate_graphs)) {
foreach($aggregate_graphs as $ag) {
api_aggregate_disassociate($ag, $lgid);
}
}
}
}
function api_graph_remove_multi($local_graph_ids) {
/* check for a bad local_graph_id = 0, and remove graphs */
api_graph_remove_bad_graphs($local_graph_ids);
if (!cacti_sizeof($local_graph_ids)) {
return;
}
/* initialize variables */
$ids_to_delete = '';
$i = 0;
/* build the array */
if (cacti_sizeof($local_graph_ids)) {
api_plugin_hook_function('graphs_remove', $local_graph_ids);
foreach($local_graph_ids as $local_graph_id) {
if ($i == 0) {
$ids_to_delete .= $local_graph_id;
} else {
$ids_to_delete .= ', ' . $local_graph_id;
}
$i++;
if (($i % 1000) == 0) {
api_graph_remove_aggregate_items($ids_to_delete);
db_execute("DELETE FROM graph_templates_graph WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM graph_templates_item WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM graph_tree_items WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM reports_items WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM graph_local WHERE id IN ($ids_to_delete)");
$i = 0;
$ids_to_delete = '';
}
}
if ($i > 0) {
api_graph_remove_aggregate_items($ids_to_delete);
db_execute("DELETE FROM graph_templates_graph WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM graph_templates_item WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM graph_tree_items WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM reports_items WHERE local_graph_id IN ($ids_to_delete)");
db_execute("DELETE FROM graph_local WHERE id IN ($ids_to_delete)");
}
/**
* Save the last time a graph was created/updated
* for Caching.
*/
set_config_option('time_last_change_graph', time());
}
}
/* api_resize_graphs - resizes the selected graph, overriding the template value
@arg $graph_templates_graph_id - the id of the graph to resize
@arg $graph_width - the width of the resized graph
@arg $graph_height - the height of the resized graph
*/
function api_resize_graphs($local_graph_id, $graph_width, $graph_height) {
/* get graphs template id */
db_execute_prepared('UPDATE graph_templates_graph
SET width = ?, height = ?
WHERE local_graph_id = ?',
array($graph_width, $graph_height, $local_graph_id));
}
/* api_reapply_suggested_graph_title - reapplies the suggested name to a graph title
@param int $graph_templates_graph_id - the id of the graph to reapply the name to
*/
function api_reapply_suggested_graph_title($local_graph_id) {
global $config;
/* get graphs template id */
$graph_template_id = db_fetch_cell_prepared('SELECT graph_template_id
FROM graph_templates_graph
WHERE local_graph_id = ?',
array($local_graph_id));
/* if a non-template graph, simply return */
if ($graph_template_id == 0) {
return;
}
/* get the host associated with this graph for data queries only
* there's no "reapply suggested title" for "simple" graph templates */
$graph_local = db_fetch_row_prepared('SELECT *
FROM graph_local
WHERE id = ?',
array($local_graph_id));
/* if this is not a data query graph, simply return */
if (!isset($graph_local['host_id'])) {
return;
}
/* no snmp query graph id found */
if ($graph_local['snmp_query_graph_id'] == 0) {
return;
}
/* get the suggested values from the suggested values cache */
$suggested_values = db_fetch_assoc_prepared("SELECT text, field_name
FROM snmp_query_graph_sv
WHERE snmp_query_graph_id = ?
AND field_name = 'title'
ORDER BY sequence",
array($graph_local['snmp_query_graph_id']));
$matches = array();
$suggested_values_graph = array();
if (cacti_sizeof($suggested_values)) {
foreach ($suggested_values as $suggested_value) {
/* once we find a match; don't try to find more */
if (!isset($suggested_values_graph[$suggested_value['field_name']])) {
$subs_string = substitute_snmp_query_data($suggested_value['text'], $graph_local['host_id'], $graph_local['snmp_query_id'], $graph_local['snmp_index'], read_config_option('max_data_query_field_length'));
/* if there are no '|' characters, all of the substitutions were successful */
if (!substr_count($subs_string, '|query')) {
if (in_array($suggested_value['field_name'], $matches)) {
continue;
}
$matches[] = $suggested_value['field_name'];
db_execute_prepared('UPDATE graph_templates_graph
SET ' . $suggested_value['field_name'] . ' = ?
WHERE local_graph_id = ?',
array($suggested_value['text'], $local_graph_id));
/* once we find a working value for this very field, stop */
$suggested_values_graph[$suggested_value['field_name']] = true;
}
}
}
if (cacti_sizeof($matches)) {
return true;
}
}
return false;
}
/* api_get_graphs_from_datasource - get's all graphs related to a data source
@arg $local_data_id - the id of the data source
@returns - array($id => $name_cache) returns the graph id's and names of the graphs
*/
function api_get_graphs_from_datasource($local_data_id) {
return array_rekey(db_fetch_assoc_prepared('SELECT DISTINCT graph_templates_graph.local_graph_id AS id,
graph_templates_graph.title_cache AS name
FROM (graph_templates_graph
INNER JOIN graph_templates_item
ON graph_templates_graph.local_graph_id = graph_templates_item.local_graph_id)
INNER JOIN data_template_rrd
ON graph_templates_item.task_item_id = data_template_rrd.id
WHERE graph_templates_graph.local_graph_id > 0
AND data_template_rrd.local_data_id = ?', array($local_data_id)), 'id', 'name');
}
function api_duplicate_graph($_local_graph_id, $_graph_template_id, $graph_title, $map_to_data_query = true) {
global $struct_graph, $struct_graph_item;
if (!empty($_local_graph_id)) {
$graph_local = db_fetch_row_prepared('SELECT *
FROM graph_local
WHERE id = ?',
array($_local_graph_id));
if (!cacti_sizeof($graph_local)) {
return false;
}
$graph_template_graph = db_fetch_row_prepared('SELECT *
FROM graph_templates_graph
WHERE local_graph_id = ?',
array($_local_graph_id));
$graph_template_items = db_fetch_assoc_prepared('SELECT *
FROM graph_templates_item
WHERE local_graph_id = ?',
array($_local_graph_id));
/* create new entry: graph_local */
$save['id'] = 0;
$save['graph_template_id'] = $graph_local['graph_template_id'];
$save['host_id'] = $graph_local['host_id'];
$save['snmp_query_id'] = $graph_local['snmp_query_id'];
$save['snmp_index'] = $graph_local['snmp_index'];
$local_graph_id = sql_save($save, 'graph_local');
$graph_template_graph['title'] = str_replace('<graph_title>', $graph_template_graph['title'], $graph_title);
} elseif (!empty($_graph_template_id)) {
$graph_template = db_fetch_row_prepared('SELECT *
FROM graph_templates
WHERE id = ?',
array($_graph_template_id));
if (!cacti_sizeof($graph_template)) {
return false;
}
$graph_template_graph = db_fetch_row_prepared('SELECT *
FROM graph_templates_graph
WHERE graph_template_id = ?
AND local_graph_id=0',
array($_graph_template_id));
$graph_template_items = db_fetch_assoc_prepared('SELECT *
FROM graph_templates_item
WHERE graph_template_id = ?
AND local_graph_id=0',
array($_graph_template_id));
$graph_template_inputs = db_fetch_assoc_prepared('SELECT *
FROM graph_template_input
WHERE graph_template_id = ?',
array($_graph_template_id));
/* create new entry: graph_templates */
$save['id'] = 0;
$save['hash'] = get_hash_graph_template(0);
$save['name'] = str_replace('<template_title>', $graph_template['name'], $graph_title);
$save['multiple'] = $graph_template['multiple'];
$graph_template_id = sql_save($save, 'graph_templates');
}
unset($save);
/* create new entry: graph_templates_graph */
$save['id'] = 0;
$save['local_graph_id'] = (isset($local_graph_id) ? $local_graph_id : 0);
$save['local_graph_template_graph_id'] = (isset($graph_template_graph['local_graph_template_graph_id']) ? $graph_template_graph['local_graph_template_graph_id'] : 0);
$save['graph_template_id'] = (!empty($_local_graph_id) ? $graph_template_graph['graph_template_id'] : $graph_template_id);
$save['title_cache'] = $graph_template_graph['title_cache'];
foreach ($struct_graph as $field => $array) {
if ($array['method'] == 'spacer') continue;
$save[$field] = $graph_template_graph[$field];
$save['t_' . $field] = $graph_template_graph['t_' . $field];
}
$graph_templates_graph_id = sql_save($save, 'graph_templates_graph');
/* create new entry(s): graph_templates_item */
if (cacti_sizeof($graph_template_items)) {
foreach ($graph_template_items as $graph_template_item) {
unset($save);
$save['id'] = 0;
/* save a hash only for graph_template copy operations */
$save['hash'] = (!empty($_graph_template_id) ? get_hash_graph_template(0, 'graph_template_item') : 0);
$save['local_graph_id'] = (isset($local_graph_id) ? $local_graph_id : 0);
$save['graph_template_id'] = (!empty($_local_graph_id) ? $graph_template_item['graph_template_id'] : $graph_template_id);
$save['local_graph_template_item_id'] = (isset($graph_template_item['local_graph_template_item_id']) ? $graph_template_item['local_graph_template_item_id'] : 0);
foreach ($struct_graph_item as $field => $array) {
$save[$field] = $graph_template_item[$field];
}
$graph_item_mappings[$graph_template_item['id']] = sql_save($save, 'graph_templates_item');
}
}
if (!empty($_graph_template_id)) {
/* create new entry(s): graph_template_input (graph template only) */
if (cacti_sizeof($graph_template_inputs)) {
foreach ($graph_template_inputs as $graph_template_input) {
unset($save);
$save['id'] = 0;
$save['graph_template_id'] = $graph_template_id;
$save['name'] = $graph_template_input['name'];
$save['description'] = $graph_template_input['description'];
$save['column_name'] = $graph_template_input['column_name'];
$save['hash'] = get_hash_graph_template(0, 'graph_template_input');
$graph_template_input_id = sql_save($save, 'graph_template_input');
$graph_template_input_defs = db_fetch_assoc_prepared('SELECT *
FROM graph_template_input_defs
WHERE graph_template_input_id = ?',
array($graph_template_input['id']));
/* create new entry(s): graph_template_input_defs (graph template only) */
if (cacti_sizeof($graph_template_input_defs)) {
foreach ($graph_template_input_defs as $graph_template_input_def) {
db_execute_prepared('INSERT INTO graph_template_input_defs
(graph_template_input_id, graph_template_item_id)
VALUES (?, ?)',
array(
$graph_template_input_id,
$graph_item_mappings[$graph_template_input_def['graph_template_item_id']]
)
);
}
}
}
}
}
if (!empty($_local_graph_id)) {
update_graph_title_cache($local_graph_id);
} elseif ($map_to_data_query) {
// Graph Template, Check for Data Query Associated Graph Template
$data_query_graphs = db_fetch_assoc_prepared('SELECT *
FROM snmp_query_graph
WHERE graph_template_id = ?',
array($_graph_template_id));
if (cacti_sizeof($data_query_graphs)) {
unset($save);
$name = db_fetch_cell_prepared('SELECT name
FROM graph_templates
WHERE id = ?',
array($graph_template_id));
foreach($data_query_graphs as $dqg) {
/* map the snmp_query_graph */
unset($save);
$save['id'] = 0;
$save['hash'] = get_hash_data_query(0, 'data_query_graph');
$save['snmp_query_id'] = $dqg['snmp_query_id'];
$save['name'] = $name;
$save['graph_template_id'] = $graph_template_id;
$snmp_query_graph_id = sql_save($save, 'snmp_query_graph');
/* map the snmp_query_graph_rrds */
if (!empty($snmp_query_graph_id)) {
$snmp_query_graph_rrds = db_fetch_assoc_prepared('SELECT *
FROM snmp_query_graph_rrd
WHERE snmp_query_graph_id = ?',
array($dqg['id']));
if (cacti_sizeof($snmp_query_graph_rrds)) {
foreach($snmp_query_graph_rrds as $sqgr) {
db_execute_prepared('INSERT INTO snmp_query_graph_rrd
(snmp_query_graph_id, data_template_id, data_template_rrd_id, snmp_field_name)
VALUES (?, ?, ?, ?)',
array(
$snmp_query_graph_id,
$sqgr['data_template_id'],
$sqgr['data_template_rrd_id'],
$sqgr['snmp_field_name']
)
);
}
}
}
/* map data source suggested values */
$snames = db_fetch_assoc_prepared('SELECT *
FROM snmp_query_graph_rrd_sv
WHERE snmp_query_graph_id = ?',
array($dqg['id']));
if (cacti_sizeof($snames)) {
foreach($snames as $sn) {
unset($save);
$save['id'] = 0;
$save['hash'] = get_hash_data_query(0, 'data_query_sv_data_source');
$save['snmp_query_graph_id'] = $snmp_query_graph_id;
$save['data_template_id'] = $sn['data_template_id'];
$save['sequence'] = $sn['sequence'];
$save['field_name'] = $sn['field_name'];
$save['text'] = $sn['text'];
sql_save($save, 'snmp_query_graph_rrd_sv');
}
}
/* map graph suggested values */
$snames = db_fetch_assoc_prepared('SELECT *
FROM snmp_query_graph_sv
WHERE snmp_query_graph_id = ?',
array($dqg['id']));
if (cacti_sizeof($snames)) {
foreach($snames as $sn) {
unset($save);
$save['id'] = 0;
$save['hash'] = get_hash_data_query(0, 'data_query_sv_graph');
$save['snmp_query_graph_id'] = $snmp_query_graph_id;
$save['sequence'] = $sn['sequence'];
$save['field_name'] = $sn['field_name'];
$save['text'] = $sn['text'];
sql_save($save, 'snmp_query_graph_sv');
}
}
}
}
}
/**
* Save the last time a graph was created/updated
* for Caching.
*/
set_config_option('time_last_change_graph', time());
if ($_local_graph_id > 0) {
return $local_graph_id;
} elseif ($_graph_template_id > 0) {
return $graph_template_id;
} else {
return false;
}
}
function api_graph_change_device($local_graph_id, $host_id) {
$dqgraph = db_fetch_cell_prepared('SELECT snmp_query_id
FROM graph_local
WHERE id = ?',
array($local_graph_id));
if (empty($dqgraph)) {
db_execute_prepared('UPDATE graph_local
SET host_id = ?
WHERE id = ?',
array($host_id, $local_graph_id));
update_graph_title_cache($local_graph_id);
/* update the data sources as well */
$data_ids = db_fetch_assoc_prepared('SELECT DISTINCT dtr.local_data_id
FROM graph_templates_item AS gti
INNER JOIN data_template_rrd AS dtr
ON gti.task_item_id=dtr.id
WHERE gti.local_graph_id = ?',
array($local_graph_id));
if (cacti_sizeof($data_ids)) {
foreach($data_ids as $data_id) {
db_execute_prepared('UPDATE data_local
SET host_id = ?
WHERE id = ?',
array($host_id, $data_id['local_data_id']));
db_execute_prepared('UPDATE poller_item
SET host_id = ?
WHERE local_data_id = ?',
array($host_id, $data_id['local_data_id']));
}
}
return true;
}
return false;
}
|