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 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
|
<?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/ |
+-------------------------------------------------------------------------+
*/
/**
* Create or update aggregate graph.
* Save all graph definitions, but omit graph items. Wipe out host_id and graph_template_id.
*
* @param int $local_graph_id - ID of an already existing aggregate graph.
* @param int $graph_template_id - ID of the corresponding graph_template.
* @param string $graph_title - Title for new graph.
* @param int $aggregate_template_id - ID of aggregate template (0 if no template).
* @param array $new_data - Key/value pairs with new graph data.
*
* @return int ID of the new graph.
*/
function aggregate_graph_save($_local_graph_id, $_graph_template_id, $_graph_title, $_aggregate_template_id = 0, $graph_data = array()) {
/* suppress warnings */
error_reporting(E_ALL);
/* install own error handler */
set_error_handler('aggregate_error_handler');
cacti_log(__FUNCTION__ . ' local_graph: ' . $_local_graph_id . ' template: ' . $_graph_template_id . ' graph title: ' . $_graph_title . ' aggregate template: ' . $_aggregate_template_id, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
/* store basic graph info */
$local_graph_id = aggregate_graph_local_save($_local_graph_id);
/* store extra graph data */
$graph_templates_graph_id = aggregate_graph_templates_graph_save($local_graph_id, $_graph_template_id, $_graph_title, $_aggregate_template_id, $graph_data);
/* restore original error handler */
restore_error_handler();
/* return the id of the newly inserted graph */
return $local_graph_id;
}
/**
* Creates or updates basic aggregate graph data in graph_local.
*
* @param int $id - ID of existing aggregate graph if updating or 0 if creating a new one.
*
* @return int ID of graph.
*/
function aggregate_graph_local_save($id = 0) {
cacti_log(__FUNCTION__ . ' local_graph: ' . $id, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
/* create or update entry: graph_local */
$local_graph['id'] = (isset($id) ? $id : 0);
$local_graph['graph_template_id'] = 0; # no templating
$local_graph['host_id'] = 0; # no host to be referred to
$local_graph['snmp_query_id'] = 0; # no templating
$local_graph['snmp_index'] = ''; # no templating, may hold string data
return sql_save($local_graph, 'graph_local');
}
/**
* Create or update aggregate graphs data in graph_templates_graph.
* Graph must already exist in graph_local eg. local_graph_id must never be 0
*
* @param int $local_graph_id - ID of graph.
* @param int $graph_template_id - Graph template this graph is based on.
* @param string $graph_title - Title of graph. Used only for new graphs.
* @param int $aggregate_template_id - ID of aggregate template this graph is based on (0 if not aggregate template based).
* @param array $new_data - Key/value pairs with new graph data.
*
* @return int ID of record in graph_templates_graph
*/
function aggregate_graph_templates_graph_save($local_graph_id, $graph_template_id, $graph_title = '', $aggregate_template_id = 0, $new_data = array()) {
cacti_log(__FUNCTION__ . ' local_graph: ' . $local_graph_id . ' template: ' . $graph_template_id . ' title: ' . $graph_title . ' aggregate template: '. $aggregate_template_id, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
/* base graph must exist */
if ($local_graph_id < 1) {
return 0;
}
$graph_data = array();
$existing_data = db_fetch_row_prepared('SELECT *
FROM graph_templates_graph
WHERE local_graph_id = ?',
array($local_graph_id));
$template_data = db_fetch_row_prepared('SELECT *
FROM graph_templates_graph
WHERE graph_template_id = ?
AND local_graph_id=0',
array($graph_template_id));
if ($aggregate_template_id > 0) {
/* override selected fields from template data with aggregate template data */
$aggregate_data = db_fetch_row_prepared('SELECT *
FROM aggregate_graph_templates_graph
WHERE aggregate_template_id = ?',
array($aggregate_template_id));
if (cacti_sizeof($aggregate_data)) {
foreach ($aggregate_data as $field => $value) {
if (substr($field, 0, 2) == 't_' && $value == 'on') {
$value_field_name = substr($field, 2);
$template_data[$value_field_name] = $aggregate_data[$value_field_name];
}
}
}
}
if (cacti_sizeof($existing_data) == 0) {
/* this is a new graph, use template data */
$graph_data = $template_data;
$graph_data['id'] = 0;
$graph_data['title'] = $graph_title;
$graph_data['title_cache'] = $graph_title;
} elseif ($aggregate_template_id > 0) {
/* this graph exists and is templated from aggregate template,
* use template data */
$graph_data = $template_data;
$graph_data['id'] = $existing_data['id'];
$graph_data['title'] = $existing_data['title'];
$graph_data['title_cache'] = $existing_data['title_cache'];
} else {
/* this is an existing graph and not templated from aggregate,
* re-use its old data */
$graph_data = $existing_data;
}
if ($aggregate_template_id == 0) {
/* now use new data */
$graph_data = array_merge($graph_data, $new_data);
}
/* safety check - don't allow empty titles */
if ($graph_title != '') {
$graph_data['title'] = $graph_title;
$graph_data['title_cache'] = $graph_title;
}
$graph_data['auto_padding'] = 'on';
$graph_data['local_graph_id'] = $local_graph_id;
$graph_data['local_graph_template_graph_id'] = 0; # no templating
$graph_data['graph_template_id'] = 0; # no templating
$graph_templates_graph_id = sql_save($graph_data, 'graph_templates_graph');
/* update title cache */
if (!empty($graph_templates_graph_id)) {
update_graph_title_cache($local_graph_id);
}
return $graph_templates_graph_id;
}
/** aggregate_graphs_insert_graph_items - inserts all graph items of an existing graph
* @param int $_new_graph_id - id of the new graph
* @param int $_old_graph_id - id of the old graph
* @param int $_graph_template_id - template id of the old graph if the old graph is 0
* @param int $_skip - graph items to be skipped, array starts at 1
* @param int $_totali - graph items to be totaled, array starts at 1
* @param int $_graph_item_sequence - sequence number of the next graph item to be inserted
* @param int $_selected_graph_index - index of current graph to be inserted
* @param array $_color_templates - the color templates to be used
* @param array $_graph_item_types - graph_type_ids to override types from original graph item
* @param array $_cdefs - cdef_ids to override cdef from original graph item
* @param int $_graph_type - conversion to AREA/STACK or LINE required?
* @param int $_gprint_prefix - prefix for the legend line
* @param int $_gprint_format - flag to determine if the source graphs GPRINT title should be included
* @param int $_total - Totalling: graph items AND/OR legend
* @param int $_total_type - Totalling: SIMILAR/ALL data sources
* @param array $member_graph - Totalling: Used for determining the consolidation function id
* @return int - id of the next graph item to be inserted
* */
function aggregate_graphs_insert_graph_items($_new_graph_id, $_old_graph_id, $_graph_template_id,
$_skip, $_totali, $_graph_item_sequence, $_selected_graph_index, $_color_templates, $_graph_item_types, $_cdefs,
$_graph_type, $_gprint_prefix, $_gprint_format, $_total, $_total_type = '', $member_graphs = array()) {
global $struct_graph_item, $graph_item_types, $config;
// Remove filter item
unset($struct_graph_item['data_template_id']);
include_once($config['base_path'] . '/lib/api_aggregate.php');
/* suppress warnings */
error_reporting(E_ALL);
/* install own error handler */
set_error_handler('aggregate_error_handler');
cacti_log(__FUNCTION__ . ' called. Insert example graph:' . $_old_graph_id . ' Graph Template:' . $_graph_template_id . ' into Graph:' . $_new_graph_id . ' at Sequence:' . $_graph_item_sequence . ' Graph_No:' . $_selected_graph_index . ' Type Action: ' . $_graph_type, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
cacti_log(__FUNCTION__ . ' skipping: ' . serialize($_skip), true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
# take graph item data from old one
if (!empty($_old_graph_id)) {
$graph_items = db_fetch_assoc_prepared('SELECT *
FROM graph_templates_item
WHERE local_graph_id = ?
ORDER BY sequence',
array($_old_graph_id));
$graph_local = db_fetch_row_prepared('SELECT host_id, graph_template_id,
snmp_query_id, snmp_index
FROM graph_local
WHERE id = ?',
array($_old_graph_id));
} else {
$graph_items = db_fetch_assoc_prepared('SELECT *
FROM graph_templates_item
WHERE local_graph_id = ?
AND graph_template_id = ?
ORDER BY sequence',
array($_old_graph_id, $_graph_template_id));
$graph_local = array();
}
/* create new entry(s): graph_templates_item */
$num_items = cacti_sizeof($graph_items);
if ($num_items > 0) {
# take care of items having a HR that shall be skipped
$i = 0;
for ($i; $i < $num_items; $i++) {
# remember existing hard returns (array must start at 1 to match $skipped_items
$_hr[$i+1] = ($graph_items[$i]['hard_return'] != '');
}
# move 'skipped hard returns' to previous graph item
$_hr = auto_hr($_skip, $_hr);
# next entry will have to have a prepended text format
$prepend = true;
$prepend_ct = 0;
$skip_graph = false;
$make0_cdef = aggregate_cdef_make0();
$i = 0;
foreach ($graph_items as $graph_item) {
# loop starts at 0, but $_skip starts at 1, so increment before comparing
$i++;
# go ahead, if this graph item has to be skipped
if (isset($_skip[$i]) && !empty($_skip[$i])) {
continue;
}
// HRULES will only appear in the total one way or nother
if ($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_HRULE) {
continue;
}
if ($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_COMMENT) {
if (preg_match('/(:bits:|:bytes:|\|sum:)/', $graph_item['text_format'])) {
// Only skip nth percentile COMMENT values
$parts = explode('|', $graph_item['text_format']);
if (isset($parts[1])) {
$pparts = explode(':', $parts[1]);
if (is_numeric($pparts[0])) {
continue;
}
}
}
}
if ($_total == AGGREGATE_TOTAL_ONLY) {
# if we only need the totalling legend, ...
if (($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_LAST) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_MIN) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_MAX) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_AVERAGE) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_TEXTALIGN) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_TIC) ||
($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_COMMENT)) {
# and this is a legend entry (GPRINT, COMMENT), skip
continue;
} else {
# this is a graph entry, remove text to make it disappear
# do NOT skip!
# we need this entry as a DEF
# and as long as cacti does not provide for a 'pure DEF' graph item type
# we need this workaround
$graph_item['text_format'] = '';
# make sure, that this entry does not have a HR,
# else a single colored mark will be drawn
$graph_item['hard_return'] = '';
$_hr[$i] = '';
# make sure, that data of this item will be suppressed: make 0!
$graph_item['cdef_id'] = $make0_cdef;
# try to pick the best totaling cf id
$graph_item['consolidation_function_id'] = db_fetch_cell('SELECT consolidation_function_id
FROM graph_templates_item
WHERE color_id > 0
AND sequence = ' . $graph_item['sequence'] .
(cacti_sizeof($member_graphs) ? ' AND ' . array_to_sql_or($member_graphs, 'local_graph_id'):'') .
(cacti_sizeof($_skip) ? ' AND sequence NOT IN (' . implode(',', $_skip) . ')':'') .
(cacti_sizeof($_totali) ? ' AND sequence IN (' . implode(',', $_totali) . ')':'') . '
ORDER BY sequence ASC
LIMIT 1');
}
} elseif ($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_AREA ||
$graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINE1 ||
$graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINE2 ||
$graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINE3 ||
$graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_STACK) {
if ($_total_type == AGGREGATE_TOTAL_TYPE_ALL) {
$graph_item['text_format'] = $_gprint_prefix;
} elseif ($_gprint_format != '') {
$graph_item['text_format'] = $_gprint_prefix . ' ' . $graph_item['text_format'];
} else {
$graph_item['text_format'] = $_gprint_prefix;
}
}
# use all data from 'old' graph ...
$save = $graph_item;
# now it's time for some 'special purpose' processing
# selected fields will need special treatment
# take care of color changes only if not set to None
if (isset($_color_templates[$i])) {
if ($_color_templates[$i] > 0) {
# get the size of the color templates array
# if number of colored items exceed array size, use round robin
$num_colors = db_fetch_cell_prepared('SELECT COUNT(color_id)
FROM color_template_items
WHERE color_template_id = ?',
array($_color_templates[$i]));
# templating required, get color for current graph item
$sql = 'SELECT color_id
FROM color_template_items
WHERE color_template_id=' . $_color_templates[$i] . '
ORDER BY sequence
LIMIT ' . ($_selected_graph_index % $num_colors) . ',1';
$save['color_id'] = db_fetch_cell($sql);
} else {
/* set a color even if no color templating is required */
$save['color_id'] = $graph_item['color_id'];
}
} /* else: no color templating defined, e.g. GPRINT entry */
# do we want to override cdef of this item
# certainly not if it was set to $make0_cdef above
if ($_cdefs[$i] > 0 && $graph_item['cdef_id'] != $make0_cdef) {
$save['cdef_id'] = $_cdefs[$i];
}
# take care of the graph_item_type
# user may want to override types (ex. LINEx to AREA)
# do this before we try start converting stuff to AREAs and such
if ($_graph_item_types[$i] > 0) {
$save['graph_type_id'] = $_graph_item_types[$i];
} else {
$save['graph_type_id'] = $graph_item['graph_type_id'];
}
/* change graph types, if requested */
$save['graph_type_id'] = aggregate_change_graph_type($_selected_graph_index, $save['graph_type_id'], $_graph_type);
# new item text format required?
if ($_total_type != '') {
if ($prepend) {
if ($_total_type == AGGREGATE_TOTAL_TYPE_ALL && $prepend_cnt > 0) {
continue;
}
# pointless to add any data source item name here, cause ALL are totaled
if ($_gprint_format != '') {
$save['text_format'] = $graph_item['text_format'];
} else {
$save['text_format'] = '';
}
# no more prepending until next line break is encountered
$prepend = false;
$prepend_cnt++;
} elseif (strpos($save['text_format'], ':current:')) {
if ($_total_type == AGGREGATE_TOTAL_TYPE_ALL || $_total_type == AGGREGATE_TOTAL_TYPE_SIMILAR) {
// All so use sum functions
$save['text_format'] = str_replace(':current:', ':aggregate_sum:', $save['text_format']);
} else {
// Similar to separate
$save['text_format'] = str_replace(':current:', ':current:', $save['text_format']);
}
} elseif (strpos($save['text_format'], ':max:')) {
if ($_total_type == AGGREGATE_TOTAL_TYPE_ALL || $_total_type == AGGREGATE_TOTAL_TYPE_SIMILAR) {
// All so use sum functions
$save['text_format'] = str_replace(':max:', ':aggregate_sum:', $save['text_format']);
} else {
// Similar to separate
$save['text_format'] = str_replace(':max:', ':max:', $save['text_format']);
}
}
}
if ($save['text_format'] != '') {
$save['text_format'] = substitute_host_data($save['text_format'], '|', '|', (isset($graph_local['host_id']) ? $graph_local['host_id']:0));
cacti_log(__FUNCTION__ . ' substituted:' . $save['text_format'], true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
/* if this is a data query graph type, try to substitute */
if (isset($graph_local['snmp_query_id']) && $graph_local['snmp_query_id'] > 0 && $graph_local['snmp_index'] != '') {
$save['text_format'] = substitute_snmp_query_data($save['text_format'], $graph_local['host_id'], $graph_local['snmp_query_id'], $graph_local['snmp_index'], read_config_option('max_data_query_field_length'));
cacti_log(__FUNCTION__ . ' substituted:' . $save['text_format'] . ' for ' . $graph_local['host_id'] . ',' . $graph_local['snmp_query_id'] . ',' . $graph_local['snmp_index'], true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
}
}
# <HR> wanted?
if (isset($_hr[$i]) && $_hr[$i] > 0) {
$save['hard_return'] = 'on';
}
# if this item defines a line break, remember to prepend next line
if ($save['text_format'] != '') {
$prepend = ($save['hard_return'] == 'on');
}
# provide new sequence number
$save['sequence'] = $_graph_item_sequence;
cacti_log(__FUNCTION__ . ' hard return: ' . $save['hard_return'] . ' sequence: ' . $_graph_item_sequence, true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
$save['id'] = 0;
$save['local_graph_template_item_id'] = 0; # disconnect this graph item from the graph template item
$save['local_graph_id'] = (isset($_new_graph_id) ? $_new_graph_id : 0);
$save['graph_template_id'] = 0; # disconnect this graph item from the graph template
$save['hash'] = ''; # remove any template attribs
$graph_item_mappings[$graph_item['id']] = sql_save($save, 'graph_templates_item');
$_graph_item_sequence++;
}
}
/* restore original error handler */
restore_error_handler();
# return with next sequence number to be filled
return $_graph_item_sequence;
}
/**
* insert or update aggregate graph items in DB tables
* @param array $items
* @param string $table
* @return bool true if save was successful, false otherwise
*/
function aggregate_graph_items_save($items, $table) {
$defaults = array();
if ($table == 'aggregate_graphs_graph_item') {
$defaults['aggregate_graph_id'] = null;
$id_field = 'aggregate_graph_id';
} elseif ($table == 'aggregate_graph_templates_item') {
$defaults['aggregate_template_id'] = null;
$id_field = 'aggregate_template_id';
} else {
return false;
}
$defaults['graph_templates_item_id'] = null;
$defaults['sequence'] = 0;
$defaults['color_template'] = 0;
$defaults['t_graph_type_id'] = '';
$defaults['graph_type_id'] = 0;
$defaults['t_cdef_id'] = '';
$defaults['cdef_id'] = 0;
$defaults['item_skip'] = '';
$defaults['item_total'] = '';
$items_sql = array();
foreach ($items as $item) {
// substitute any missing fields with defaults
$item = array_merge($defaults, $item);
// remove any extra fields
$item = array_intersect_key($item, $defaults);
// without these graph item makes no sense
if (!isset($item[$id_field]) || !isset($item['graph_templates_item_id'])) {
return false;
}
// convert to partial SQL statement
$items_sql[] .= sprintf(
' (%d, %d, %d, %d, %s, %d, %s, %d, %s, %s)',
$item[$id_field],
$item['graph_templates_item_id'],
$item['sequence'],
$item['color_template'],
db_qstr($item['t_graph_type_id']),
$item['graph_type_id'],
db_qstr($item['t_cdef_id']),
$item['cdef_id'],
db_qstr($item['item_skip']),
db_qstr($item['item_total'])
);
}
$sql = 'INSERT INTO ' . $table;
$sql .= '(' . implode(', ', array_keys($defaults)) . ') VALUES ';
$sql .= implode(', ', $items_sql);
cacti_log(__FUNCTION__ . ' called. SQL: ' . $sql, true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
/* remove all old items */
if (isset( $items[0][$id_field])) {
db_execute("DELETE FROM $table WHERE " . $id_field . '=' . $items[0][$id_field]);
}
if (db_execute($sql) == 1) {
return true;
} else {
return false;
}
}
/**
* Validate extra graph parameters posted from graph edit form.
* You can check for validation errors with cacti function is_error_message
* @param array $posted - values posted from form
* @param bool $has_override - form had override checkboxes
* @return array - cleaned up graph parameters
*/
function aggregate_validate_graph_params($posted, $has_override = false) {
$check_post_params = array(
'alt_y_grid' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'auto_padding' => array('type' => 'bool', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'auto_scale' => array('type' => 'bool', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'auto_scale_log' => array('type' => 'bool', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'auto_scale_opts' => array('type' => 'int', 'allow_empty' => false, 'default' => 0, 'regex' => ''),
'auto_scale_rigid' => array('type' => 'bool', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'base_value' => array('type' => 'int', 'allow_empty' => true, 'default' => 0, 'regex' => '^[0-9]+$'),
'dynamic_labels' => array('type' => 'str', 'allow_empty' => true, 'default' => 0, 'regex' => ''),
'force_rules_legend' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'grouping' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'height' => array('type' => 'int', 'allow_empty' => false, 'default' => 0, 'regex' => '^[0-9]+$'),
'image_format_id' => array('type' => 'int', 'allow_empty' => false, 'default' => 0, 'regex' => ''),
'left_axis_formatter' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'legend_direction' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'legend_position' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'lower_limit' => array('type' => 'int', 'allow_empty' => true, 'default' => 0, 'regex' => '^(-?([0-9]+(\.[0-9]*)?|[0-9]*\.[0-9]+)([eE][+\-]?[0-9]+)?)|U$'),
'no_gridfit' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'right_axis' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'right_axis_format' => array('type' => 'int', 'allow_empty' => true, 'default' => '', 'regex' => '^[0-9]+$'),
'right_axis_formatter' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'right_axis_label' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'scale_log_units' => array('type' => 'bool', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'slope_mode' => array('type' => 'bool', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'tab_width' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => '^[0-9]+$'),
'unit_exponent_value' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'unit_length' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'unit_value' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'upper_limit' => array('type' => 'int', 'allow_empty' => true, 'default' => 0, 'regex' => '^(-?([0-9]+(\.[0-9]*)?|[0-9]*\.[0-9]+)([eE][+\-]?[0-9]+)?)|U$'),
'vertical_label' => array('type' => 'str', 'allow_empty' => true, 'default' => '', 'regex' => ''),
'width' => array('type' => 'int', 'allow_empty' => false, 'default' => 0, 'regex' => '^[0-9]+$')
);
$params_new = array();
/* validate posted form fields */
foreach ($check_post_params as $field => $defs) {
if ($has_override && !isset($posted['t_' . $field])) {
/* override checkbox off - use default value */
$params_new['t_' . $field] = '';
$params_new[$field] = $defs['default'];
continue;
}
if ($has_override) {
/* override checkbox was on */
$params_new['t_' . $field] = 'on';
}
/* validate value */
if ($defs['type'] == 'bool') {
$params_new[$field] = (isset($posted[$field])) ? 'on' : '';
} else {
$params_new[$field] = (isset($posted[$field]) ? form_input_validate(html_escape($posted[$field]), $field, $defs['regex'], $defs['allow_empty'], 3) : $defs['default']);
}
}
return $params_new;
}
/**
* Populate graph items array with posted values.
* $graph_items array must be keyed on graph item id.
* @param array $posted - values posted from form
* @param array $graph_items - reference to graph items array to update with form values
*
*/
function aggregate_validate_graph_items($posted, &$graph_items) {
foreach ($_POST as $var => $val) {
/* work on color_templates */
if (preg_match('/^agg_color_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1]);
/* ==================================================== */
$graph_templates_item_id = str_replace('agg_color_', '', $var);
if (isset($graph_items[$graph_templates_item_id])) {
$graph_items[$graph_templates_item_id]['color_template'] = $val;
} else {
cacti_log('Something fubar in agg_color');
}
}
/* work on checkboxed for skipping items */
if (preg_match('/^agg_skip_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1]);
/* ==================================================== */
$graph_templates_item_id = str_replace('agg_skip_', '', $var);
if (isset($graph_items[$graph_templates_item_id])) {
$graph_items[$graph_templates_item_id]['item_skip'] = $val;
} else {
cacti_log('Something fubar in agg_skip');
}
}
/* work on checkboxed for totalling items */
if (preg_match('/^agg_total_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1]);
/* ==================================================== */
$graph_templates_item_id = str_replace('agg_total_', '', $var);
if (isset($graph_items[$graph_templates_item_id])) {
$graph_items[$graph_templates_item_id]['item_total'] = $val;
} else {
cacti_log('Something fubar in agg_total');
}
}
}
}
/**
* cleanup of graph items of the new graph
* @param int $base - base graph id
* @param int $aggregate - graph id of aggregate
* @param int $reorder - type of reordering
*/
function aggregate_graphs_cleanup($base, $aggregate, $reorder) {
global $config;
include_once($config['base_path'] . '/lib/api_aggregate.php');
cacti_log(__FUNCTION__ . ' called. Base ' . $base . ' Aggregate ' . $aggregate . ' Reorder: ' . $reorder, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
/* suppress warnings */
error_reporting(E_ALL);
/* install own error handler */
set_error_handler('aggregate_error_handler');
/* restore original error handler */
restore_error_handler();
}
/**
* reorder graph items
* @param int $base - base graph id
* @param int $aggregate - graph id of aggregate
* @param int $reorder - type of reordering
* @param int $graph_type - type of graph
*/
function aggregate_reorder_ds_graph($base, $graph_template_id, $aggregate, $reorder, $graph_type) {
global $config;
cacti_log(__FUNCTION__ . ' called. Base Graph ' . $base . ' Graph Template ' . $graph_template_id . ' Aggregate Graph ' . $aggregate . ' Reorder: ' . $reorder, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
/* suppress warnings */
error_reporting(E_ALL);
/* install own error handler */
set_error_handler('aggregate_error_handler');
$new_seq = 1;
$base_handlers = false;
// Get the order of items to re-arrange on the graph
if ($reorder == AGGREGATE_ORDER_NONE) {
restore_error_handler();
return true;
} elseif ($reorder == AGGREGATE_ORDER_DS_GRAPH) {
$sql_order = 'dtr.data_source_name, gti.sequence';
} elseif ($reorder == AGGREGATE_ORDER_BASE_GRAPH) {
$base_handler = true;
} else {
$sql_order = 'gtg.title_cache, gti.sequence';
}
if ($base_handler) {
/* get all different local_data_template_rrd_id's
* respecting the order that the aggregated graph has
*/
$sql_where = "WHERE gti.local_graph_id = $base" . ($base == 0 ? " AND gti.graph_template_id = $graph_template_id":'');
$sql_id_column = ($base == 0 ? 'id': 'local_data_template_rrd_id');
$sql = "SELECT DISTINCT dtr.$sql_id_column AS local_data_template_rrd_id
FROM data_template_rrd AS dtr
LEFT JOIN graph_templates_item AS gti
ON gti.task_item_id = dtr.id
$sql_where
ORDER BY gti.sequence";
$ds_ids = db_fetch_assoc($sql);
foreach($ds_ids as $ds_id) {
cacti_log('local_data_template_rrd_id: ' . $ds_id['local_data_template_rrd_id'], false, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
/* get all different task_item_id's
* respecting the order that the aggregated graph has
*/
$sql = "SELECT gti.id, gti.task_item_id
FROM graph_templates_item AS gti
LEFT JOIN data_template_rrd AS dtr
ON gti.task_item_id = dtr.id
WHERE gti.local_graph_id = $aggregate
AND dtr.local_data_template_rrd_id = " . $ds_id['local_data_template_rrd_id'] . "
ORDER BY sequence";
cacti_log(__FUNCTION__ . ' sql: ' . $sql, false, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
$items = db_fetch_assoc($sql);
foreach($items as $item) {
# accumulate the updates to avoid interfering the next loops
$updates[] = 'UPDATE graph_templates_item SET sequence = ' . $new_seq++ . ' WHERE id = ' . $item['id'];
}
}
} else {
$aggregate_graph_id = db_fetch_cell_prepared('SELECT id
FROM aggregate_graphs
WHERE local_graph_id = ?',
array($aggregate));
$list = array_rekey(
db_fetch_assoc_prepared("SELECT DISTINCT dtr.local_data_id
FROM data_template_rrd AS dtr
INNER JOIN graph_templates_item AS gti
ON gti.task_item_id = dtr.id
INNER JOIN aggregate_graphs_items AS agi
ON gti.local_graph_id = agi.local_graph_id
INNER JOIN graph_templates_graph AS gtg
ON gtg.local_graph_id = gti.local_graph_id
WHERE agi.aggregate_graph_id = ?
ORDER BY $sql_order",
array($aggregate_graph_id)),
'local_data_id', 'local_data_id'
);
if (cacti_sizeof($list)) {
$sql_order = 'FIELD(dtr.local_data_id, ' . implode(', ', $list) . '), gti.sequence';
}
$sql = "SELECT gti.id, gti.task_item_id, graph_type_id
FROM graph_templates_item AS gti
LEFT JOIN data_template_rrd AS dtr
ON gti.task_item_id = dtr.id
WHERE gti.local_graph_id = $aggregate
AND dtr.local_data_id IN (" . implode(', ', $list) . ")
ORDER BY $sql_order";
if ($reorder != AGGREGATE_ORDER_NONE && $reorder != AGGREGATE_ORDER_DS_GRAPH) {
$color_ids = db_fetch_assoc("SELECT color_id
FROM graph_templates_item AS gti
LEFT JOIN data_template_rrd AS dtr
ON gti.task_item_id = dtr.id
WHERE gti.local_graph_id = $aggregate
AND dtr.local_data_id IN (" . implode(', ', $list) . ")
ORDER BY gti.sequence");
} else {
$color_ids = array();
}
cacti_log(__FUNCTION__ . ' sql: ' . $sql, false, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
$items = db_fetch_assoc($sql);
$i = 0;
foreach($items as $item) {
$new_graph_type = aggregate_change_graph_type($i, $item['graph_type_id'], $graph_type);
if (isset($color_ids[$i])) {
$color_id = $color_ids[$i]['color_id'];
} else {
$color_id = '';
}
# accumulate the updates to avoid interfering the next loops
$updates[] = 'UPDATE graph_templates_item
SET sequence = ' . $new_seq . ",
graph_type_id = $new_graph_type " .
($color_id != '' ? ', color_id = ' . $color_id:'') . "
WHERE id = " . $item['id'];
$i++;
$new_seq++;
}
}
# now get all 'empty' local_data_template_rrd_id's
# = those graph items without associated data source (e.g. COMMENT)
$sql = "SELECT id
FROM graph_templates_item AS gti
WHERE gti.local_graph_id = $aggregate
AND gti.task_item_id = 0
ORDER BY sequence";
cacti_log($sql, false, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
$empty_task_items = db_fetch_assoc($sql);
# now add those 'empty' one's to the end
foreach($empty_task_items as $item) {
# accumulate the updates to avoid interfering the next loops
$updates[] = 'UPDATE graph_templates_item SET sequence = ' . $new_seq++ . ' WHERE id = ' . $item['id'];
}
# now run all updates
if (cacti_sizeof($updates)) {
foreach($updates as $update) {
cacti_log(__FUNCTION__ . ' update: ' . $update, false, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
db_execute($update);
}
}
/* restore original error handler */
restore_error_handler();
}
/**
* push_out_aggregates - update all aggregates based upon the template
* @param int aggregate_template_id - the aggregate template id
* @param int local_graph_id - the specific aggregate graph to update
* */
function push_out_aggregates($aggregate_template_id, $local_graph_id = 0) {
$attribs = array();
$attribs['skipped_items'] = array();
$attribs['total_items'] = array();
$attribs['color_templates'] = array();
$attribs['graph_item_types']= array();
$attribs['cdefs'] = array();
$member_graphs = array();
if ($local_graph_id > 0 && $aggregate_template_id == 0) {
$id = db_fetch_cell_prepared('SELECT id
FROM aggregate_graphs
WHERE local_graph_id = ?',
array($local_graph_id));
$attribs['graph_title'] = db_fetch_cell_prepared('SELECT title_format
FROM aggregate_graphs
WHERE id = ?',
array($id));
$attribs['skipped_items'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence
FROM aggregate_graphs_graph_item
WHERE item_skip="on"
AND aggregate_graph_id = ?
ORDER BY sequence',
array($id)),
'sequence', 'sequence'
);
$attribs['total_items'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence
FROM aggregate_graphs_graph_item
WHERE item_total="on"
AND aggregate_graph_id = ?
ORDER BY sequence',
array($id)),
'sequence', 'sequence'
);
$attribs['color_templates'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence, color_template
FROM aggregate_graphs_graph_item
WHERE color_template>=0
AND aggregate_graph_id = ?
ORDER BY sequence',
array($id)),
'sequence', 'color_template'
);
$attribs['graph_item_types'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence, graph_type_id
FROM aggregate_graphs_graph_item
WHERE t_graph_type_id="on"
AND aggregate_graph_id = ?
ORDER BY sequence',
array($id)),
'sequence', 'graph_type_id'
);
$attribs['cdefs'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence, cdef_id
FROM aggregate_graphs_graph_item
WHERE t_cdef_id="on"
AND aggregate_graph_id = ?
ORDER BY sequence',
array($id)),
'sequence', 'cdef_id'
);
$attribs['aggregate_graph_id'] = $aggregate_template_id;
$attribs['template_propogation'] = '';
$template_data = db_fetch_row_prepared('SELECT * FROM aggregate_graphs WHERE id = ?', array($id));
$attribs['graph_template_id'] = $template_data['graph_template_id'];
$attribs['gprint_prefix'] = $template_data['gprint_prefix'];
$attribs['gprint_format'] = $template_data['gprint_format'];
$attribs['graph_type'] = $template_data['graph_type'];
$attribs['total'] = $template_data['total'];
$attribs['total_type'] = $template_data['total_type'];
$attribs['total_prefix'] = $template_data['total_prefix'];
$attribs['reorder'] = $template_data['order_type'];
$attribs['item_no'] = db_fetch_cell_prepared('SELECT COUNT(*) FROM aggregate_graphs_graph_item WHERE aggregate_graph_id = ?', array($id));
} else {
$attribs['graph_title'] = '';
$attribs['skipped_items'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence
FROM aggregate_graph_templates_item
WHERE item_skip="on"
AND aggregate_template_id = ?
ORDER BY sequence',
array($aggregate_template_id)),
'sequence', 'sequence'
);
$attribs['total_items'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence
FROM aggregate_graph_templates_item
WHERE item_total="on"
AND aggregate_template_id = ?
ORDER BY sequence',
array($aggregate_template_id)),
'sequence', 'sequence'
);
$attribs['color_templates'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence, color_template
FROM aggregate_graph_templates_item
WHERE color_template>=0
AND aggregate_template_id = ?
ORDER BY sequence',
array($aggregate_template_id)),
'sequence', 'color_template'
);
$attribs['graph_item_types'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence, graph_type_id
FROM aggregate_graph_templates_item
WHERE t_graph_type_id="on"
AND aggregate_template_id = ?
ORDER BY sequence',
array($aggregate_template_id)),
'sequence', 'graph_type_id'
);
$attribs['cdefs'] = array_rekey(
db_fetch_assoc_prepared('SELECT sequence, cdef_id
FROM aggregate_graph_templates_item
WHERE t_cdef_id="on"
AND aggregate_template_id = ?
ORDER BY sequence',
array($aggregate_template_id)),
'sequence', 'cdef_id'
);
$attribs['aggregate_template_id'] = $aggregate_template_id;
$template_data = db_fetch_row_prepared("SELECT *
FROM aggregate_graph_templates
WHERE id = ?",
array($aggregate_template_id));
$attribs['template_propogation'] = 'on';
$attribs['graph_template_id'] = $template_data['graph_template_id'];
$attribs['gprint_prefix'] = $template_data['gprint_prefix'];
$attribs['gprint_format'] = $template_data['gprint_format'];
$attribs['graph_type'] = $template_data['graph_type'];
$attribs['total'] = $template_data['total'];
$attribs['total_type'] = $template_data['total_type'];
$attribs['total_prefix'] = $template_data['total_prefix'];
$attribs['reorder'] = $template_data['order_type'];
$attribs['item_no'] = db_fetch_cell_prepared('SELECT COUNT(*)
FROM aggregate_graph_templates_item
WHERE aggregate_template_id = ?',
array($aggregate_template_id));
}
$aggregate_graphs = array();
if ($local_graph_id > 0) {
$aggregate_graphs[] = $local_graph_id;
} else {
$graphs = db_fetch_assoc_prepared('SELECT local_graph_id
FROM aggregate_graphs
WHERE aggregate_template_id = ?',
array($aggregate_template_id));
if (cacti_sizeof($graphs)) {
foreach($graphs as $g) {
$aggregate_graphs[] = $g['local_graph_id'];
}
}
}
if (cacti_sizeof($aggregate_graphs)) {
foreach($aggregate_graphs as $ag) {
$member_graphs = array();
$graphs = db_fetch_assoc_prepared('SELECT DISTINCT agi.local_graph_id
FROM aggregate_graphs AS ag
INNER JOIN aggregate_graphs_items AS agi
ON ag.id=agi.aggregate_graph_id
WHERE ag.local_graph_id = ?',
array($ag));
/* remove all old graph items first */
if ($ag > 0) {
db_execute_prepared('DELETE FROM graph_templates_item
WHERE local_graph_id = ?',
array($ag));
}
if (cacti_sizeof($graphs)) {
foreach($graphs as $mg) {
$member_graphs[] = $mg['local_graph_id'];
}
aggregate_create_update($ag, $member_graphs, $attribs);
}
}
}
}
/**
* aggregate_create_update - either create or update an aggregate based on criteria
* @param int $local_graph_id - the local graph id of the existing graph. 0 if one needs to be created
* @param array $member_graphs - the graphs that will be included in this aggregate
* @return array $attribs - the attributes for this new graph
* */
function aggregate_create_update(&$local_graph_id, $member_graphs, $attribs) {
global $config;
cacti_log(__FUNCTION__ . ' called. Graph id: ' . $local_graph_id, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
/* suppress warnings */
error_reporting(E_ALL);
/* install own error handler */
set_error_handler('aggregate_error_handler');
if (cacti_sizeof($member_graphs)) {
$graph_title = (isset($attribs['graph_title']) ? $attribs['graph_title']:'');
$aggregate_template = (isset($attribs['aggregate_template_id']) ? $attribs['aggregate_template_id']:0);
$graph_template_id = (isset($attribs['graph_template_id']) ? $attribs['graph_template_id']:0);
$aggregate_graph = (isset($attribs['aggregate_graph_id']) ? $attribs['aggregate_graph_id']:0);
$template_propogation = (isset($attribs['template_propogation']) ? $attribs['template_propogation']:'on');
$gprint_prefix = (isset($attribs['gprint_prefix']) ? $attribs['gprint_prefix']:'');
$gprint_format = (isset($attribs['gprint_format']) ? $attribs['gprint_format']:'');
$_graph_type = (isset($attribs['graph_type']) ? $attribs['graph_type']:0);
$_total = (isset($attribs['total']) ? $attribs['total']:0);
$_total_type = (isset($attribs['total_type']) ? $attribs['total_type']:0);
$_total_prefix = (isset($attribs['total_prefix']) ? $attribs['total_prefix']:'');
$_reorder = (isset($attribs['reorder']) ? $attribs['reorder']:0);
$item_no = (isset($attribs['item_no']) ? $attribs['item_no']:0);
$color_templates = (is_array($attribs['color_templates']) ? $attribs['color_templates']:array());
$graph_item_types = (is_array($attribs['graph_item_types']) ? $attribs['graph_item_types']:array());
$cdefs = (is_array($attribs['cdefs']) ? $attribs['cdefs']:array());
$skipped_items = (is_array($attribs['skipped_items']) ? $attribs['skipped_items']:array());
$total_items = (is_array($attribs['total_items']) ? $attribs['total_items']:array());
$example_graph_id = 0;
/* save the aggregate information */
$save1 = array();
if ($local_graph_id == 0) {
# create new graph based on first graph selected
$local_graph_id = aggregate_graph_save($example_graph_id, $graph_template_id, $graph_title, $aggregate_template);
$save1['id'] = '';
$new_aggregate = true;
} else {
# update graph params of existing aggregate graph
$local_graph_id = aggregate_graph_save($local_graph_id, $graph_template_id, $graph_title, $aggregate_template);
$save1['id'] = db_fetch_cell_prepared('SELECT id
FROM aggregate_graphs
WHERE local_graph_id = ?',
array($local_graph_id));
$new_aggregate = false;
}
$save1['aggregate_template_id'] = $aggregate_template;
$save1['template_propogation'] = $template_propogation;
if (isset($graph_title)) {
$save1['title_format'] = $graph_title;
}
$save1['local_graph_id'] = $local_graph_id;
$save1['graph_template_id'] = $graph_template_id;
$save1['gprint_prefix'] = $gprint_prefix;
$save1['gprint_format'] = $gprint_format;
$save1['graph_type'] = $_graph_type;
$save1['total'] = $_total;
$save1['total_type'] = $_total_type;
$save1['total_prefix'] = $_total_prefix;
$save1['order_type'] = $_reorder;
$save1['user_id'] = $_SESSION['sess_user_id'];
$aggregate_graph_id = sql_save($save1, 'aggregate_graphs');
# sequence number of next graph item to be added, index starts at 1
$next_item_sequence = 1;
$j = 1; $i = 0;
/* remove all old graph items first */
if ($local_graph_id > 0) {
db_execute_prepared('DELETE FROM graph_templates_item
WHERE local_graph_id = ?',
array($local_graph_id));
}
/* now add the graphs one by one to the newly created graph
* program flow is governed by
* - totalling
* - new graph type: convert graph to e.g. AREA
*/
# loop for all selected graphs
foreach ($member_graphs as $graph_id) {
# insert all graph items of selected graph
# next items to be inserted have to be in sequence
$next_item_sequence = aggregate_graphs_insert_graph_items(
$local_graph_id,
$graph_id,
$graph_template_id,
$skipped_items,
$total_items,
$next_item_sequence,
$i,
$color_templates,
$graph_item_types,
$cdefs,
$_graph_type,
$gprint_prefix,
$gprint_format,
$_total,
'',
$member_graphs);
db_execute_prepared('REPLACE INTO aggregate_graphs_items
(aggregate_graph_id, local_graph_id, sequence)
VALUES (?, ?, ?)',
array($aggregate_graph_id, $graph_id, $j));
$j++; $i++;
}
cacti_log(__FUNCTION__ . ' all items inserted, next item seq: ' . $next_item_sequence . ' selGraph: ' . $i, true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
/* post processing for pure LINEx graphs
* if we convert to AREA/STACK, the function aggregate_graphs_insert_graph_items
* created a pure STACK graph (see comments in that function)
* so let's find out, if we have a pure STACK now ...
*/
if (aggregate_is_pure_stacked_graph($local_graph_id)) {
/* ... and convert to AREA */
aggregate_conditional_convert_graph_type($local_graph_id, GRAPH_ITEM_TYPE_STACK, GRAPH_ITEM_TYPE_AREA);
}
if (aggregate_is_stacked_graph($local_graph_id)) {
/* reorder graph items, if requested
* for STACKed graphs, reorder before adding totals */
aggregate_reorder_ds_graph(
$example_graph_id,
$graph_template_id,
$local_graph_id,
$_reorder,
$_graph_type);
}
$_orig_graph_type = $_graph_type;
// special code to add totalling graph items
switch ($_total) {
case AGGREGATE_TOTAL_NONE: # no totalling
// do NOT add any totalling items
break;
case AGGREGATE_TOTAL_ALL: # any totalling option was selected ...
$_graph_type = GRAPH_ITEM_TYPE_LINE1;
$cf_id = db_fetch_cell('SELECT consolidation_function_id
FROM graph_templates_item
WHERE color_id > 0' .
(cacti_sizeof($member_graphs) ? ' AND ' . array_to_sql_or($member_graphs, 'local_graph_id'):'') .
(cacti_sizeof($skipped_items) ? ' AND local_graph_id NOT IN(' . implode(',', $skipped_items) . ')':'') . '
ORDER BY sequence ASC
LIMIT 1');
// add an empty line before total items
db_execute_prepared("INSERT INTO graph_templates_item
(local_graph_id, graph_type_id, consolidation_function_id, text_format, value, hard_return, gprint_id, sequence)
VALUES (?, 1, ?, '', '', 'on', 2, ?)", array($local_graph_id, $cf_id, $next_item_sequence++));
case AGGREGATE_TOTAL_ONLY:
// use the prefix for totalling GPRINTs as given by the user
switch ($_total_type) {
case AGGREGATE_TOTAL_TYPE_SIMILAR:
case AGGREGATE_TOTAL_TYPE_ALL:
$gprint_prefix = $_total_prefix;
break;
}
// now skip all items, that are
// - explicitly marked as skipped (based on $skipped_items)
// - OR NOT marked as 'totalling' items
for ($k=1; $k<=$item_no; $k++) {
cacti_log(__FUNCTION__ . ' old skip: ' . (isset($skipped_items[$k]) ? $skipped_items[$k]:''), true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
// skip all items, that shall not be totalled
if (!isset($total_items[$k])) {
$skipped_items[$k] = $k;
}
cacti_log(__FUNCTION__ . ' new skip: ' . (isset($skipped_items[$k]) ? $skipped_items[$k]:''), true, 'AGGREGATE', POLLER_VERBOSITY_DEBUG);
}
// add the 'templating' graph to the new graph, honoring skipped, hr and color
aggregate_graphs_insert_graph_items(
$local_graph_id,
$example_graph_id,
$graph_template_id,
$skipped_items,
$total_items,
$next_item_sequence,
$i,
$color_templates,
$graph_item_types,
$cdefs,
$_graph_type, #TODO: user may choose LINEx instead of assuming LINE1
$gprint_prefix,
$gprint_format,
AGGREGATE_TOTAL_ALL, # now add the totalling line(s)
$_total_type,
$member_graphs);
// now pay attention to CDEFs
// next_item_sequence still points to the first totalling graph item
aggregate_cdef_totalling(
$local_graph_id,
$next_item_sequence,
$_total_type);
}
/* post processing for pure LINEx graphs
* if we convert to AREA/STACK, the function aggregate_graphs_insert_graph_items
* created a pure STACK graph (see comments in that function)
* so let's find out, if we have a pure STACK now ...
*/
if (aggregate_is_pure_stacked_graph($local_graph_id)) {
/* ... and convert to AREA */
aggregate_conditional_convert_graph_type($local_graph_id, GRAPH_ITEM_TYPE_STACK, GRAPH_ITEM_TYPE_AREA);
}
if (!aggregate_is_stacked_graph($local_graph_id)) {
/* reorder graph items, if requested
* for non-STACKed graphs, we want to reorder the totals as well */
aggregate_reorder_ds_graph(
$example_graph_id,
$graph_template_id,
$local_graph_id,
$_reorder,
$_graph_type);
}
// Handle stacked lines properly
aggregate_handle_stacked_lines($local_graph_id, $_orig_graph_type, $_total, $_total_type, $_total_prefix);
// Handle aggregate nth percentiles
if ($_total != AGGREGATE_TOTAL_NONE) {
aggregate_handle_ptile_type($member_graphs, $skipped_items, $local_graph_id, $_total, $_total_type);
}
}
/* restore original error handler */
restore_error_handler();
}
function aggregate_handle_ptile_type($member_graphs, $skipped_items, $local_graph_id, $_total, $_total_type) {
$special_comments = null;
$special_hrules = null;
$agg_info = db_fetch_row_prepared('SELECT *
FROM aggregate_graphs
WHERE local_graph_id = ?',
array($local_graph_id));
if (cacti_sizeof($agg_info)) {
$comments_hrules = db_fetch_assoc_prepared('SELECT *
FROM graph_templates_item
WHERE graph_type_id IN (?, ?)
AND graph_template_id = ?
AND local_graph_id = 0
AND (text_format != "" || value != "")
ORDER BY sequence ASC',
array(GRAPH_ITEM_TYPE_COMMENT, GRAPH_ITEM_TYPE_HRULE, $agg_info['graph_template_id']));
$graph_template_id = $agg_info['graph_template_id'];
} else {
if (cacti_sizeof($member_graphs)) {
$template_graph[] = $member_graphs[0];
} else {
$template_graph = array();
}
$comments_hrules = db_fetch_assoc('SELECT *
FROM graph_templates_item
WHERE graph_type_id IN(' . GRAPH_ITEM_TYPE_COMMENT . ',' . GRAPH_ITEM_TYPE_HRULE . ')' .
(cacti_sizeof($template_graph) ? ' AND ' . array_to_sql_or($template_graph, 'local_graph_id'):'') .
(cacti_sizeof($skipped_items) ? ' AND local_graph_id NOT IN(' . implode(',', $skipped_items) . ')':'') . '
AND (text_format != "" || value != "")
ORDER BY local_graph_id, sequence ASC');
if (cacti_sizeof($comments_hrules)) {
$graph_template_id = $comments_hrules[0]['graph_template_id'];
}
}
$next_item_sequence = db_fetch_cell_prepared('SELECT MAX(sequence)
FROM graph_templates_item
WHERE local_graph_id = ?',
array($local_graph_id));
if (cacti_sizeof($comments_hrules)) {
foreach ($comments_hrules as $item) {
switch($item['graph_type_id']) {
case GRAPH_ITEM_TYPE_COMMENT:
if (!isset($special_comments[$item['text_format'] . '|' . $item['value'] . '|' . $item['task_item_id']])) {
if (preg_match('/(:bits:|:bytes:)/', $item['text_format'])) {
$special_comments[$item['text_format'] . '|' . $item['value'] . '|' . $item['task_item_id']] = true;
$parts = explode('|', $item['text_format']);
if (isset($parts[1])) {
$pparts = explode(':', $parts[1]);
if (isset($pparts[3])) {
if ($_total_type == AGGREGATE_TOTAL_TYPE_ALL || $_total_type == AGGREGATE_TOTAL_TYPE_SIMILAR) {
// All so use sum functions
$pparts[3] = str_replace('current', 'aggregate_sum', $pparts[3]);
$pparts[3] = str_replace('max', 'aggregate_sum_peak', $pparts[3]);
} else {
// Similar to separate
$pparts[3] = str_replace('current', 'aggregate_current', $pparts[3]);
$pparts[3] = str_replace('max', 'aggregate_current_peak', $pparts[3]);
}
switch($pparts[3]) {
case 'current':
$new_ppart = 'current';
break;
case 'total':
$new_ppart = 'aggregate_sum';
break;
case 'max':
$new_ppart = 'max';
break;
case 'total_peak':
$new_ppart = 'total_peak';
break;
case 'all_max_current':
case 'all_max_peak':
case 'aggregate_max':
$new_ppart = 'aggregate_peak';
break;
case 'aggregate_sum':
case 'aggregate_sum_peak':
case 'aggregate_current':
case 'aggregate_current_peak':
case 'aggregate':
case 'aggregate_peak':
$new_ppart = $pparts[3];
break;
}
$pparts[3] = $new_ppart;
$parts[1] = implode(':', $pparts);
$item['text_format'] = implode('|', $parts);
}
}
db_execute_prepared("INSERT INTO graph_templates_item
(graph_template_id, local_graph_id, task_item_id, graph_type_id, consolidation_function_id, text_format, value, hard_return, gprint_id, sequence)
VALUES (?, ?, ?, ?, 1, ?, '', ?, 2, ?)", array(
$graph_template_id,
$local_graph_id,
$item['task_item_id'],
GRAPH_ITEM_TYPE_COMMENT,
$item['text_format'],
$item['hard_return'],
$next_item_sequence++
)
);
}
}
break;
case GRAPH_ITEM_TYPE_HRULE:
if (!isset($special_hrules[$item['text_format'] . '|' . $item['value'] . '|' . $item['task_item_id']])) {
if (preg_match('/(:bits:|:bytes:)/', $item['value'])) {
$special_hrules[$item['text_format'] . '|' . $item['value'] . '|' . $item['task_item_id']] = true;
$parts = explode('|', $item['value']);
if (isset($parts[1])) {
$pparts = explode(':', $parts[1]);
if (isset($pparts[3])) {
if ($_total_type == AGGREGATE_TOTAL_TYPE_ALL || $_total_type == AGGREGATE_TOTAL_TYPE_SIMILAR) {
// All so use sum functions
$pparts[3] = str_replace('current', 'aggregate_sum', $pparts[3]);
$pparts[3] = str_replace('max', 'aggregate_sum_peak', $pparts[3]);
} else {
// Similar to separate
$pparts[3] = str_replace('current', 'aggregate_current', $pparts[3]);
$pparts[3] = str_replace('max', 'aggregate_current_peak', $pparts[3]);
}
switch($pparts[3]) {
case 'current':
$new_ppart = 'current';
break;
case 'total':
$new_ppart = 'aggregate_sum';
break;
case 'max':
$new_ppart = 'max';
break;
case 'total_peak':
$new_ppart = 'total_peak';
break;
case 'all_max_current':
case 'all_max_peak':
case 'aggregate_max':
$new_ppart = 'aggregate_peak';
break;
case 'aggregate_peak':
case 'aggregate_sum':
case 'aggregate_sum_peak':
case 'aggregate_current':
case 'aggregate_current_peak':
case 'aggregate':
$new_ppart = $pparts[3];
break;
}
$pparts[3] = $new_ppart;
$parts[1] = implode(':', $pparts);
$item['value'] = implode('|', $parts);
}
}
// add an empty line before nth percentile for the first item only
if (cacti_sizeof($special_hrules) == 1) {
db_execute_prepared("INSERT INTO graph_templates_item
(graph_template_id, local_graph_id, graph_type_id, consolidation_function_id, text_format, value, hard_return, gprint_id, sequence)
VALUES (?, ?, 1, 1, '', '', 'on', 2, ?)", array($graph_template_id, $local_graph_id, $next_item_sequence++));
}
db_execute_prepared("INSERT INTO graph_templates_item
(graph_template_id, local_graph_id, task_item_id, graph_type_id, color_id, consolidation_function_id, text_format, value, hard_return, gprint_id, sequence)
VALUES (?, ?, ?, ?, ?, 1, ?, ?, '', 2, ?)", array(
$graph_template_id,
$local_graph_id,
$item['task_item_id'],
GRAPH_ITEM_TYPE_HRULE,
$item['color_id'],
$item['text_format'],
$item['value'],
$next_item_sequence++
)
);
}
}
break;
}
}
}
}
function aggregate_handle_stacked_lines($local_graph_id, $_orig_graph_type, $_total, $_total_type, $_total_prefix) {
// Handle the stacked line cases switch line widths
$width = '0.01';
$special_type = '';
$special_line = false;
switch ($_orig_graph_type) {
case AGGREGATE_GRAPH_TYPE_LINE1_STACK:
$width = '1.00';
$special_type = GRAPH_ITEM_TYPE_LINE1;
$special_line = true;
break;
case AGGREGATE_GRAPH_TYPE_LINE2_STACK:
$width = '2.00';
$special_type = GRAPH_ITEM_TYPE_LINE2;
$special_line = true;
break;
case AGGREGATE_GRAPH_TYPE_LINE3_STACK:
$width = '3.00';
$special_type = GRAPH_ITEM_TYPE_LINE3;
$special_line = true;
break;
}
if ($special_line) {
if ($_total == AGGREGATE_TOTAL_NONE) {
db_execute_prepared('UPDATE graph_templates_item
SET line_width = ?
WHERE local_graph_id = ?
AND graph_type_id IN (?)',
array($width, $local_graph_id, GRAPH_ITEM_TYPE_LINESTACK));
}
// Handle special case total prefix
db_execute_prepared('UPDATE graph_templates_item
SET graph_type_id = ?
WHERE local_graph_id = ?
AND text_format = ?',
array($special_type, $local_graph_id, $_total_prefix));
if ($_total == AGGREGATE_TOTAL_ALL) {
db_execute_prepared('UPDATE graph_templates_item
SET graph_type_id = ?, line_width = "0.01"
WHERE local_graph_id = ?
AND graph_type_id = ?
AND text_format != ?',
array(
GRAPH_ITEM_TYPE_LINESTACK,
$local_graph_id,
$special_type,
$_total_prefix
)
);
}
}
/* handle any missing lines */
db_execute_prepared('UPDATE graph_templates_item
SET line_width="0.01"
WHERE graph_type_id = ?
AND line_width="0.00"
AND local_graph_id = ?',
array(GRAPH_ITEM_TYPE_LINESTACK, $local_graph_id));
}
function aggregate_get_data_sources(&$graph_array, &$data_sources, &$graph_template) {
/* find out which (if any) data sources are being used by this graph, so we can tell the user */
if (isset($graph_array)) {
# fetch all data sources for all selected graphs
$data_sources = db_fetch_assoc('SELECT
data_template_data.local_data_id,
data_template_data.name_cache
FROM (data_template_rrd,data_template_data,graph_templates_item)
WHERE graph_templates_item.task_item_id=data_template_rrd.id
AND data_template_rrd.local_data_id=data_template_data.local_data_id
AND ' . array_to_sql_or($graph_array, 'graph_templates_item.local_graph_id') . '
AND data_template_data.local_data_id>0
GROUP BY data_template_data.local_data_id
ORDER BY data_template_data.name_cache');
# verify, that only a single graph template is used, else
# aggregate will look funny
$sql = 'SELECT DISTINCT graph_templates.id, graph_templates.name
FROM graph_local
LEFT JOIN graph_templates ON (graph_local.graph_template_id=graph_templates.id)
WHERE (' . array_to_sql_or($graph_array, 'graph_local.id') . ')
AND graph_local.graph_template_id>0';
$used_graph_templates = db_fetch_assoc($sql);
if (cacti_sizeof($used_graph_templates) > 1) {
# this is invalid! STOP
print "<tr><td colspan='2' class='textArea'>
<p>" . __('The Graphs chosen for the Aggregate Graph below represent Graphs from multiple Graph Templates. Aggregate does not support creating Aggregate Graphs from multiple Graph Templates.') . "</p>";
print "<p>" . __('Press \'Return\' to return and select different Graphs') . "</p>";
print "<ul>";
foreach ($used_graph_templates as $graph_template) {
print '<li>' . html_escape($graph_template['name']) . "</li>";
}
print '</ul></td></tr>';
?>
<script type='text/javascript'>
$().ready(function() {
$('#continue').hide();
$('#cancel').attr('value', '<?php print __esc('Return');?>');
});
</script>
<?php
} elseif (cacti_sizeof($used_graph_templates) < 1) {
/* selected graphs do not use templates */
print "<tr><td colspan='2' class='textArea'>
<p>" . __('The Graphs chosen for the Aggregate Graph do not use Graph Templates. Aggregate does not support creating Aggregate Graphs from non-templated graphs.') . "</p>";
print "<p>" . __('Press \'Return\' to return and select different Graphs') . "</p>";
print '</td></tr>';
?>
<script type='text/javascript'>
$(function() {
$('#continue').hide();
$('#cancel').attr('value', '<?php print __esc('Return');?>');
});
</script>
<?php
} else {
$graph_template = $used_graph_templates[0]['id'];
return true;
}
}
return false;
}
/**
* draw_aggregate_template_graph_items_list - draw graph item list
*
* @param int $_graph_template_id - id of the graph for which the items shall be listed
# @param int $_object - either the aggregate or aggregate_template
*/
function draw_aggregate_graph_items_list($_graph_id = 0, $_graph_template_id = 0, $_object = array()) {
global $config;
/**
* @var array $consolidation_functions
* @var array $graph_item_types
*/
include($config['include_path'] . '/global_arrays.php');
cacti_log(__FUNCTION__ . ' called. graph: ' . $_graph_id . ' template: ' . $_graph_template_id, true, 'AGGREGATE', POLLER_VERBOSITY_DEVDBG);
if ($_graph_id == 0 && $_graph_template_id == 0) {
return null;
}
/* fetch graph items */
if ($_graph_id == 0) {
$item_list_where = "gti.local_graph_id=0 AND graph_template_id=$_graph_template_id ";
}
if ($_graph_template_id == 0) {
$item_list_where = "gti.local_graph_id=$_graph_id ";
}
$item_list = db_fetch_assoc("SELECT
gti.id, gti.text_format, gti.value, gti.hard_return, gti.graph_type_id,
gti.consolidation_function_id, cdef.name as cdef_name, colors.hex
FROM graph_templates_item AS gti
LEFT JOIN cdef ON (gti.cdef_id=cdef.id)
LEFT JOIN colors ON (gti.color_id=colors.id)
WHERE $item_list_where
ORDER BY gti.sequence");
/* fetch color templates */
$color_templates = db_fetch_assoc('SELECT color_template_id, name FROM color_templates ORDER BY name');
$current_vals = array();
$is_edit = false;
$is_templated = false;
if (cacti_sizeof($_object) > 0 && $_object['id'] > 0) {
/* drawing items for existing aggregate graph/template */
$is_edit =true;
/* fetch existing item values */
if (isset($_object['aggregate_template_id']) && $_object['aggregate_template_id'] == 0) {
/* this is aggregate graph with no aggregate template */
$current_vals = db_fetch_assoc_prepared('SELECT *
FROM aggregate_graphs_graph_item
WHERE aggregate_graph_id = ?',
array($_object['id']));
$item_editor_link_param = 'aggregate_graph_id='.$_object['id'].'&local_graph_id='.$_object['local_graph_id'];
$is_templated = false;
} elseif (isset($_object['aggregate_template_id'])) {
/* this is aggregate graph from aggregate template */
$current_vals = db_fetch_assoc_prepared('SELECT *
FROM aggregate_graph_templates_item
WHERE aggregate_template_id = ?',
array($_object['aggregate_template_id']));
$item_editor_link_param = 'aggregate_template_id='.$_object['aggregate_template_id'];
$is_templated = true;
} else {
/* this is aggregate template */
$current_vals = db_fetch_assoc_prepared('SELECT *
FROM aggregate_graph_templates_item
WHERE aggregate_template_id = ?',
array($_object['id']));
$item_editor_link_param = 'aggregate_template_id='.$_object['id'];
$is_templated = true;
}
/* key results on item id */
$current_vals = array_rekey(
$current_vals,
'graph_templates_item_id',
array('color_template', 'item_skip', 'item_total', 't_graph_type_id', 'graph_type_id')
);
}
# draw list of graph items
html_start_box(($is_templated ? __('Graph Template Items'):__('Graph Items')), '100%', '', '3', 'center', '');
# print column header
print "<tr class='tableHeader'>";
DrawMatrixHeaderItem(__('Graph Item'), '', 1);
DrawMatrixHeaderItem(__('Data Source'), '',1);
DrawMatrixHeaderItem(__('Graph Item Type'), '', 1);
DrawMatrixHeaderItem(__('CF Type'), '', 1);
DrawMatrixHeaderItem(__('Item Color'), '', 2);
DrawMatrixHeaderItem(__('Color Template'), '', 1);
DrawMatrixHeaderItem(__('Skip'), '', 1);
DrawMatrixHeaderItem(__('Total'), '', 1);
print '</tr>';
$group_counter = 0; $_graph_type_name = ''; $i = 0;
if (cacti_sizeof($item_list)) {
foreach ($item_list as $item) {
/* graph grouping display logic */
$this_row_style = '';
$use_custom_class = false;
$hard_return = '';
$matrix_title = '';
if (!preg_match('/(GPRINT|TEXTALIGN|HRULE|VRULE|TICK)/', $graph_item_types[$item['graph_type_id']])) {
$this_row_style = 'font-weight: bold;';
$use_custom_class = true;
if ($group_counter % 2 == 0) {
$customClass = 'graphItem';
} else {
$customClass = 'graphItemAlternate';
}
$group_counter++;
}
/* column "Data Source" */
$_graph_type_name = $graph_item_types[$item['graph_type_id']];
$force_skip = false;
switch (true) {
case preg_match('/(TEXTALIGN)/', $_graph_type_name):
$matrix_title = 'TEXTALIGN: ' . ucfirst($item['textalign']);
break;
case preg_match('/(TICK)/', $_graph_type_name):
$matrix_title = '(' . $item['data_source_name'] . '): ' . $item['text_format'];
break;
case preg_match('/(AREA|STACK|GPRINT|LINE[123])/', $_graph_type_name):
$matrix_title = $item['text_format'];
break;
case preg_match('/(HRULE)/', $_graph_type_name):
$matrix_title = 'HRULE: ' . $item['value'];
if (preg_match('/(:bits:|:bytes:|\|sum:)/', $item['value'])) {
$force_skip = false;
} else {
$force_skip = true;
}
break;
case preg_match('/(VRULE)/', $_graph_type_name):
$force_skip = true;
$matrix_title = 'VRULE: ' . $item['value'];
break;
case preg_match('/(COMMENT)/', $_graph_type_name):
$matrix_title = 'COMMENT: ' . $item['text_format'];
if (preg_match('/(:bits:|:bytes:|\|sum:)/', $item['text_format'])) {
$force_skip = false;
} elseif ($item['text_format'] != '') {
$force_skip = false;
} else {
$force_skip = true;
}
break;
}
/* values can be overridden in aggregate graph/template */
if ($is_edit && isset($current_vals[$item['id']]['t_graph_type_id']) && $current_vals[$item['id']]['t_graph_type_id'] == 'on') {
$item['graph_type_id'] = $current_vals[$item['id']]['graph_type_id'];
}
/* alternating row color */
if ($use_custom_class == false) {
form_alternate_row();
} else {
print "<tr class='tableRowGraph $customClass'>";
}
/* column 'Graph Item' */
print '<td title="' . __esc('Aggregate Items are not modifiable') . '">';
if ($is_edit == false) {
/* no existing aggregate graph/template */
print __('Item # %d', ($i+1));
} elseif (isset($_object['template_propogation']) && $_object['template_propogation']) {
/* existing aggregate graph with template propagation enabled */
print __('Item # %d', ($i+1));
} else {
/* existing aggregate template or graph with no templating */
/* create a link to graph item editor */
print '<span title="' . __esc('Aggregate Items are not editable') . '">' . __('Item # %d', ($i+1)) . '</span>';
}
print "</td>";
if ($item['hard_return'] == 'on') {
$hard_return = '<strong><span style="color:#FF0000;"><HR></span></strong>';
}
print "<td style='$this_row_style'>" . html_escape($matrix_title) . $hard_return . "</td>";
/* column 'Graph Item Type' */
print "<td style='$this_row_style'>" . $graph_item_types[$item['graph_type_id']] . "</td>";
/* column 'CF Type' */
print "<td style='$this_row_style'>" . $consolidation_functions[$item['consolidation_function_id']] . "</td>";
/* column 'Item Color' */
print "<td style='width:1%;" . ((!empty($item['hex'])) ? 'background-color:#' . $item['hex'] . ";'" : "'") . "> </td>";
print "<td style='$this_row_style'>" . $item['hex'] . "</td>";
/* column 'Color Template' */
print '<td>';
if (!empty($item['hex'])) {
print "<select id='agg_color_" . $item['id'] ."' name='agg_color_" . $item['id'] ."'>";
print "<option value='0' selected>None</option>";
html_create_list($color_templates, "name", "color_template_id", ($is_edit && isset($current_vals[$item['id']]['color_template']) ? $current_vals[$item['id']]['color_template']:''));
print "</select>";
}
print '</td>';
/* column "Skip" */
if (!$force_skip) {
print "<td style='width:1%;text-align:center;'>";
print "<input class='checkbox' id='agg_skip_" . $item['id'] . "' type='checkbox' name='agg_skip_" . $item['id'] . "' title='" . html_escape($item['text_format']) . "' " . ($is_edit && (!isset($current_vals[$item['id']]['item_total']) || (isset($current_vals[$item['id']]['item_skip']) && $current_vals[$item['id']]['item_skip'] == 'on')) ? 'checked':'') . "><label class='formCheckboxLabel' for='agg_skip_" . $item['id'] . "'>";
print '</td>';
/* column 'Total' */
print "<td style='width:1%;text-align:center;'>";
print "<input class='checkbox' id='agg_total_" . ($item['id']) . "' type='checkbox' name='agg_total_" . ($item['id']) . "' title='" . html_escape($item['text_format']) . "' " . ($is_edit && isset($current_vals[$item['id']]['item_total']) && $current_vals[$item['id']]['item_total'] == 'on' ? 'checked':'') . "><label class='formCheckboxLabel' for='agg_total_" . $item['id'] . "'>";
print '</td>';
} else {
print "<td style='width:1%;text-align:center;'><input class='checkbox' id='dummy_" . $item['id'] . "' disabled='disabled' type='checkbox' name='dummy_" . $item['id'] . "'" . ($is_edit ? 'checked':'') . '></td>';
print "<td style='width:1%;text-align:center;'><input class='checkbox' id='dummy1_" . $item['id'] . "' disabled='disabled' type='checkbox' name='dummy1_" . $item['id'] . "'>";
print "<input style='display:none;' class='checkbox' id='agg_skip_" . $item['id'] . "' type='checkbox' name='agg_skip_" . $item['id'] . "' title='" . html_escape($item['text_format']) . "' " . ($is_edit ? 'checked':'') . "><label class='formCheckboxLabel' for='agg_skip_" . $item['id'] . "'>";
print "<input style='display:none;' class='checkbox' id='agg_total_" . ($item['id']) . "' type='checkbox' name='agg_total_" . ($item['id']) . "' title='" . html_escape($item['text_format']) . "'><label class='formCheckboxLabel' for='agg_total_" . ($item['id']) . "'></label></td>";
}
print '</tr>';
$i++;
}
} else {
print "<tr><td colspan='7'><em>" . __('No Items') . "</em></td></tr>";
}
html_end_box();
form_hidden_box('item_no', cacti_sizeof($item_list), cacti_sizeof($item_list));
}
/**
* draw graph configuration form so user can override some graph template parameters
*
* @param int $aggregate_template_id - aggregate graph template being edited
* @param int $graph_template_id - graph template this aggregate template is based on
*/
function draw_aggregate_template_graph_config($aggregate_template_id, $graph_template_id) {
global $struct_graph;
html_start_box(__('Graph Configuration'), '100%', true, '3', 'center', '');
$aggregate_templates_graph = db_fetch_row_prepared('SELECT *
FROM aggregate_graph_templates_graph
WHERE aggregate_template_id = ?',
array($aggregate_template_id));
$graph_templates_graph = db_fetch_row_prepared('SELECT *
FROM graph_templates_graph
WHERE graph_template_id = ?',
array($graph_template_id));
$form_array = array();
foreach ($struct_graph as $field_name => $field_array) {
if ($field_name == 'title')
continue;
if ($field_array['method'] != 'spacer') {
$form_array += array($field_name => $struct_graph[$field_name]);
/* value from graph template or aggregate graph template
(based on value of t_$field_name of aggregate_template_graph) */
if (cacti_sizeof($aggregate_templates_graph) && $aggregate_templates_graph['t_'.$field_name] == 'on') {
$value = $aggregate_templates_graph[$field_name];
} else {
$value = $graph_templates_graph[$field_name];
}
$form_array[$field_name]['value'] = $value;
$form_array[$field_name]['sub_checkbox'] = array(
'name' => 't_' . $field_name,
'friendly_name' => __('Override this Value'). '<br>',
'value' => (cacti_sizeof($aggregate_templates_graph) ? $aggregate_templates_graph['t_' . $field_name] : ''),
'on_change' => 'toggleFieldEnabled(this.id);'
);
} else {
$form_array += array($field_name => $struct_graph[$field_name]);
}
}
draw_edit_form(
array(
'config' => array('no_form_tag' => true),
'fields' => $form_array
)
);
html_end_box(false, true);
/* some javascript do dynamically disable non-overridden fields */
?>
<script type='text/javascript'>
$(function() {
setFieldsDisabled();
});
// disable all items with sub-checkboxes except
// where sub-checkbox checked
function setFieldsDisabled() {
$('input[id^="t_"]').each(function() {
if (!$(this).is(':checked')) {
var fieldId = $(this).attr('id').substr(2);
$('#'+fieldId).prop('disabled', true);
$('#'+fieldId).addClass('ui-state-disabled');
if ($('#'+fieldId).selectmenu('instance')) {
$('#'+fieldId).selectmenu('disable');
}
}
});
}
// enable or disable form field based on state of corresponding checkbox
function toggleFieldEnabled(toggleFieldId) {
fieldId = toggleFieldId.substr(2);
if ($('#'+fieldId).hasClass('ui-state-disabled')) {
$('#'+fieldId).prop('disabled', false).removeClass('ui-state-disabled');
if ($('#'+fieldId).selectmenu('instance')) {
$('#'+fieldId).selectmenu('enable');
}
} else {
$('#'+fieldId).prop('disabled', true).addClass('ui-state-disabled');
if ($('#'+fieldId).selectmenu('instance')) {
$('#'+fieldId).selectmenu('disable');
}
}
}
</script>
<?php
}
|