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
|
<?php
/*
** Zabbix
** Copyright (C) 2000-2012 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 host prototypes.
*
* @package API
*/
class CHostPrototype extends CHostBase {
protected $sortColumns = array('hostid', 'host', 'name', 'status');
public function __construct() {
parent::__construct();
$this->getOptions = array_merge($this->getOptions, array(
'discoveryids' => null,
'inherited' => null,
'selectDiscoveryRule' => null,
'selectGroupLinks' => null,
'selectGroupPrototypes' => null,
'selectParentHost' => null,
'selectTemplates' => null,
'selectInventory' => null,
'editable' => null,
'nopermissions' => null,
'sortfield' => '',
'sortorder' => ''
));
}
/**
* Get host prototypes.
*
* @param array $options
*
* @return array
*/
public function get(array $options) {
$options = zbx_array_merge($this->getOptions, $options);
$options['filter']['flags'] = ZBX_FLAG_DISCOVERY_PROTOTYPE;
// build and execute query
$sql = $this->createSelectQuery($this->tableName(), $options);
$res = DBselect($sql, $options['limit']);
// fetch results
$result = array();
while ($row = DBfetch($res)) {
// a count query, return a single result
if ($options['countOutput'] !== null) {
if ($options['groupCount'] !== null) {
$result[] = $row;
}
else {
$result = $row['rowscount'];
}
}
// a normal select query
else {
$result[$row[$this->pk()]] = $row;
}
}
if ($options['countOutput'] !== null) {
return $result;
}
if ($result) {
$result = $this->addRelatedObjects($options, $result);
$result = $this->unsetExtraFields($result, array('triggerid'), $options['output']);
}
if ($options['preservekeys'] === null) {
$result = zbx_cleanHashes($result);
}
return $result;
}
/**
* Validates the input parameters for the create() method.
*
* @throws APIException if the input is invalid
*
* @param array $hostPrototypes
*
* @return void
*/
protected function validateCreate(array $hostPrototypes) {
// host prototype validator
$hostPrototypeValidator = new CSchemaValidator($this->getHostPrototypeSchema());
$hostPrototypeValidator->setValidator('ruleid', new CIdValidator(array(
'messageEmpty' => _('No discovery rule ID given for host prototype "%1$s".'),
'messageRegex' => _('Incorrect discovery rule ID for host prototype "%1$s".')
)));
// group validators
$groupLinkValidator = new CSchemaValidator($this->getGroupLinkSchema());
$groupPrototypeValidator = new CSchemaValidator($this->getGroupPrototypeSchema());
$groupPrototypeGroupIds = array();
foreach ($hostPrototypes as $hostPrototype) {
// host prototype
$hostPrototypeValidator->setObjectName(isset($hostPrototype['host']) ? $hostPrototype['host'] : '');
$this->checkValidator($hostPrototype, $hostPrototypeValidator);
// groups
foreach ($hostPrototype['groupLinks'] as $groupPrototype) {
$this->checkValidator($groupPrototype, $groupLinkValidator);
$groupPrototypeGroupIds[$groupPrototype['groupid']] = $groupPrototype['groupid'];
}
// group prototypes
if (isset($hostPrototype['groupPrototypes'])) {
foreach ($hostPrototype['groupPrototypes'] as $groupPrototype) {
$groupPrototypeValidator->setObjectName(isset($groupPrototype['name']) ? $groupPrototype['name'] : '');
$this->checkValidator($groupPrototype, $groupPrototypeValidator);
}
}
}
$this->checkDiscoveryRulePermissions(zbx_objectValues($hostPrototypes, 'ruleid'));
$this->checkHostGroupsPermissions($groupPrototypeGroupIds);
// check if the host is discovered
$discoveryRules = API::getApi()->select('items', array(
'output' => array('hostid'),
'itemids' => zbx_objectValues($hostPrototypes, 'ruleid')
));
$this->checkValidator(zbx_objectValues($discoveryRules, 'hostid'), new CHostNormalValidator(array(
'message' => _('Cannot create a host prototype on a discovered host "%1$s".')
)));
// check if group prototypes use discovered host groups
$this->checkValidator(array_unique($groupPrototypeGroupIds), new CHostGroupNormalValidator(array(
'message' => _('Group prototype cannot be based on a discovered host group "%1$s".')
)));
$this->checkDuplicates($hostPrototypes);
}
/**
* Returns the parameters for creating a host prototype validator.
*
* @return array
*/
protected function getHostPrototypeSchema() {
return array(
'validators' => array(
'host' => new CLldMacroStringValidator(array(
'maxLength' => 64,
'regex' => '/^('.ZBX_PREG_INTERNAL_NAMES.'|\{#'.ZBX_PREG_MACRO_NAME_LLD.'\})+$/',
'messageEmpty' => _('Empty host.'),
'messageMaxLength' => _('Host name "%1$s" is too long, it must not be longer than %2$d characters.'),
'messageRegex' => _('Incorrect characters used for host "%1$s".'),
'messageMacro' => _('Host name for host prototype "%1$s" must contain macros.')
)),
'name' => new CStringValidator(array(
// if an empty name is given, it should be replaced with the host name, but we'll validate it
// just in case
'messageEmpty' => _('Empty name for host prototype "%1$s".')
)),
'status' => new CSetValidator(array(
'values' => array(HOST_STATUS_MONITORED, HOST_STATUS_NOT_MONITORED),
'messageInvalid' => _('Incorrect status for host prototype "%1$s".')
)),
'groupLinks' => new CCollectionValidator(array(
'uniqueField' => 'groupid',
'messageEmpty' => _('Host prototype "%1$s" must have at least one host group.'),
'messageInvalid' => _('Incorrect host groups for host prototype "%1$s".'),
'messageDuplicate' => _('Duplicate host group ID "%2$s" for host prototype "%1$s".')
)),
'groupPrototypes' => new CCollectionValidator(array(
'empty' => true,
'uniqueField' => 'name',
'messageInvalid' => _('Incorrect group prototypes for host prototype "%1$s".'),
'messageDuplicate' => _('Duplicate group prototype name "%2$s" for host prototype "%1$s".')
)),
'inventory' => new CSchemaValidator(array(
'validators' => array(
'inventory_mode' => null,
),
'messageUnsupported' => _('Unsupported parameter "%2$s" for host prototype %1$s host inventory.'),
)),
'templates' => null
),
'required' => array('host', 'ruleid', 'groupLinks'),
'messageRequired' => _('No "%2$s" given for host prototype "%1$s".'),
'messageUnsupported' => _('Unsupported parameter "%2$s" for host prototype "%1$s".')
);
}
/**
* Returns the parameters for creating a group prototype validator.
*
* @return array
*/
protected function getGroupPrototypeSchema() {
return array(
'validators' => array(
'name' => new CLldMacroStringValidator(array(
'messageEmpty' => _('Empty name for group prototype.'),
'messageMacro' => _('Name for group prototype "%1$s" must contain macros.')
))
),
'required' => array('name'),
'messageUnsupported' => _('Unsupported parameter "%1$s" for group prototype.')
);
}
/**
* Returns the parameters for creating a group link validator.
*
* @return array
*/
protected function getGroupLinkSchema() {
return array(
'validators' => array(
'groupid' => new CIdValidator(array(
'messageEmpty' => _('No host group ID for group prototype.'),
'messageRegex' => _('Incorrect host group ID for group prototype.')
))
),
'required' => array('groupid'),
'messageUnsupported' => _('Unsupported parameter "%1$s" for group prototype.')
);
}
/**
* Creates the given host prototypes.
*
* @param array $hostPrototypes
*
* @return array
*/
public function create(array $hostPrototypes) {
$hostPrototypes = zbx_toArray($hostPrototypes);
foreach ($hostPrototypes as &$hostPrototype) {
// if the visible name is not set, use the technical name instead
if (!isset($hostPrototype['name']) || zbx_empty(trim($hostPrototype['name']))) {
$hostPrototype['name'] = $hostPrototype['host'];
}
if (isset($hostPrototype['templates'])) {
$hostPrototype['templates'] = zbx_toArray($hostPrototype['templates']);
}
}
unset($hostPrototype);
$this->validateCreate($hostPrototypes);
// merge groups into group prototypes
foreach ($hostPrototypes as &$hostPrototype) {
foreach ($hostPrototype['groupLinks'] as $group) {
$hostPrototype['groupPrototypes'][] = $group;
}
unset($hostPrototype['groupLinks']);
}
unset($hostPrototype);
$hostPrototypes = $this->createReal($hostPrototypes);
$this->inherit($hostPrototypes);
return array('hostids' => zbx_objectValues($hostPrototypes, 'hostid'));
}
/**
* Creates the host prototypes and inherits them to linked hosts and templates.
*
* @param array $hostPrototypes
*
* @return array an array of host prototypes with host IDs
*/
protected function createReal(array $hostPrototypes) {
foreach ($hostPrototypes as &$hostPrototype) {
$hostPrototype['flags'] = ZBX_FLAG_DISCOVERY_PROTOTYPE;
}
unset($hostPrototype);
// save the host prototypes
$hostPrototypeIds = DB::insert($this->tableName(), $hostPrototypes);
$groupPrototypes = array();
$hostPrototypeDiscoveryRules = array();
$hostPrototypeInventory = array();
foreach ($hostPrototypes as $key => $hostPrototype) {
$hostPrototypes[$key]['hostid'] = $hostPrototype['hostid'] = $hostPrototypeIds[$key];
// save group prototypes
foreach ($hostPrototype['groupPrototypes'] as $groupPrototype) {
$groupPrototype['hostid'] = $hostPrototype['hostid'];
$groupPrototypes[] = $groupPrototype;
}
// discovery rules
$hostPrototypeDiscoveryRules[] = array(
'hostid' => $hostPrototype['hostid'],
'parent_itemid' => $hostPrototype['ruleid']
);
// inventory
if (isset($hostPrototype['inventory']) && $hostPrototype['inventory']) {
$hostPrototypeInventory[] = array(
'hostid' => $hostPrototype['hostid'],
'inventory_mode' => $hostPrototype['inventory']['inventory_mode']
);
}
}
// save group prototypes
$groupPrototypes = DB::save('group_prototype', $groupPrototypes);
$i = 0;
foreach ($hostPrototypes as &$hostPrototype) {
foreach ($hostPrototype['groupPrototypes'] as &$groupPrototype) {
$groupPrototype['group_prototypeid'] = $groupPrototypes[$i]['group_prototypeid'];
$i++;
}
unset($groupPrototype);
}
unset($hostPrototype);
// link host prototypes to discovery rules
DB::insert('host_discovery', $hostPrototypeDiscoveryRules, false);
// save inventory
DB::insert('host_inventory', $hostPrototypeInventory, false);
// link templates
foreach ($hostPrototypes as $hostPrototype) {
if (isset($hostPrototype['templates']) && $hostPrototype['templates']) {
$this->link(zbx_objectValues($hostPrototype['templates'], 'templateid'), array($hostPrototype['hostid']));
}
}
// TODO: REMOVE info
$createdHostPrototypes = $this->get(array(
'hostids' => $hostPrototypeIds,
'output' => array('host'),
'selectParentHost' => array('host'),
'nopermissions' => true
));
foreach ($createdHostPrototypes as $hostProtototype) {
info(_s('Created: Host prototype "%1$s" on "%2$s".', $hostProtototype['host'], $hostProtototype['parentHost']['host']));
}
return $hostPrototypes;
}
/**
* Validates the input parameters for the update() method.
*
* @throws APIException if the input is invalid
*
* @param array $hostPrototypes
* @param array $dbHostPrototypes array of existing host prototypes with hostids as keys
*
* @return void
*/
protected function validateUpdate(array $hostPrototypes, array $dbHostPrototypes) {
// TODO: permissions should be checked using the $dbHostPrototypes array
$this->checkHostPrototypePermissions(zbx_objectValues($hostPrototypes, 'hostid'));
$hostPrototypes = $this->extendFromObjects(zbx_toHash($hostPrototypes, 'hostid'), $dbHostPrototypes, array(
'host', 'name'
));
// host prototype validator
$hostPrototypeValidator = new CPartialSchemaValidator($this->getHostPrototypeSchema());
$hostPrototypeValidator->setValidator('hostid', null);
// group validator
$groupLinkValidator = new CPartialSchemaValidator($this->getGroupLinkSchema());
$groupLinkValidator->setValidator('group_prototypeid', new CIdValidator(array(
'messageEmpty' => _('Group prototype ID cannot be empty.'),
'messageRegex' => _('Incorrect group prototype ID.')
)));
// group prototype validator
$groupPrototypeValidator = new CPartialSchemaValidator($this->getGroupPrototypeSchema());
$groupPrototypeValidator->setValidator('group_prototypeid', new CIdValidator(array(
'messageEmpty' => _('Group prototype ID cannot be empty.'),
'messageRegex' => _('Incorrect group prototype ID.')
)));
$groupPrototypeGroupIds = array();
foreach ($hostPrototypes as $hostPrototype) {
// host prototype
$hostPrototypeValidator->setObjectName($hostPrototype['host']);
$this->checkPartialValidator($hostPrototype, $hostPrototypeValidator);
// groups
if (isset($hostPrototype['groupLinks'])) {
foreach ($hostPrototype['groupLinks'] as $groupPrototype) {
$this->checkPartialValidator($groupPrototype, $groupLinkValidator);
$groupPrototypeGroupIds[$groupPrototype['groupid']] = $groupPrototype['groupid'];
}
}
// group prototypes
if (isset($hostPrototype['groupPrototypes'])) {
foreach ($hostPrototype['groupPrototypes'] as $groupPrototype) {
$groupPrototypeValidator->setObjectName(isset($groupPrototype['name']) ? $groupPrototype['name'] : '');
$this->checkPartialValidator($groupPrototype, $groupPrototypeValidator);
}
}
}
$this->checkHostGroupsPermissions($groupPrototypeGroupIds);
// check if group prototypes use discovered host groups
$this->checkValidator(array_unique($groupPrototypeGroupIds), new CHostGroupNormalValidator(array(
'message' => _('Group prototype cannot be based on a discovered host group "%1$s".')
)));
// check for duplicates
foreach ($hostPrototypes as &$hostPrototype) {
$hostPrototype['ruleid'] = $dbHostPrototypes[$hostPrototype['hostid']]['discoveryRule']['itemid'];
}
unset($hostPrototype);
$this->checkDuplicates($hostPrototypes);
}
/**
* Updates the given host prototypes.
*
* @param array $hostPrototypes
*
* @return array
*/
public function update(array $hostPrototypes) {
$hostPrototypes = zbx_toArray($hostPrototypes);
// check hostids before doing anything
$this->checkObjectIds($hostPrototypes, 'hostid',
_('No "%1$s" given for host prototype.'),
_('Empty host ID for host prototype.'),
_('Incorrect host prototype ID.')
);
// fetch updated objects from the DB
$dbHostPrototypes = $this->get(array(
'output' => array('host', 'name'),
'selectGroupLinks' => API_OUTPUT_EXTEND,
'selectGroupPrototypes' => API_OUTPUT_EXTEND,
'selectDiscoveryRule' => array('itemid'),
'hostids' => zbx_objectValues($hostPrototypes, 'hostid'),
'editable' => true,
'preservekeys' => true
));
foreach ($hostPrototypes as &$hostPrototype) {
if (isset($hostPrototype['templates'])) {
$hostPrototype['templates'] = zbx_toArray($hostPrototype['templates']);
}
// if the visible name is not set, use the technical name instead
if (isset($hostPrototype['name']) && zbx_empty(trim($hostPrototype['name']))) {
$hostPrototype['name'] = isset($hostPrototype['host'])
? $hostPrototype['host']
: $dbHostPrototypes[$hostPrototype['hostid']]['host'];
}
}
unset($hostPrototype);
$this->validateUpdate($hostPrototypes, $dbHostPrototypes);
// fetch missing data from the DB
$hostPrototypes = $this->extendFromObjects(zbx_toHash($hostPrototypes, 'hostid'), $dbHostPrototypes, array(
'host', 'groupLinks', 'groupPrototypes'
));
foreach ($hostPrototypes as &$hostPrototype) {
$hostPrototype['ruleid'] = $dbHostPrototypes[$hostPrototype['hostid']]['discoveryRule']['itemid'];
}
unset($hostPrototype);
// merge group links into group prototypes
foreach ($hostPrototypes as &$hostPrototype) {
if (isset($hostPrototype['groupLinks'])) {
foreach ($hostPrototype['groupLinks'] as $group) {
$hostPrototype['groupPrototypes'][] = $group;
}
unset($hostPrototype['groupLinks']);
}
}
unset($hostPrototype);
$hostPrototypes = $this->updateReal($hostPrototypes);
$this->inherit($hostPrototypes);
return array('hostids' => zbx_objectValues($hostPrototypes, 'hostid'));
}
/**
* Updates the host prototypes and propagates the changes to linked hosts and templates.
*
* @param array $hostPrototypes
*
* @return array
*/
protected function updateReal(array $hostPrototypes) {
// save the host prototypes
foreach ($hostPrototypes as $hostPrototype) {
DB::updateByPk($this->tableName(), $hostPrototype['hostid'], $hostPrototype);
}
$exHostPrototypes = $this->get(array(
'output' => array('hostid'),
'selectGroupLinks' => API_OUTPUT_EXTEND,
'selectGroupPrototypes' => API_OUTPUT_EXTEND,
'selectTemplates' => array('templateid'),
'selectInventory' => API_OUTPUT_EXTEND,
'hostids' => zbx_objectValues($hostPrototypes, 'hostid'),
'preservekeys' => true
));
// update related objects
$inventoryCreate = array();
$inventoryDeleteIds = array();
foreach ($hostPrototypes as $key => $hostPrototype) {
$exHostPrototype = $exHostPrototypes[$hostPrototype['hostid']];
// group prototypes
if (isset($hostPrototype['groupPrototypes'])) {
foreach ($hostPrototype['groupPrototypes'] as &$groupPrototype) {
$groupPrototype['hostid'] = $hostPrototype['hostid'];
}
unset($groupPrototype);
// save group prototypes
$exGroupPrototypes = zbx_toHash(
array_merge($exHostPrototype['groupLinks'], $exHostPrototype['groupPrototypes']),
'group_prototypeid'
);
$modifiedGroupPrototypes = array();
foreach ($hostPrototype['groupPrototypes'] as $groupPrototype) {
if (isset($groupPrototype['group_prototypeid'])) {
unset($exGroupPrototypes[$groupPrototype['group_prototypeid']]);
}
$modifiedGroupPrototypes[] = $groupPrototype;
}
if ($exGroupPrototypes) {
$this->deleteGroupPrototypes(array_keys($exGroupPrototypes));
}
$hostPrototypes[$key]['groupPrototypes'] = DB::save('group_prototype', $modifiedGroupPrototypes);
}
// templates
if (isset($hostPrototype['templates'])) {
$existingTemplateIds = zbx_objectValues($exHostPrototype['templates'], 'templateid');
$newTemplateIds = zbx_objectValues($hostPrototype['templates'], 'templateid');
$this->unlink(array_diff($existingTemplateIds, $newTemplateIds), array($hostPrototype['hostid']));
$this->link(array_diff($newTemplateIds, $existingTemplateIds), array($hostPrototype['hostid']));
}
// inventory
if (isset($hostPrototype['inventory']) ) {
$inventory = zbx_array_mintersect(array('inventory_mode'), $hostPrototype['inventory']);
$inventory['hostid'] = $hostPrototype['hostid'];
if ($hostPrototype['inventory']
&& (!isset($hostPrototype['inventory']['inventory_mode']) || $hostPrototype['inventory']['inventory_mode'] != HOST_INVENTORY_DISABLED)) {
if ($exHostPrototype['inventory']) {
DB::update('host_inventory', array(
'values' => $inventory,
'where' => array('hostid' => $inventory['hostid'])
));
}
else {
$inventoryCreate[] = $inventory;
}
}
else {
$inventoryDeleteIds[] = $hostPrototype['hostid'];
}
}
}
// save inventory
DB::insert('host_inventory', $inventoryCreate, false);
DB::delete('host_inventory', array('hostid' => $inventoryDeleteIds));
// TODO: REMOVE info
$updatedHostPrototypes = $this->get(array(
'hostids' => zbx_objectValues($hostPrototypes, 'hostid'),
'output' => array('host'),
'selectParentHost' => array('host'),
'nopermissions' => true
));
foreach ($updatedHostPrototypes as $hostProtototype) {
info(_s('Updated: Host prototype "%1$s" on "%2$s".', $hostProtototype['host'], $hostProtototype['parentHost']['host']));
}
return $hostPrototypes;
}
/**
* Updates the children of the host prototypes on the given hosts and propagates the inheritance to the child hosts.
*
* @param array $hostPrototypes array of host prototypes to inherit
* @param array $hostids array of hosts to inherit to; if set to null, the children will be updated on all
* child hosts
*
* @return bool
*/
protected function inherit(array $hostPrototypes, array $hostids = null) {
if (empty($hostPrototypes)) {
return true;
}
// prepare the child host prototypes
$newHostPrototypes = $this->prepareInheritedObjects($hostPrototypes, $hostids);
if (!$newHostPrototypes) {
return true;
}
$insertHostPrototypes = array();
$updateHostPrototypes = array();
foreach ($newHostPrototypes as $newHostPrototype) {
if (isset($newHostPrototype['hostid'])) {
$updateHostPrototypes[] = $newHostPrototype;
}
else {
$insertHostPrototypes[] = $newHostPrototype;
}
}
// save the new host prototypes
if (!zbx_empty($insertHostPrototypes)) {
$insertHostPrototypes = $this->createReal($insertHostPrototypes);
}
if (!zbx_empty($updateHostPrototypes)) {
$updateHostPrototypes = $this->updateReal($updateHostPrototypes);
}
// propagate the inheritance to the children
return $this->inherit(array_merge($updateHostPrototypes, $insertHostPrototypes));
}
/**
* Prepares and returns an array of child host prototypes, inherited from host prototypes $hostPrototypes
* on the given hosts.
*
* Each host prototype must have the "ruleid" parameter set.
*
* @param array $hostPrototypes
* @param array $hostIds
*
* @return array an array of unsaved child host prototypes
*/
protected function prepareInheritedObjects(array $hostPrototypes, array $hostIds = null) {
// fetch the related discovery rules with their hosts
$discoveryRules = API::DiscoveryRule()->get(array(
'output' => array('itemid', 'hostid'),
'selectHosts' => array('hostid'),
'itemids' => zbx_objectValues($hostPrototypes, 'ruleid'),
'templated' => true,
'nopermissions' => true,
'preservekeys' => true
));
// fetch all child hosts to inherit to
// do not inherit host prototypes on discovered hosts
$chdHosts = API::Host()->get(array(
'output' => array('hostid', 'host', 'status'),
'selectParentTemplates' => array('templateid'),
'templateids' => zbx_objectValues($discoveryRules, 'hostid'),
'hostids' => $hostIds,
'nopermissions' => true,
'templated_hosts' => true,
'filter' => array('flags' => ZBX_FLAG_DISCOVERY_NORMAL)
));
if (empty($chdHosts)) {
return array();
}
// fetch the child discovery rules
$childDiscoveryRules = API::DiscoveryRule()->get(array(
'output' => array('itemid', 'templateid', 'hostid'),
'preservekeys' => true,
'filter' => array(
'templateid' => array_keys($discoveryRules)
)
));
// fetch child host prototypes and group them by discovery rule
$childHostPrototypes = API::HostPrototype()->get(array(
'output' => array('hostid', 'host', 'templateid'),
'selectGroupLinks' => API_OUTPUT_EXTEND,
'selectGroupPrototypes' => API_OUTPUT_EXTEND,
'selectDiscoveryRule' => array('itemid'),
'discoveryids' => zbx_objectValues($childDiscoveryRules, 'itemid'),
));
foreach ($childDiscoveryRules as &$childDiscoveryRule) {
$childDiscoveryRule['hostPrototypes'] = array();
}
unset($childDiscoveryRule);
foreach ($childHostPrototypes as $childHostPrototype) {
$discoveryRuleId = $childHostPrototype['discoveryRule']['itemid'];
unset($childHostPrototype['discoveryRule']);
$childDiscoveryRules[$discoveryRuleId]['hostPrototypes'][] = $childHostPrototype;
}
// match each discovery that the parent host prototypes belong to to the child discovery rule for each host
$discoveryRuleChildren = array();
foreach ($childDiscoveryRules as $childRule) {
$discoveryRuleChildren[$childRule['templateid']][$childRule['hostid']] = $childRule['itemid'];
}
$newHostPrototypes = array();
foreach ($chdHosts as $host) {
$hostId = $host['hostid'];
// skip items not from parent templates of current host
$templateIds = zbx_toHash($host['parentTemplates'], 'templateid');
$parentHostPrototypes = array();
foreach ($hostPrototypes as $inum => $parentHostPrototype) {
$parentTemplateId = $discoveryRules[$parentHostPrototype['ruleid']]['hostid'];
if (isset($templateIds[$parentTemplateId])) {
$parentHostPrototypes[$inum] = $parentHostPrototype;
}
}
foreach ($parentHostPrototypes as $parentHostPrototype) {
$childDiscoveryRuleId = $discoveryRuleChildren[$parentHostPrototype['ruleid']][$hostId];
$exHostPrototype = null;
// check if the child discovery rule already has host prototypes
$exHostPrototypes = $childDiscoveryRules[$childDiscoveryRuleId]['hostPrototypes'];
if ($exHostPrototypes) {
$exHostPrototypesHosts = zbx_toHash($exHostPrototypes, 'host');
$exHostPrototypesTemplateIds = zbx_toHash($exHostPrototypes, 'templateid');
// look for an already created inherited host prototype
// if one exists - update it
if (isset($exHostPrototypesTemplateIds[$parentHostPrototype['hostid']])) {
$exHostPrototype = $exHostPrototypesTemplateIds[$parentHostPrototype['hostid']];
// check if there's a host prototype on the target host with the same host name but from a different template
// or no template
if (isset($exHostPrototypesHosts[$parentHostPrototype['host']])
&& !idcmp($exHostPrototypesHosts[$parentHostPrototype['host']]['templateid'], $parentHostPrototype['hostid'])) {
$discoveryRule = DBfetch(DBselect('SELECT i.name FROM items i WHERE i.itemid='.zbx_dbstr($exHostPrototype['discoveryRule']['itemid'])));
self::exception(ZBX_API_ERROR_PARAMETERS, _s('Host prototype "%1$s" already exists on "%2$s".', $parentHostPrototype['host'], $discoveryRule['name']));
}
}
// look for a host prototype with the same host name
// if one exists - convert it to an inherited host prototype
if (isset($exHostPrototypesHosts[$parentHostPrototype['host']])) {
$exHostPrototype = $exHostPrototypesHosts[$parentHostPrototype['host']];
// check that this host prototype is not inherited from a different template
if ($exHostPrototype['templateid'] > 0 && !idcmp($exHostPrototype['templateid'], $parentHostPrototype['hostid'])) {
$discoveryRule = DBfetch(DBselect('SELECT i.name FROM items i WHERE i.itemid='.zbx_dbstr($exHostPrototype['discoveryRule']['itemid'])));
self::exception(ZBX_API_ERROR_PARAMETERS, _s('Host prototype "%1$s" already exists on "%2$s", inherited from another template.', $parentHostPrototype['host'], $discoveryRule['name']));
}
}
}
// copy host prototype
$newHostPrototype = $parentHostPrototype;
$newHostPrototype['ruleid'] = $discoveryRuleChildren[$parentHostPrototype['ruleid']][$hostId];
$newHostPrototype['templateid'] = $parentHostPrototype['hostid'];
// update an existing inherited host prototype
if ($exHostPrototype) {
// look for existing group prototypes to update
$exGroupPrototypesByTemplateId = zbx_toHash($exHostPrototype['groupPrototypes'], 'templateid');
$exGroupPrototypesByName = zbx_toHash($exHostPrototype['groupPrototypes'], 'name');
$exGroupPrototypesByGroupId = zbx_toHash($exHostPrototype['groupLinks'], 'groupid');
// look for a group prototype that can be updated
foreach ($newHostPrototype['groupPrototypes'] as &$groupPrototype) {
// updated an inherited item prototype by templateid
if (isset($exGroupPrototypesByTemplateId[$groupPrototype['group_prototypeid']])) {
$groupPrototype['group_prototypeid'] = $exGroupPrototypesByTemplateId[$groupPrototype['group_prototypeid']]['group_prototypeid'];
}
// updated an inherited item prototype by name
elseif (isset($groupPrototype['name']) && !zbx_empty($groupPrototype['name'])
&& isset($exGroupPrototypesByName[$groupPrototype['name']])) {
$groupPrototype['templateid'] = $groupPrototype['group_prototypeid'];
$groupPrototype['group_prototypeid'] = $exGroupPrototypesByName[$groupPrototype['name']]['group_prototypeid'];
}
// updated an inherited item prototype by group ID
elseif (isset($groupPrototype['groupid']) && $groupPrototype['groupid']
&& isset($exGroupPrototypesByGroupId[$groupPrototype['groupid']])) {
$groupPrototype['templateid'] = $groupPrototype['group_prototypeid'];
$groupPrototype['group_prototypeid'] = $exGroupPrototypesByGroupId[$groupPrototype['groupid']]['group_prototypeid'];
}
// create a new child group prototype
else {
$groupPrototype['templateid'] = $groupPrototype['group_prototypeid'];
unset($groupPrototype['group_prototypeid']);
}
unset($groupPrototype['hostid']);
}
unset($groupPrototype);
$newHostPrototype['hostid'] = $exHostPrototype['hostid'];
}
// create a new inherited host prototype
else {
foreach ($newHostPrototype['groupPrototypes'] as &$groupPrototype) {
$groupPrototype['templateid'] = $groupPrototype['group_prototypeid'];
unset($groupPrototype['group_prototypeid'], $groupPrototype['hostid']);
}
unset($groupPrototype);
unset($newHostPrototype['hostid']);
}
$newHostPrototypes[] = $newHostPrototype;
}
}
return $newHostPrototypes;
}
/**
* Inherits all host prototypes from the templates given in "templateids" to hosts or templates given in "hostids".
*
* @param array $data
*
* @return bool
*/
public function syncTemplates(array $data) {
$data['templateids'] = zbx_toArray($data['templateids']);
$data['hostids'] = zbx_toArray($data['hostids']);
$discoveryRules = API::DiscoveryRule()->get(array(
'output' => array('itemid'),
'hostids' => $data['templateids']
));
$hostPrototypes = $this->get(array(
'discoveryids' => zbx_objectValues($discoveryRules, 'itemid'),
'preservekeys' => true,
'output' => API_OUTPUT_EXTEND,
'selectGroupLinks' => API_OUTPUT_EXTEND,
'selectGroupPrototypes' => API_OUTPUT_EXTEND,
'selectTemplates' => array('templateid'),
'selectDiscoveryRule' => array('itemid')
));
foreach ($hostPrototypes as &$hostPrototype) {
// merge group links into group prototypes
foreach ($hostPrototype['groupLinks'] as $group) {
$hostPrototype['groupPrototypes'][] = $group;
}
unset($hostPrototype['groupLinks']);
// the ID of the discovery rule must be passed in the "ruleid" parameter
$hostPrototype['ruleid'] = $hostPrototype['discoveryRule']['itemid'];
unset($hostPrototype['discoveryRule']);
}
unset($hostPrototype);
$this->inherit($hostPrototypes, $data['hostids']);
return true;
}
/**
* Validates the input parameters for the delete() method.
*
* @throws APIException if the input is invalid
*
* @param array $hostPrototypeIds
* @param bool $nopermissions
*
* @return void
*/
protected function validateDelete($hostPrototypeIds, $nopermissions) {
if (!$hostPrototypeIds) {
self::exception(ZBX_API_ERROR_PARAMETERS, _('Empty input parameter.'));
}
if (!$nopermissions) {
$this->checkHostPrototypePermissions($hostPrototypeIds);
$this->checkNotInherited($hostPrototypeIds);
}
}
/**
* Delete host prototypes.
*
* @param string|array $hostPrototypeIds
* @param bool $nopermissions if set to true, permission and template checks will be skipped
*
* @return array
*/
public function delete($hostPrototypeIds, $nopermissions = false) {
$hostPrototypeIds = zbx_toArray($hostPrototypeIds);
$this->validateDelete($hostPrototypeIds, $nopermissions);
// include child IDs
$parentHostPrototypeIds = $hostPrototypeIds;
$childHostPrototypeIds = array();
do {
$query = DBselect('SELECT h.hostid FROM hosts h WHERE '.dbConditionInt('h.templateid', $parentHostPrototypeIds));
$parentHostPrototypeIds = array();
while ($hostPrototype = DBfetch($query)) {
$parentHostPrototypeIds[] = $hostPrototype['hostid'];
$childHostPrototypeIds[] = $hostPrototype['hostid'];
}
} while (!empty($parentHostPrototypeIds));
$hostPrototypeIds = array_merge($hostPrototypeIds, $childHostPrototypeIds);
$deleteHostPrototypes = $this->get(array(
'hostids' => $hostPrototypeIds,
'output' => array('host'),
'selectGroupPrototypes' => array('group_prototypeid'),
'selectParentHost' => array('host'),
'nopermissions' => true
));
// delete discovered hosts
$discoveredHosts = DBfetchArray(DBselect(
'SELECT hostid FROM host_discovery WHERE '.dbConditionInt('parent_hostid', $hostPrototypeIds)
));
if ($discoveredHosts) {
API::Host()->delete(zbx_objectValues($discoveredHosts, 'hostid'), true);
}
// delete group prototypes and discovered groups
$groupPrototypeIds = array();
foreach ($deleteHostPrototypes as $groupPrototype) {
foreach ($groupPrototype['groupPrototypes'] as $groupPrototype) {
$groupPrototypeIds[] = $groupPrototype['group_prototypeid'];
}
}
$this->deleteGroupPrototypes($groupPrototypeIds);
// delete host prototypes
DB::delete($this->tableName(), array('hostid' => $hostPrototypeIds));
// TODO: REMOVE info
foreach ($deleteHostPrototypes as $hostProtototype) {
info(_s('Deleted: Host prototype "%1$s" on "%2$s".', $hostProtototype['host'], $hostProtototype['parentHost']['host']));
}
return array('hostids' => $hostPrototypeIds);
}
/**
* Returns true if all of the given objects are available for reading.
*
* @param $ids
*
* @return bool
*/
public function isReadable(array $ids) {
if (empty($ids)) {
return true;
}
$ids = array_unique($ids);
$count = $this->get(array(
'hostids' => $ids,
'countOutput' => true
));
return count($ids) == $count;
}
/**
* Returns true if all of the given objects are available for writing.
*
* @param $ids
*
* @return bool
*/
public function isWritable(array $ids) {
if (empty($ids)) {
return true;
}
$ids = array_unique($ids);
$count = $this->get(array(
'hostids' => $ids,
'editable' => true,
'countOutput' => true
));
return count($ids) == $count;
}
protected function link(array $templateIds, array $targetIds) {
if (!$this->isWritable($targetIds)) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('No permissions to referred object or it does not exist!'));
}
return parent::link($templateIds, $targetIds);
}
/**
* Checks if the current user has access to the given LLD rules.
*
* @throws APIException if the user doesn't have write permissions for the given LLD rules
*
* @param array $discoveryRuleIds
*/
protected function checkDiscoveryRulePermissions(array $discoveryRuleIds) {
if (!API::DiscoveryRule()->isWritable($discoveryRuleIds)) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('No permissions to referred object or it does not exist!'));
}
}
/**
* Checks if the current user has access to the given host groups.
*
* @throws APIException if the user doesn't have write permissions for the given host groups
*
* @param array $hostGroupIds
*/
protected function checkHostGroupsPermissions(array $hostGroupIds) {
if (!API::HostGroup()->isWritable($hostGroupIds)) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('No permissions to referred object or it does not exist!'));
}
}
/**
* Checks if the current user has access to the given host prototypes.
*
* @throws APIException if the user doesn't have write permissions for the host prototypes.
*
* @param array $hostPrototypeIds
*/
protected function checkHostPrototypePermissions(array $hostPrototypeIds) {
if (!$this->isWritable($hostPrototypeIds)) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('No permissions to referred object or it does not exist!'));
}
}
/**
* Checks if the given host prototypes are not inherited from a template.
*
* @throws APIException if at least one host prototype is inherited
*
* @param array $hostPrototypeIds
*/
protected function checkNotInherited(array $hostPrototypeIds) {
$query = DBSelect('SELECT hostid FROM hosts h WHERE h.templateid>0 AND '.dbConditionInt('h.hostid', $hostPrototypeIds), 1);
if ($hostPrototype = DBfetch($query)) {
self::exception(ZBX_API_ERROR_PERMISSIONS, _('Cannot delete templated host prototype.'));
}
}
/**
* Checks if host prototypes with the same technical or visible names already exist on the same LLD rule.
*
* Each host prototype must have the host, name and ruleid properties defined.
*
* @throws APIException if a host prototype with the same name or technical name exists
* either in the given array or in the database.
*
* @param array $hostPrototypes
*/
protected function checkDuplicates(array $hostPrototypes) {
// check host name duplicates
$collectionValidator = new CCollectionValidator(array(
'empty' => true,
'uniqueField' => 'host',
'uniqueField2' => 'ruleid',
'messageDuplicate' => _('Host prototype with host name "%1$s" already exists.')
));
$this->checkValidator($hostPrototypes, $collectionValidator);
$this->checkExistingHostPrototypes($hostPrototypes, 'host',
_('Host prototype with host name "%1$s" already exists in discovery rule "%2$s".')
);
// check visible name duplicates
$collectionValidator->uniqueField = 'name';
$collectionValidator->messageDuplicate = _('Host prototype with visible name "%1$s" already exists.');
$this->checkValidator($hostPrototypes, $collectionValidator);
$this->checkExistingHostPrototypes($hostPrototypes, 'name',
_('Host prototype with visible name "%1$s" already exists in discovery rule "%2$s".')
);
}
/**
* Check if a host with the same value in $field already exists on an LLD rule.
* If host prototypes have host IDs it will check for existing prototypes with different host IDs.
*
* @throw APIException
*
* @param array $hostPrototypes
* @param string $field name of the field to check uniqueness by
* @param string $error error message in case duplicates are found
*/
protected function checkExistingHostPrototypes(array $hostPrototypes, $field, $error) {
$valuesByDiscoveryRuleId = array();
$hostIds = array();
foreach ($hostPrototypes as $hostPrototype) {
$valuesByDiscoveryRuleId[$hostPrototype['ruleid']][] = $hostPrototype[$field];
if (isset($hostPrototype['hostid'])) {
$hostIds[] = $hostPrototype['hostid'];
}
}
$sqlWhere = array();
foreach ($valuesByDiscoveryRuleId as $discoveryRuleId => $values) {
$sqlWhere[] = '(hd.parent_itemid='.$discoveryRuleId.' AND '.dbConditionString('h.'.$field, $values).')';
}
if ($sqlWhere) {
$sql = 'SELECT i.name as discovery_name,h.'.$field.
' FROM hosts h,host_discovery hd,items i'.
' WHERE h.hostid=hd.hostid AND hd.parent_itemid=i.itemid AND ('.implode(' OR ', $sqlWhere).')';
// if we update existing items we need to exclude them from result.
if ($hostIds) {
$sql .= ' AND '.dbConditionInt('h.hostid', $hostIds, true);
}
$query = DBselect($sql, 1);
while ($row = DBfetch($query)) {
self::exception(ZBX_API_ERROR_PARAMETERS, _s($error, $row[$field], $row['discovery_name']));
}
}
}
protected function applyQueryFilterOptions($tableName, $tableAlias, array $options, array $sqlParts) {
$sqlParts = parent::applyQueryFilterOptions($tableName, $tableAlias, $options, $sqlParts);
// do not return host prototypes from discovered hosts
$sqlParts['from'][] = 'host_discovery hd';
$sqlParts['from'][] = 'items i';
$sqlParts['from'][] = 'hosts ph';
$sqlParts['where'][] = $this->fieldId('hostid').'=hd.hostid';
$sqlParts['where'][] = 'hd.parent_itemid=i.itemid';
$sqlParts['where'][] = 'i.hostid=ph.hostid';
$sqlParts['where'][] = 'ph.flags='.ZBX_FLAG_DISCOVERY_NORMAL;
if (CWebUser::getType() != USER_TYPE_SUPER_ADMIN && !$options['nopermissions']) {
$permission = $options['editable'] ? PERM_READ_WRITE : PERM_READ;
$sqlParts['where'][] = 'EXISTS ('.
'SELECT NULL'.
' FROM '.
'host_discovery hd,items i,hosts_groups hgg'.
' JOIN rights r'.
' ON r.id=hgg.groupid'.
' AND '.dbConditionInt('r.groupid', getUserGroupsByUserId(self::$userData['userid'])).
' WHERE h.hostid=hd.hostid'.
' AND hd.parent_itemid=i.itemid'.
' AND i.hostid=hgg.hostid'.
' GROUP BY hgg.hostid'.
' HAVING MIN(r.permission)>'.PERM_DENY.
' AND MAX(r.permission)>='.$permission.
')';
}
// discoveryids
if ($options['discoveryids'] !== null) {
$sqlParts['where'][] = dbConditionInt('hd.parent_itemid', (array) $options['discoveryids']);
if ($options['groupCount'] !== null) {
$sqlParts['group']['hd'] = 'hd.parent_itemid';
}
}
// inherited
if ($options['inherited'] !== null) {
$sqlParts['where'][] = ($options['inherited']) ? 'h.templateid IS NOT NULL' : 'h.templateid IS NULL';
}
return $sqlParts;
}
protected function addRelatedObjects(array $options, array $result) {
$result = parent::addRelatedObjects($options, $result);
$hostPrototypeIds = array_keys($result);
// adding discovery rule
if ($options['selectDiscoveryRule'] !== null && $options['selectDiscoveryRule'] != API_OUTPUT_COUNT) {
$relationMap = $this->createRelationMap($result, 'hostid', 'parent_itemid', 'host_discovery');
$discoveryRules = API::DiscoveryRule()->get(array(
'output' => $options['selectDiscoveryRule'],
'nodeids' => $options['nodeids'],
'itemids' => $relationMap->getRelatedIds(),
'nopermissions' => true,
'preservekeys' => true,
));
$result = $relationMap->mapOne($result, $discoveryRules, 'discoveryRule');
}
// adding group links
if ($options['selectGroupLinks'] !== null && $options['selectGroupLinks'] != API_OUTPUT_COUNT) {
$groupPrototypes = DBFetchArray(DBselect(
'SELECT hg.group_prototypeid,hg.hostid'.
' FROM group_prototype hg'.
' WHERE '.dbConditionInt('hg.hostid', $hostPrototypeIds).
' AND hg.groupid IS NOT NULL'
));
$relationMap = $this->createRelationMap($groupPrototypes, 'hostid', 'group_prototypeid');
$groupPrototypes = API::getApi()->select('group_prototype', array(
'output' => $options['selectGroupLinks'],
'nodeids' => $options['nodeids'],
'group_prototypeids' => $relationMap->getRelatedIds(),
'preservekeys' => true
));
foreach ($groupPrototypes as &$groupPrototype) {
unset($groupPrototype['name']);
}
unset($groupPrototype);
$result = $relationMap->mapMany($result, $groupPrototypes, 'groupLinks');
}
// adding group prototypes
if ($options['selectGroupPrototypes'] !== null && $options['selectGroupPrototypes'] != API_OUTPUT_COUNT) {
$groupPrototypes = DBFetchArray(DBselect(
'SELECT hg.group_prototypeid,hg.hostid'.
' FROM group_prototype hg'.
' WHERE '.dbConditionInt('hg.hostid', $hostPrototypeIds).
' AND hg.groupid IS NULL'
));
$relationMap = $this->createRelationMap($groupPrototypes, 'hostid', 'group_prototypeid');
$groupPrototypes = API::getApi()->select('group_prototype', array(
'output' => $options['selectGroupPrototypes'],
'nodeids' => $options['nodeids'],
'group_prototypeids' => $relationMap->getRelatedIds(),
'preservekeys' => true
));
foreach ($groupPrototypes as &$groupPrototype) {
unset($groupPrototype['groupid']);
}
unset($groupPrototype);
$result = $relationMap->mapMany($result, $groupPrototypes, 'groupPrototypes');
}
// adding host
if ($options['selectParentHost'] !== null && $options['selectParentHost'] != API_OUTPUT_COUNT) {
$relationMap = new CRelationMap();
$dbRules = DBselect(
'SELECT hd.hostid,i.hostid AS parent_hostid'.
' FROM host_discovery hd,items i'.
' WHERE '.dbConditionInt('hd.hostid', $hostPrototypeIds).
' AND hd.parent_itemid=i.itemid'
);
while ($relation = DBfetch($dbRules)) {
$relationMap->addRelation($relation['hostid'], $relation['parent_hostid']);
}
$hosts = API::Host()->get(array(
'output' => $options['selectParentHost'],
'nodeids' => $options['nodeids'],
'hostids' => $relationMap->getRelatedIds(),
'templated_hosts' => true,
'nopermissions' => true,
'preservekeys' => true,
));
$result = $relationMap->mapOne($result, $hosts, 'parentHost');
}
// adding templates
if ($options['selectTemplates'] !== null) {
if ($options['selectTemplates'] != API_OUTPUT_COUNT) {
$relationMap = $this->createRelationMap($result, 'hostid', 'templateid', 'hosts_templates');
$templates = API::Template()->get(array(
'output' => $options['selectTemplates'],
'nodeids' => $options['nodeids'],
'templateids' => $relationMap->getRelatedIds(),
'preservekeys' => true
));
$result = $relationMap->mapMany($result, $templates, 'templates');
}
else {
$templates = API::Template()->get(array(
'nodeids' => $options['nodeids'],
'hostids' => $hostPrototypeIds,
'countOutput' => true,
'groupCount' => true
));
$templates = zbx_toHash($templates, 'hostid');
foreach ($result as $hostid => $host) {
$result[$hostid]['templates'] = isset($templates[$hostid]) ? $templates[$hostid]['rowscount'] : 0;
}
}
}
// adding inventory
if ($options['selectInventory'] !== null) {
$relationMap = $this->createRelationMap($result, 'hostid', 'hostid');
// only allow to retrieve the hostid and inventory_mode fields
$output = array();
if ($this->outputIsRequested('hostid', $options['selectInventory'])) {
$output[] = 'hostid';
}
if ($this->outputIsRequested('inventory_mode', $options['selectInventory'])) {
$output[] = 'inventory_mode';
}
$inventory = API::getApi()->select('host_inventory', array(
'output' => $output,
'filter' => array('hostid' => $hostPrototypeIds),
'nodeids' => get_current_nodeid(true)
));
$result = $relationMap->mapOne($result, zbx_toHash($inventory, 'hostid'), 'inventory');
}
return $result;
}
/**
* Deletes the given group prototype and all discovered groups.
* Deletes also group prototype children.
*
* @param array $groupPrototypeIds
*/
protected function deleteGroupPrototypes(array $groupPrototypeIds) {
// delete child group prototypes
$groupPrototypeChildren = DBfetchArray(DBselect(
'SELECT gp.group_prototypeid FROM group_prototype gp WHERE '.dbConditionInt('templateid', $groupPrototypeIds)
));
if ($groupPrototypeChildren) {
$this->deleteGroupPrototypes(zbx_objectValues($groupPrototypeChildren, 'group_prototypeid'));
}
// delete discovered groups
$hostGroups = DBfetchArray(DBselect(
'SELECT groupid FROM group_discovery WHERE '.dbConditionInt('parent_group_prototypeid', $groupPrototypeIds)
));
if ($hostGroups) {
API::HostGroup()->delete(zbx_objectValues($hostGroups, 'groupid'), true);
}
// delete group prototypes
DB::delete('group_prototype', array('group_prototypeid' => $groupPrototypeIds));
}
}
|