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
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 Zabbix SIA
**
** 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.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* Class containing methods for operations with correlations.
*/
class CCorrelation extends CApiService {
protected $tableName = 'correlation';
protected $tableAlias = 'c';
protected $sortColumns = ['correlationid', 'name', 'status'];
/**
* Set correlation default options in addition to global options.
*/
public function __construct() {
parent::__construct();
$this->getOptions = array_merge($this->getOptions, [
'selectFilter' => null,
'selectOperations' => null,
'correlationids' => null,
'editable' => false,
'sortfield' => '',
'sortorder' => ''
]);
}
/**
* Get correlation data.
*
* @param array $options
*
* @return array
*/
public function get($options = []) {
$options = zbx_array_merge($this->getOptions, $options);
if ($options['editable'] && self::$userData['type'] != USER_TYPE_SUPER_ADMIN) {
return ($options['countOutput'] && !$options['groupCount']) ? 0 : [];
}
$res = DBselect($this->createSelectQuery($this->tableName(), $options), $options['limit']);
$result = [];
while ($row = DBfetch($res)) {
if ($options['countOutput']) {
if ($options['groupCount']) {
$result[] = $row;
}
else {
$result = $row['rowscount'];
}
}
else {
$result[$row[$this->pk()]] = $row;
}
}
if ($options['countOutput']) {
return $result;
}
if ($result) {
$result = $this->addRelatedObjects($options, $result);
foreach ($result as &$correlation) {
// Unset the fields that are returned in the filter.
unset($correlation['formula'], $correlation['evaltype']);
if ($options['selectFilter'] !== null) {
$filter = $this->unsetExtraFields(
[$correlation['filter']],
['conditions', 'formula', 'evaltype'],
$options['selectFilter']
);
$filter = reset($filter);
if (array_key_exists('conditions', $filter)) {
foreach ($filter['conditions'] as &$condition) {
unset($condition['correlationid'], $condition['corr_conditionid']);
}
unset($condition);
}
$correlation['filter'] = $filter;
}
}
unset($correlation);
}
// removing keys (hash -> array)
if (!$options['preservekeys']) {
$result = zbx_cleanHashes($result);
}
return $result;
}
/**
* Add correlations.
*
* @param array $correlations An array of correlations.
* @param string $correlations[]['name'] Correlation name.
* @param string $correlations[]['description'] Correlation description (optional).
* @param int $correlations[]['status'] Correlation status (optional).
* Possible values are:
* 0 - ZBX_CORRELATION_ENABLED;
* 1 - ZBX_CORRELATION_DISABLED.
* @param array $correlations[]['filter'] Correlation filter that contains evaluation
* method, formula and conditions.
* @param int $correlations[]['filter']['evaltype'] Correlation condition evaluation method.
* Possible values are:
* 0 - CONDITION_EVAL_TYPE_AND_OR;
* 1 - CONDITION_EVAL_TYPE_AND;
* 2 - CONDITION_EVAL_TYPE_OR;
* 3 - CONDITION_EVAL_TYPE_EXPRESSION.
* @param string $correlations[]['filter']['formula'] User-defined expression to be used for
* evaluating conditions of filters with a
* custom expression. Optional, but required
* when evaluation method is:
* 3 - CONDITION_EVAL_TYPE_EXPRESSION.
* @param array $correlations[]['filter']['conditions'] An array of correlation conditions.
* @param int $correlations[]['filter']['conditions'][]['type'] Condition type.
* Possible values are:
* 0 - ZBX_CORR_CONDITION_OLD_EVENT_TAG;
* 1 - ZBX_CORR_CONDITION_NEW_EVENT_TAG;
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP;
* 3 - ZBX_CORR_CONDITION_EVENT_TAG_PAIR;
* 4 - ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE;
* 5 - ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE.
* @param string $correlations[]['filter']['conditions'][]['formulaid'] Condition formula ID. Optional, but required
* when evaluation method is:
* 3 - CONDITION_EVAL_TYPE_EXPRESSION.
* @param string $correlations[]['filter']['conditions'][]['tag'] Correlation condition tag.
* @param int $correlations[]['filter']['conditions'][]['operator'] Correlation condition operator. Optional,
* but required when "type" is one of the following:
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP;
* 4 - ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE;
* 5 - ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE.
* Possible values depend on type:
* for type ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP:
* 0 - CONDITION_OPERATOR_EQUAL
* 1 - CONDITION_OPERATOR_NOT_EQUAL
* for types ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE
* or ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE:
* 0 - CONDITION_OPERATOR_EQUAL;
* 1 - CONDITION_OPERATOR_NOT_EQUAL;
* 2 - CONDITION_OPERATOR_LIKE;
* 3 - CONDITION_OPERATOR_NOT_LIKE.
* @param string $correlations[]['filter']['conditions'][]['groupid'] Correlation host group ID. Optional, but
* required when "type" is:
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP.
* @param string $correlations[]['filter']['conditions'][]['newtag'] Correlation condition new (current) tag.
* @param string $correlations[]['filter']['conditions'][]['oldtag'] Correlation condition old (target/matching)
* tag.
* @param string $correlations[]['filter']['conditions'][]['value'] Correlation condition tag value (optional).
* @param array $correlations[]['operations'] An array of correlation operations.
* @param int $correlations[]['operations'][]['type'] Correlation operation type.
* Possible values are:
* 0 - ZBX_CORR_OPERATION_CLOSE_OLD;
* 1 - ZBX_CORR_OPERATION_CLOSE_NEW.
*
* @return array
*/
public function create($correlations) {
$correlations = zbx_toArray($correlations);
$this->validateCreate($correlations);
foreach ($correlations as &$correlation) {
$correlation['evaltype'] = $correlation['filter']['evaltype'];
unset($correlation['formula']);
}
unset($correlation);
// Insert correlations into DB, get back array with new correlation IDs.
$correlations = DB::save('correlation', $correlations);
$correlations = zbx_toHash($correlations, 'correlationid');
$conditions_to_create = [];
$operations_to_create = [];
// Collect conditions and operations to be created and set appropriate correlation ID.
foreach ($correlations as $correlationid => &$correlation) {
foreach ($correlation['filter']['conditions'] as $condition) {
$condition['correlationid'] = $correlationid;
$conditions_to_create[] = $condition;
}
foreach ($correlation['operations'] as $operation) {
$operation['correlationid'] = $correlationid;
$operations_to_create[] = $operation;
}
}
unset($correlation);
$conditions = $this->addConditions($conditions_to_create);
// Group back created correlation conditions by correlation ID to be used for updating correlation formula.
$conditions_for_correlations = [];
foreach ($conditions as $condition) {
$conditions_for_correlations[$condition['correlationid']][$condition['corr_conditionid']] = $condition;
}
// Update "formula" field if evaluation method is a custom expression.
foreach ($correlations as $correlationid => $correlation) {
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
$this->updateFormula($correlationid, $correlation['filter']['formula'],
$conditions_for_correlations[$correlationid]
);
}
}
DB::save('corr_operation', $operations_to_create);
return ['correlationids' => array_keys($correlations)];
}
/**
* Update correlations.
*
* @param array $correlations An array of correlations.
* @param string $correlations[]['name'] Correlation name (optional).
* @param string $correlations[]['description'] Correlation description (optional).
* @param int $correlations[]['status'] Correlation status (optional).
* Possible values are:
* 0 - ZBX_CORRELATION_ENABLED;
* 1 - ZBX_CORRELATION_DISABLED.
* @param array $correlations[]['filter'] Correlation filter that contains evaluation
* method, formula and conditions.
* @param int $correlations[]['filter']['evaltype'] Correlation condition evaluation
* method (optional).
* Possible values are:
* 0 - CONDITION_EVAL_TYPE_AND_OR;
* 1 - CONDITION_EVAL_TYPE_AND;
* 2 - CONDITION_EVAL_TYPE_OR;
* 3 - CONDITION_EVAL_TYPE_EXPRESSION.
* @param string $correlations[]['filter']['formula'] User-defined expression to be used for
* evaluating conditions of filters with a
* custom expression. Optional, but required
* when evaluation method is changed to
* CONDITION_EVAL_TYPE_EXPRESSION (or remains the same)
* and new conditions are set.
* @param array $correlations[]['filter']['conditions'] An array of correlation conditions (optional).
* @param int $correlations[]['filter']['conditions'][]['type'] Condition type. Optional, but required when
* new conditions are set.
* Possible values are:
* 0 - ZBX_CORR_CONDITION_OLD_EVENT_TAG;
* 1 - ZBX_CORR_CONDITION_NEW_EVENT_TAG;
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP;
* 3 - ZBX_CORR_CONDITION_EVENT_TAG_PAIR;
* 4 - ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE;
* 5 - ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE.
* @param string $correlations[]['filter']['conditions'][]['formulaid'] Condition formula ID. Optional, but required
* when evaluation method is changed to
* CONDITION_EVAL_TYPE_EXPRESSION (or remains the same)
* and new conditions are set.
* @param string $correlations[]['filter']['conditions'][]['tag'] Correlation condition tag.
* @param int $correlations[]['filter']['conditions'][]['operator'] Correlation condition operator. Optional,
* but required when "type" is changed to one
* of the following:
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP;
* 4 - ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE;
* 5 - ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE.
* Possible values depend on type:
* for type ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP:
* 0 - CONDITION_OPERATOR_EQUAL
* 1 - CONDITION_OPERATOR_NOT_EQUAL
* for types ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE
* or ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE:
* 0 - CONDITION_OPERATOR_EQUAL;
* 1 - CONDITION_OPERATOR_NOT_EQUAL;
* 2 - CONDITION_OPERATOR_LIKE;
* 3 - CONDITION_OPERATOR_NOT_LIKE.
* @param string $correlations[]['filter']['conditions'][]['groupid'] Correlation host group ID. Optional, but
* required when "type" is changed to:
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP.
* @param string $correlations[]['filter']['conditions'][]['newtag'] Correlation condition new (current) tag.
* @param string $correlations[]['filter']['conditions'][]['oldtag'] Correlation condition old (target/matching)
* tag.
* @param string $correlations[]['filter']['conditions'][]['value'] Correlation condition tag value (optional).
* @param array $correlations[]['operations'] An array of correlation operations (optional).
* @param int $correlations[]['operations'][]['type'] Correlation operation type (optional).
* Possible values are:
* 0 - ZBX_CORR_OPERATION_CLOSE_OLD;
* 1 - ZBX_CORR_OPERATION_CLOSE_NEW.
*
* @return array
*/
public function update($correlations) {
$correlations = zbx_toArray($correlations);
$db_correlations = [];
$this->validateUpdate($correlations, $db_correlations);
$correlations_to_update = [];
$conditions_to_create = [];
$conditions_to_delete = [];
$operations_to_create = [];
$operations_to_delete = [];
foreach ($correlations as $correlation) {
$correlationid = $correlation['correlationid'];
unset($correlation['evaltype'], $correlation['formula'], $correlation['correlationid']);
$db_correlation = $db_correlations[$correlationid];
// Remove fields that have not been changed for correlations.
if (array_key_exists('name', $correlation) && $correlation['name'] === $db_correlation['name']) {
unset($correlation['name']);
}
if (array_key_exists('description', $correlation)
&& $correlation['description'] === $db_correlation['description']) {
unset($correlation['description']);
}
if (array_key_exists('status', $correlation) && $correlation['status'] == $db_correlation['status']) {
unset($correlation['status']);
}
$evaltype_changed = false;
// If the filter is set, something might have changed.
if (array_key_exists('filter', $correlation)) {
// Delete old correlation conditions and create new conditions.
if (array_key_exists('conditions', $correlation['filter'])) {
$conditions_to_delete[$correlationid] = true;
foreach ($correlation['filter']['conditions'] as $condition) {
$condition['correlationid'] = $correlationid;
$conditions_to_create[] = $condition;
}
}
// Check if evaltype has changed.
if (array_key_exists('evaltype', $correlation['filter'])) {
if ($correlation['filter']['evaltype'] != $db_correlation['filter']['evaltype']) {
// Clear formula field evaluation method is changed and no longer a custom experssion.
$correlation['evaltype'] = $correlation['filter']['evaltype'];
if ($correlation['evaltype'] != CONDITION_EVAL_TYPE_EXPRESSION) {
$correlation['formula'] = '';
}
}
}
}
// Delete old correlation operations and create new operations.
if (array_key_exists('operations', $correlation)) {
$operations_to_delete[$correlationid] = true;
foreach ($correlation['operations'] as $operation) {
$operation['correlationid'] = $correlationid;
$operations_to_create[] = $operation;
}
}
// Add values only if something is set for update.
if (array_key_exists('name', $correlation)
|| array_key_exists('description', $correlation)
|| array_key_exists('status', $correlation)
|| array_key_exists('evaltype', $correlation)) {
$correlations_to_update[] = [
'values' => $correlation,
'where' => ['correlationid' => $correlationid]
];
}
}
// Update correlations.
if ($correlations_to_update) {
DB::update('correlation', $correlations_to_update);
}
// Update conditions. Delete the old ones and create new ones.
if ($conditions_to_delete) {
DB::delete('corr_condition', ['correlationid' => array_keys($conditions_to_delete)]);
}
if ($conditions_to_create) {
$conditions = $this->addConditions($conditions_to_create);
// Group back created correlation conditions by correlation ID to be used for updating correlation formula.
$conditions_for_correlations = [];
foreach ($conditions as $condition) {
$conditions_for_correlations[$condition['correlationid']][$condition['corr_conditionid']] = $condition;
}
// Update "formula" field if evaluation method is a custom expression.
foreach ($correlations as $correlation) {
if (array_key_exists('filter', $correlation)) {
$db_correlation = $db_correlations[$correlation['correlationid']];
// Check if evaluation method has changed.
if (array_key_exists('evaltype', $correlation['filter'])) {
if ($correlation['filter']['evaltype'] != $db_correlation['filter']['evaltype']) {
// The new evaluation method will be saved to DB.
$correlation['evaltype'] = $correlation['filter']['evaltype'];
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
// When evaluation method has changed, update the custom formula.
$this->updateFormula($correlation['correlationid'], $correlation['filter']['formula'],
$conditions_for_correlations[$correlation['correlationid']]
);
}
}
else {
/*
* The evaluation method has not been changed, but it has been set and it's a custom
* expression. The formula needs to be updated in this case.
*/
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
$this->updateFormula($correlation['correlationid'], $correlation['filter']['formula'],
$conditions_for_correlations[$correlation['correlationid']]
);
}
}
}
elseif ($db_correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
/*
* The evaluation method has not been changed and was not set. It's read from DB, but it's still
* a custom expression and there are new conditions, so the formula needs to be updated.
*/
$this->updateFormula($correlation['correlationid'], $correlation['filter']['formula'],
$conditions_for_correlations[$correlation['correlationid']]
);
}
}
}
}
// Update operations. Delete the old ones and create new ones.
if ($operations_to_delete) {
DB::delete('corr_operation', ['correlationid' => array_keys($operations_to_delete)]);
}
if ($operations_to_create) {
DB::save('corr_operation', $operations_to_create);
}
return ['correlationids' => zbx_objectValues($correlations, 'correlationid')];
}
/**
* Delete correlations.
*
* @param array $correlationids An array of correlation IDs.
*
* @return array
*/
public function delete(array $correlationids) {
if (self::$userData['type'] != USER_TYPE_SUPER_ADMIN) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('You do not have permission to perform this operation.'));
}
$api_input_rules = ['type' => API_IDS, 'flags' => API_NOT_EMPTY, 'uniq' => true];
if (!CApiInputValidator::validate($api_input_rules, $correlationids, '/', $error)) {
self::exception(ZBX_API_ERROR_PARAMETERS, $error);
}
$db_correlations = $this->get([
'output' => ['correlationid', 'name'],
'correlationids' => $correlationids,
'preservekeys' => true
]);
foreach ($correlationids as $correlationid) {
if (!array_key_exists($correlationid, $db_correlations)) {
self::exception(ZBX_API_ERROR_PERMISSIONS,
_('No permissions to referred object or it does not exist!')
);
}
}
DB::delete('correlation', ['correlationid' => $correlationids]);
$this->addAuditBulk(AUDIT_ACTION_DELETE, AUDIT_RESOURCE_CORRELATION, $db_correlations);
return ['correlationids' => $correlationids];
}
/**
* Validates the input parameters for the create() method.
*
* @param array $correlations
*
* @throws APIException if the input is invalid.
*/
protected function validateCreate(array $correlations) {
if (self::$userData['type'] != USER_TYPE_SUPER_ADMIN) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('Only super admins can create correlations.'));
}
if (!$correlations) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Empty input parameter.'));
}
$required_fields = ['name', 'filter', 'operations'];
// Validate required fields and check if "name" is not empty.
foreach ($correlations as $correlation) {
if (!is_array($correlation)) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
// Check required parameters.
$missing_keys = array_diff($required_fields, array_keys($correlation));
if ($missing_keys) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Correlation is missing parameters: %1$s', implode(', ', $missing_keys))
);
}
// Validate "name" field.
if (is_array($correlation['name'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
elseif ($correlation['name'] === '' || $correlation['name'] === null || $correlation['name'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Correlation name cannot be empty.'));
}
}
// Check for duplicate names.
$duplicate = CArrayHelper::findDuplicate($correlations, 'name');
if ($duplicate) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Duplicate "%1$s" value "%2$s" for correlation.', 'name', $duplicate['name'])
);
}
// Check if correlation already exists.
$db_correlations = API::getApiService()->select('correlation', [
'output' => ['name'],
'filter' => ['name' => zbx_objectValues($correlations, 'name')],
'limit' => 1
]);
if ($db_correlations) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Correlation "%1$s" already exists.', $correlations[0]['name'])
);
}
// Set all necessary validators and parser before cycling each correlation.
$status_validator = new CLimitedSetValidator([
'values' => [ZBX_CORRELATION_ENABLED, ZBX_CORRELATION_DISABLED]
]);
$filter_evaltype_validator = new CLimitedSetValidator([
'values' => [CONDITION_EVAL_TYPE_OR, CONDITION_EVAL_TYPE_AND, CONDITION_EVAL_TYPE_AND_OR,
CONDITION_EVAL_TYPE_EXPRESSION
]
]);
$filter_condition_type_validator = new CLimitedSetValidator([
'values' => [ZBX_CORR_CONDITION_OLD_EVENT_TAG, ZBX_CORR_CONDITION_NEW_EVENT_TAG,
ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP, ZBX_CORR_CONDITION_EVENT_TAG_PAIR,
ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE, ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE
]
]);
$filter_condition_hg_operator_validator = new CLimitedSetValidator([
'values' => [CONDITION_OPERATOR_EQUAL, CONDITION_OPERATOR_NOT_EQUAL]
]);
$filter_condition_tagval_operator_validator = new CLimitedSetValidator([
'values' => [CONDITION_OPERATOR_EQUAL, CONDITION_OPERATOR_NOT_EQUAL, CONDITION_OPERATOR_LIKE,
CONDITION_OPERATOR_NOT_LIKE
]
]);
$filter_operations_validator = new CLimitedSetValidator([
'values' => [ZBX_CORR_OPERATION_CLOSE_OLD, ZBX_CORR_OPERATION_CLOSE_NEW]
]);
$parser = new CConditionFormula();
$groupids = [];
foreach ($correlations as $correlation) {
// Validate "status" field (optional).
if (array_key_exists('status', $correlation) && !$status_validator->validate($correlation['status'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$correlation['status'],
'status',
$correlation['name']
));
}
// Validate "filter" field.
if (!is_array($correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
// Validate "evaltype" field.
if (!array_key_exists('evaltype', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect type of calculation for correlation "%1$s".', $correlation['name'])
);
}
elseif (!$filter_evaltype_validator->validate($correlation['filter']['evaltype'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$correlation['filter']['evaltype'],
'evaltype',
$correlation['name']
));
}
// Check if conditions exist and that array is not empty.
if (!array_key_exists('conditions', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'conditions', $correlation['name'])
);
}
// Validate condition operators and other parameters depending on type.
$groupids = $this->validateConditions($correlation, $filter_condition_type_validator,
$filter_condition_hg_operator_validator, $filter_condition_tagval_operator_validator
);
// Validate custom expressions and formula.
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
// Check formula.
if (!array_key_exists('formula', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'formula', $correlation['name'])
);
}
$this->validateFormula($correlation, $parser);
// Check condition formula IDs.
$this->validateConditionFormulaIDs($correlation, $parser);
}
// Validate operations.
$this->validateOperations($correlation, $filter_operations_validator);
}
// Validate collected group IDs if at least one of correlation conditions was "New event host group".
if ($groupids) {
$groups_count = API::HostGroup()->get([
'countOutput' => true,
'groupids' => array_keys($groupids)
]);
if ($groups_count != count($groupids)) {
self::exception(ZBX_API_ERROR_PERMISSIONS,
_('No permissions to referred object or it does not exist!')
);
}
}
}
/**
* Validates the input parameters for the update() method.
*
* @param array $correlations
* @param array $db_correlations
*
* @throws APIException if the input is invalid.
*/
protected function validateUpdate(array $correlations, array &$db_correlations) {
if (self::$userData['type'] != USER_TYPE_SUPER_ADMIN) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('Only super admins can update correlations.'));
}
if (!$correlations) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Empty input parameter.'));
}
// Validate given IDs.
$this->checkObjectIds($correlations, 'correlationid',
_('No "%1$s" given for correlation.'),
_('Empty correlation ID.'),
_('Incorrect correlation ID.')
);
$db_correlations = $this->get([
'output' => ['correlationid', 'name', 'description', 'status'],
'selectFilter' => ['formula', 'eval_formula', 'evaltype', 'conditions'],
'selectOperations' => ['type'],
'correlationids' => zbx_objectValues($correlations, 'correlationid'),
'preservekeys' => true
]);
$check_names = [];
foreach ($correlations as $correlation) {
// Check if this correlation exists.
if (!array_key_exists($correlation['correlationid'], $db_correlations)) {
self::exception(ZBX_API_ERROR_PERMISSIONS,
_('No permissions to referred object or it does not exist!')
);
}
// Validate "name" field (optional).
if (array_key_exists('name', $correlation)) {
if (is_array($correlation['name'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
elseif ($correlation['name'] === '' || $correlation['name'] === null || $correlation['name'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Correlation name cannot be empty.'));
}
if ($db_correlations[$correlation['correlationid']]['name'] !== $correlation['name']) {
$check_names[] = $correlation;
}
}
}
// Check only if names have changed.
if ($check_names) {
// Check for duplicate names.
$duplicate = CArrayHelper::findDuplicate($check_names, 'name');
if ($duplicate) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Duplicate "%1$s" value "%2$s" for correlation.', 'name', $duplicate['name'])
);
}
// Check if correlation already exists.
$db_correlation_names = API::getApiService()->select('correlation', [
'output' => ['correlationid', 'name'],
'filter' => ['name' => zbx_objectValues($check_names, 'name')]
]);
$db_correlation_names = zbx_toHash($db_correlation_names, 'name');
foreach ($check_names as $correlation) {
if (array_key_exists($correlation['name'], $db_correlation_names)
&& bccomp($db_correlation_names[$correlation['name']]['correlationid'],
$correlation['correlationid']) != 0) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Correlation "%1$s" already exists.', $correlation['name'])
);
}
}
}
// Set all necessary validators and parser before cycling each correlation.
$status_validator = new CLimitedSetValidator([
'values' => [ZBX_CORRELATION_ENABLED, ZBX_CORRELATION_DISABLED]
]);
$filter_evaltype_validator = new CLimitedSetValidator([
'values' => [CONDITION_EVAL_TYPE_OR, CONDITION_EVAL_TYPE_AND, CONDITION_EVAL_TYPE_AND_OR,
CONDITION_EVAL_TYPE_EXPRESSION
]
]);
$filter_condition_type_validator = new CLimitedSetValidator([
'values' => [ZBX_CORR_CONDITION_OLD_EVENT_TAG, ZBX_CORR_CONDITION_NEW_EVENT_TAG,
ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP, ZBX_CORR_CONDITION_EVENT_TAG_PAIR,
ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE, ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE
]
]);
$filter_condition_hg_operator_validator = new CLimitedSetValidator([
'values' => [CONDITION_OPERATOR_EQUAL, CONDITION_OPERATOR_NOT_EQUAL]
]);
$filter_condition_tagval_operator_validator = new CLimitedSetValidator([
'values' => [CONDITION_OPERATOR_EQUAL, CONDITION_OPERATOR_NOT_EQUAL, CONDITION_OPERATOR_LIKE,
CONDITION_OPERATOR_NOT_LIKE
]
]);
$filter_operations_validator = new CLimitedSetValidator([
'values' => [ZBX_CORR_OPERATION_CLOSE_OLD, ZBX_CORR_OPERATION_CLOSE_NEW]
]);
$parser = new CConditionFormula();
$groupids = [];
// Populate "name" field, if not set.
$correlations = $this->extendFromObjects(zbx_toHash($correlations, 'correlationid'), $db_correlations,
['name']
);
foreach ($correlations as $correlation) {
$db_correlation = $db_correlations[$correlation['correlationid']];
// Validate "status" field (optional).
if (array_key_exists('status', $correlation) && !$status_validator->validate($correlation['status'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$correlation['status'],
'status',
$correlation['name']
));
}
// Validate "filter" field. If filter is set, then something else must exist.
if (array_key_exists('filter', $correlation)) {
if (!is_array($correlation['filter']) || !$correlation['filter']) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
$evaltype_changed = false;
// Validate "evaltype" field.
if (array_key_exists('evaltype', $correlation['filter'])) {
// Check if evaltype has changed.
if ($correlation['filter']['evaltype'] != $db_correlation['filter']['evaltype']) {
if (!$filter_evaltype_validator->validate($correlation['filter']['evaltype'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$correlation['filter']['evaltype'],
'evaltype',
$correlation['name']
));
}
$evaltype_changed = true;
}
}
else {
// Populate "evaltype" field if not set, so we can later check for custom expressions.
$correlation['filter']['evaltype'] = $db_correlation['filter']['evaltype'];
}
if ($evaltype_changed) {
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
if (!array_key_exists('formula', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'formula', $correlation['name'])
);
}
$this->validateFormula($correlation, $parser);
if (!array_key_exists('conditions', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'conditions', $correlation['name'])
);
}
$groupids = $this->validateConditions($correlation, $filter_condition_type_validator,
$filter_condition_hg_operator_validator, $filter_condition_tagval_operator_validator
);
$this->validateConditionFormulaIDs($correlation, $parser);
}
else {
if (!array_key_exists('conditions', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'conditions', $correlation['name'])
);
}
$groupids = $this->validateConditions($correlation, $filter_condition_type_validator,
$filter_condition_hg_operator_validator, $filter_condition_tagval_operator_validator
);
}
}
else {
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
if (array_key_exists('formula', $correlation['filter'])) {
$this->validateFormula($correlation, $parser);
if (!array_key_exists('conditions', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'conditions', $correlation['name'])
);
}
$groupids = $this->validateConditions($correlation, $filter_condition_type_validator,
$filter_condition_hg_operator_validator, $filter_condition_tagval_operator_validator
);
$this->validateConditionFormulaIDs($correlation, $parser);
}
elseif (array_key_exists('conditions', $correlation['filter'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'formula', $correlation['name'])
);
}
}
elseif (array_key_exists('conditions', $correlation['filter'])) {
$groupids = $this->validateConditions($correlation, $filter_condition_type_validator,
$filter_condition_hg_operator_validator, $filter_condition_tagval_operator_validator
);
}
}
}
// Validate operations (optional).
if (array_key_exists('operations', $correlation)) {
$this->validateOperations($correlation, $filter_operations_validator);
}
}
// Validate collected group IDs if at least one of correlation conditions was "New event host group".
if ($groupids) {
$groups_count = API::HostGroup()->get([
'countOutput' => true,
'groupids' => array_keys($groupids)
]);
if ($groups_count != count($groupids)) {
self::exception(ZBX_API_ERROR_PERMISSIONS,
_('No permissions to referred object or it does not exist!')
);
}
}
}
/**
* Converts a formula with letters to a formula with IDs and updates it.
*
* @param string $correlationid
* @param string $formula_with_letters Formula with letters.
* @param array $conditions
*/
protected function updateFormula($correlationid, $formula_with_letters, array $conditions) {
$formulaid_to_conditionid = [];
foreach ($conditions as $condition) {
$formulaid_to_conditionid[$condition['formulaid']] = $condition['corr_conditionid'];
}
$formula = CConditionHelper::replaceLetterIds($formula_with_letters, $formulaid_to_conditionid);
DB::updateByPk('correlation', $correlationid, ['formula' => $formula]);
}
/**
* Validate correlation conditions. Check the "conditions" array, check the "type" field and other fields that
* depend on it. As a result return host group IDs that need to be validated afterwards. Otherwise don't return
* anything, just throw an error.
*
* @param array $correlation One correlation contaning the conditions.
* @param string $correlation['name'] Correlation name for error messages.
* @param array $correlation['filter'] Correlation filter array containing the conditions.
* @param array $correlation['filter']['conditions'] An array of correlation conditions.
* @param int $correlation['filter']['conditions'][]['type'] Condition type.
* Possible values are:
* 0 - ZBX_CORR_CONDITION_OLD_EVENT_TAG;
* 1 - ZBX_CORR_CONDITION_NEW_EVENT_TAG;
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP;
* 3 - ZBX_CORR_CONDITION_EVENT_TAG_PAIR;
* 4 - ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE;
* 5 - ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE.
* @param int $correlation['filter']['conditions'][]['operator'] Correlation condition operator.
* Possible values when "type"
* is one of the following:
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP;
* 4 - ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE;
* 5 - ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE.
* Possible values depend on type:
* for type ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP:
* 0 - CONDITION_OPERATOR_EQUAL
* 1 - CONDITION_OPERATOR_NOT_EQUAL
* for types ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE
* or ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE:
* 0 - CONDITION_OPERATOR_EQUAL;
* 1 - CONDITION_OPERATOR_NOT_EQUAL;
* 2 - CONDITION_OPERATOR_LIKE;
* 3 - CONDITION_OPERATOR_NOT_LIKE.
* @param string $correlations['filter']['conditions'][]['groupid'] Correlation host group ID.
* Required when "type" is:
* 2 - ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP.
* @param CLimitedSetValidator $filter_condition_type_validator Validator for conditype type.
* @param CLimitedSetValidator $filter_condition_hg_operator_validator Validator for host group operator.
* @param CLimitedSetValidator $filter_condition_tagval_operator_validator Validator for tag value operator.
*
* @throws APIException if the input is invalid.
*
* @return array
*/
protected function validateConditions(array $correlation, CLimitedSetValidator $filter_condition_type_validator,
CLimitedSetValidator $filter_condition_hg_operator_validator,
CLimitedSetValidator $filter_condition_tagval_operator_validator) {
if (!$correlation['filter']['conditions']) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'conditions', $correlation['name'])
);
}
if (!is_array($correlation['filter']['conditions'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
$groupids = [];
$formulaIds = [];
$conditions = [];
foreach ($correlation['filter']['conditions'] as $condition) {
if (!array_key_exists('type', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No condition type given for correlation "%1$s".', $correlation['name'])
);
}
elseif (is_array($condition['type'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
elseif (!$filter_condition_type_validator->validate($condition['type'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$condition['type'],
'type',
$correlation['name']
));
}
switch ($condition['type']) {
case ZBX_CORR_CONDITION_OLD_EVENT_TAG:
case ZBX_CORR_CONDITION_NEW_EVENT_TAG:
if (!array_key_exists('tag', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'tag', $correlation['name'])
);
}
elseif (is_array($condition['tag'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif ($condition['tag'] === '' || $condition['tag'] === null || $condition['tag'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect value for field "%1$s": %2$s.', 'tag', _('cannot be empty'))
);
}
break;
case ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP:
if (array_key_exists('operator', $condition)) {
if (is_array($condition['operator'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif (!$filter_condition_hg_operator_validator->validate($condition['operator'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$condition['operator'],
'operator',
$correlation['name']
));
}
}
if (!array_key_exists('groupid', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'groupid', $correlation['name'])
);
}
elseif (is_array($condition['groupid'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif ($condition['groupid'] === '' || $condition['groupid'] === null
|| $condition['groupid'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect value for field "%1$s": %2$s.', 'groupid', _('cannot be empty'))
);
}
$groupids[$condition['groupid']] = true;
break;
case ZBX_CORR_CONDITION_EVENT_TAG_PAIR:
if (!array_key_exists('oldtag', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'oldtag', $correlation['name'])
);
}
elseif (is_array($condition['oldtag'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif ($condition['oldtag'] === '' || $condition['oldtag'] === null
|| $condition['oldtag'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect value for field "%1$s": %2$s.', 'oldtag', _('cannot be empty'))
);
}
if (!array_key_exists('newtag', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'newtag', $correlation['name'])
);
}
elseif (is_array($condition['newtag'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif ($condition['newtag'] === '' || $condition['newtag'] === null
|| $condition['newtag'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect value for field "%1$s": %2$s.', 'newtag', _('cannot be empty'))
);
}
break;
case ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE:
case ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE:
if (!array_key_exists('tag', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'tag', $correlation['name'])
);
}
elseif (is_array($condition['tag'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif ($condition['tag'] === '' || $condition['tag'] === null || $condition['tag'] === false) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect value for field "%1$s": %2$s.', 'tag', _('cannot be empty'))
);
}
if (array_key_exists('operator', $condition)) {
if (is_array($condition['operator'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_('Incorrect arguments passed to function.')
);
}
elseif (!$filter_condition_tagval_operator_validator->validate($condition['operator'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$condition['operator'],
'operator',
$correlation['name']
));
}
}
break;
}
if ($correlation['filter']['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
if (array_key_exists($condition['formulaid'], $formulaIds)) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Duplicate "%1$s" value "%2$s" for correlation "%3$s".', 'formulaid', $condition['formulaid'],
$correlation['name']
));
}
else {
$formulaIds[$condition['formulaid']] = true;
}
}
unset($condition['formulaid']);
$conditions[] = $condition;
}
if (count($conditions) != count(array_unique($conditions, SORT_REGULAR))) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Conditions duplicates for correlation "%1$s".', $correlation['name'])
);
}
return $groupids;
}
/**
* Validate correlation filter "formula" field.
*
* @param array $correlation One correlation contaning the filter, formula and name.
* @param string $correlation['name'] Correlation name for error messages.
* @param array $correlation['filter'] Correlation filter array containing the formula.
* @param string $correlation['filter']['formula'] User-defined expression to be used for evaluating
* conditions of filters with a custom expression.
* @param CConditionFormula $parser Condition formula parser.
*
* @throws APIException if the input is invalid.
*/
protected function validateFormula(array $correlation, CConditionFormula $parser) {
if (is_array($correlation['filter']['formula'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
if (!$parser->parse($correlation['filter']['formula'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect custom expression "%2$s" for correlation "%1$s": %3$s.',
$correlation['name'], $correlation['filter']['formula'], $parser->error
)
);
}
}
/**
* Validate correlation condition formula IDs. Check the "formulaid" field and that formula matches the conditions.
*
* @param array $correlation One correlation contaning array of
* conditions and name.
* @param string $correlation['name'] Correlation name for error messages.
* @param array $correlation['filter'] Correlation filter array containing
* the conditions.
* @param array $correlation['filter']['conditions'] An array of correlation conditions.
* @param string $correlation['filter']['conditions'][]['formulaid'] Condition formula ID.
* @param CConditionFormula $parser Condition formula parser.
*
* @throws APIException if the input is invalid.
*/
protected function validateConditionFormulaIDs(array $correlation, CConditionFormula $parser) {
foreach ($correlation['filter']['conditions'] as $condition) {
if (!array_key_exists('formulaid', $condition)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'formulaid', $correlation['name'])
);
}
elseif (is_array($condition['formulaid'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
elseif (!preg_match('/[A-Z]+/', $condition['formulaid'])) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Incorrect filter condition formula ID given for correlation "%1$s".', $correlation['name'])
);
}
}
$conditions = zbx_toHash($correlation['filter']['conditions'], 'formulaid');
$constants = array_unique(zbx_objectValues($parser->constants, 'value'));
foreach ($constants as $constant) {
if (!array_key_exists($constant, $conditions)) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Condition "%2$s" used in formula "%3$s" for correlation "%1$s" is not defined.',
$correlation['name'], $constant, $correlation['filter']['formula']
));
}
unset($conditions[$constant]);
}
// Check that the "conditions" array has no unused conditions.
if ($conditions) {
$condition = reset($conditions);
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Condition "%2$s" is not used in formula "%3$s" for correlation "%1$s".', $correlation['name'],
$condition['formulaid'], $correlation['filter']['formula']
));
}
}
/**
* Validate correlation operations. Check if "operations" is valid, if "type" is valid and there are no duplicate
* operations in correlation.
*
* @param array $correlation One correlation contaning array of operations and name.
* @param string $correlation['name'] Correlation name for error messages.
* @param array $correlation['operations'] An array of correlation operations.
* @param int $correlation['operations']['type'] Correlation operation type.
* Possible values are:
* 0 - ZBX_CORR_OPERATION_CLOSE_OLD;
* 1 - ZBX_CORR_OPERATION_CLOSE_NEW.
* @param CLimitedSetValidator $filter_operations_validator Operations validator.
*
* @throws APIException if the input is invalid.
*/
protected function validateOperations(array $correlation, CLimitedSetValidator $filter_operations_validator) {
if (!is_array($correlation['operations'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
elseif (!$correlation['operations']) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No "%1$s" given for correlation "%2$s".', 'operations', $correlation['name'])
);
}
foreach ($correlation['operations'] as $operation) {
if (!array_key_exists('type', $operation)) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('No operation type given for correlation "%1$s".', $correlation['name'])
);
}
elseif (is_array($operation['type'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Incorrect arguments passed to function.'));
}
if (!$filter_operations_validator->validate($operation['type'])) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s(
'Incorrect value "%1$s" in field "%2$s" for correlation "%3$s".',
$operation['type'],
'type',
$correlation['name']
));
}
}
// Check that same operation types do not repeat.
$duplicate = CArrayHelper::findDuplicate($correlation['operations'], 'type');
if ($duplicate) {
self::exception(ZBX_API_ERROR_PARAMETERS,
_s('Duplicate "%1$s" value "%2$s" for correlation "%3$s".', 'type', $duplicate['type'],
$correlation['name']
)
);
}
}
/**
* Insert correlation condition values to their corresponding DB tables.
*
* @param array $conditions An array of conditions to create.
*
* @return array
*/
protected function addConditions(array $conditions) {
$conditions = DB::save('corr_condition', $conditions);
$corr_condition_tags_to_create = [];
$corr_condition_hostgroups_to_create = [];
$corr_condition_tag_pairs_to_create = [];
$corr_condition_tag_values_to_create = [];
foreach ($conditions as $condition) {
switch ($condition['type']) {
case ZBX_CORR_CONDITION_OLD_EVENT_TAG:
case ZBX_CORR_CONDITION_NEW_EVENT_TAG:
$corr_condition_tags_to_create[] = $condition;
break;
case ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP:
$corr_condition_hostgroups_to_create[] = $condition;
break;
case ZBX_CORR_CONDITION_EVENT_TAG_PAIR:
$corr_condition_tag_pairs_to_create[] = $condition;
break;
case ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE:
case ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE:
$corr_condition_tag_values_to_create[] = $condition;
break;
}
}
if ($corr_condition_tags_to_create) {
DB::insert('corr_condition_tag', $corr_condition_tags_to_create, false);
}
if ($corr_condition_hostgroups_to_create) {
DB::insert('corr_condition_group', $corr_condition_hostgroups_to_create, false);
}
if ($corr_condition_tag_pairs_to_create) {
DB::insert('corr_condition_tagpair', $corr_condition_tag_pairs_to_create, false);
}
if ($corr_condition_tag_values_to_create) {
DB::insert('corr_condition_tagvalue', $corr_condition_tag_values_to_create, false);
}
return $conditions;
}
/**
* Apply query output options.
*
* @param type $table_name
* @param type $table_alias
* @param array $options
* @param array $sql_parts
*
* @return array
*/
protected function applyQueryOutputOptions($table_name, $table_alias, array $options, array $sql_parts) {
$sql_parts = parent::applyQueryOutputOptions($table_name, $table_alias, $options, $sql_parts);
if (!$options['countOutput']) {
// Add filter fields.
if ($this->outputIsRequested('formula', $options['selectFilter'])
|| $this->outputIsRequested('eval_formula', $options['selectFilter'])
|| $this->outputIsRequested('conditions', $options['selectFilter'])) {
$sql_parts = $this->addQuerySelect('c.formula', $sql_parts);
$sql_parts = $this->addQuerySelect('c.evaltype', $sql_parts);
}
if ($this->outputIsRequested('evaltype', $options['selectFilter'])) {
$sql_parts = $this->addQuerySelect('c.evaltype', $sql_parts);
}
}
return $sql_parts;
}
/**
* Extend result with requested objects.
*
* @param array $options
* @param array $result
*
* @return array
*/
protected function addRelatedObjects(array $options, array $result) {
$result = parent::addRelatedObjects($options, $result);
$correlationids = array_keys($result);
// Adding formulas and conditions.
if ($options['selectFilter'] !== null) {
$formula_requested = $this->outputIsRequested('formula', $options['selectFilter']);
$eval_formula_requested = $this->outputIsRequested('eval_formula', $options['selectFilter']);
$conditions_requested = $this->outputIsRequested('conditions', $options['selectFilter']);
$filters = [];
if ($options['selectFilter']) {
foreach ($result as $correlation) {
$filters[$correlation['correlationid']] = [
'evaltype' => $correlation['evaltype'],
'formula' => array_key_exists('formula', $correlation) ? $correlation['formula'] : '',
'conditions' => []
];
}
if ($formula_requested || $eval_formula_requested || $conditions_requested) {
$sql = 'SELECT c.correlationid,c.corr_conditionid,c.type,ct.tag AS ct_tag,'.
'cg.operator AS cg_operator,cg.groupid,ctp.oldtag,ctp.newtag,ctv.tag AS ctv_tag,'.
'ctv.operator AS ctv_operator,ctv.value'.
' FROM corr_condition c'.
' LEFT JOIN corr_condition_tag ct ON ct.corr_conditionid = c.corr_conditionid'.
' LEFT JOIN corr_condition_group cg ON cg.corr_conditionid = c.corr_conditionid'.
' LEFT JOIN corr_condition_tagpair ctp ON ctp.corr_conditionid = c.corr_conditionid'.
' LEFT JOIN corr_condition_tagvalue ctv ON ctv.corr_conditionid = c.corr_conditionid'.
' WHERE '.dbConditionInt('c.correlationid', $correlationids);
$db_corr_conditions = DBselect($sql);
while ($row = DBfetch($db_corr_conditions)) {
$fields = [
'corr_conditionid' => $row['corr_conditionid'],
'correlationid' => $row['correlationid'],
'type' => $row['type']
];
switch ($row['type']) {
case ZBX_CORR_CONDITION_OLD_EVENT_TAG:
case ZBX_CORR_CONDITION_NEW_EVENT_TAG:
$fields['tag'] = $row['ct_tag'];
break;
case ZBX_CORR_CONDITION_NEW_EVENT_HOSTGROUP:
$fields['operator'] = $row['cg_operator'];
$fields['groupid'] = $row['groupid'];
break;
case ZBX_CORR_CONDITION_EVENT_TAG_PAIR:
$fields['oldtag'] = $row['oldtag'];
$fields['newtag'] = $row['newtag'];
break;
case ZBX_CORR_CONDITION_OLD_EVENT_TAG_VALUE:
case ZBX_CORR_CONDITION_NEW_EVENT_TAG_VALUE:
$fields['tag'] = $row['ctv_tag'];
$fields['operator'] = $row['ctv_operator'];
$fields['value'] = $row['value'];
break;
}
$filters[$row['correlationid']]['conditions'][] = $fields;
}
foreach ($filters as &$filter) {
// In case of a custom expression, use the given formula.
if ($filter['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
$formula = $filter['formula'];
}
// In other cases generate the formula automatically.
else {
$conditions = $filter['conditions'];
CArrayHelper::sort($conditions, ['type']);
$conditions_for_formula = [];
foreach ($conditions as $condition) {
$conditions_for_formula[$condition['corr_conditionid']] = $condition['type'];
}
$formula = CConditionHelper::getFormula($conditions_for_formula, $filter['evaltype']);
}
// Generate formulaids from the effective formula.
$formulaids = CConditionHelper::getFormulaIds($formula);
foreach ($filter['conditions'] as &$condition) {
$condition['formulaid'] = $formulaids[$condition['corr_conditionid']];
}
unset($condition);
// Generated a letter based formula only for actions with custom expressions.
if ($formula_requested && $filter['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION) {
$filter['formula'] = CConditionHelper::replaceNumericIds($formula, $formulaids);
}
if ($eval_formula_requested) {
$filter['eval_formula'] = CConditionHelper::replaceNumericIds($formula, $formulaids);
}
}
unset($filter);
}
}
else {
// In case no fields are actually selected in "filter", return empty array.
foreach ($result as $correlation) {
$filters[$correlation['correlationid']] = [];
}
}
// Add filters to the result.
foreach ($result as &$correlation) {
$correlation['filter'] = $filters[$correlation['correlationid']];
}
unset($correlation);
}
// Adding operations.
if ($options['selectOperations'] !== null && $options['selectOperations'] != API_OUTPUT_COUNT) {
$operations = API::getApiService()->select('corr_operation', [
'output' => $this->outputExtend($options['selectOperations'], [
'correlationid', 'corr_operationid', 'type'
]),
'filter' => ['correlationid' => $correlationids],
'preservekeys' => true
]);
$relation_map = $this->createRelationMap($operations, 'correlationid', 'corr_operationid');
foreach ($operations as &$operation) {
unset($operation['correlationid'], $operation['corr_operationid']);
}
unset($operation);
$result = $relation_map->mapMany($result, $operations, 'operations');
}
return $result;
}
}
|