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
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2016 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 to perform low level http tests related actions.
*/
class CHttpTestManager {
const ITEM_HISTORY = 30;
const ITEM_TRENDS = 90;
/**
* Changed steps names.
* array(
* testid1 => array(nameold1 => namenew1, nameold2 => namenew2),
* ...
* )
*
* @var array
*/
protected $changedSteps = [];
/**
* Map of parent http test id to child http test id.
*
* @var array
*/
protected $httpTestParents = [];
/**
* Save http test to db.
*
* @param array $httpTests
*
* @return array
*/
public function persist(array $httpTests) {
$this->changedSteps = $this->findChangedStepNames($httpTests);
$httpTests = $this->save($httpTests);
$this->inherit($httpTests);
return $httpTests;
}
/**
* Find steps where name was changed.
*
* @return array
*/
protected function findChangedStepNames(array $httpTests) {
$httpSteps = [];
$result = [];
foreach ($httpTests as $httpTest) {
if (isset($httpTest['httptestid']) && isset($httpTest['steps'])) {
foreach ($httpTest['steps'] as $step) {
if (isset($step['httpstepid']) && isset($step['name'])) {
$httpSteps[$step['httpstepid']] = $step['name'];
}
}
}
}
if (!empty($httpSteps)) {
$dbCursor = DBselect(
'SELECT hs.httpstepid,hs.httptestid,hs.name'.
' FROM httpstep hs'.
' WHERE '.dbConditionInt('hs.httpstepid', array_keys($httpSteps))
);
while ($dbStep = DBfetch($dbCursor)) {
if ($httpSteps[$dbStep['httpstepid']] != $dbStep['name']) {
$result[$dbStep['httptestid']][$httpSteps[$dbStep['httpstepid']]] = $dbStep['name'];
}
}
}
return $result;
}
/**
* Create new http tests.
*
* @param array $httpTests
*
* @return array
*/
public function create(array $httpTests) {
$httpTestIds = DB::insert('httptest', $httpTests);
foreach ($httpTests as $hnum => $httpTest) {
$httpTests[$hnum]['httptestid'] = $httpTestIds[$hnum];
$httpTest['httptestid'] = $httpTestIds[$hnum];
$this->createHttpTestItems($httpTest);
$this->createStepsReal($httpTest, $httpTest['steps']);
}
// TODO: REMOVE info
$dbCursor = DBselect(
'SELECT ht.name,h.name AS hostname'.
' FROM httptest ht'.
' INNER JOIN hosts h ON ht.hostid=h.hostid'.
' WHERE '.dbConditionInt('ht.httptestid', zbx_objectValues($httpTests, 'httptestid'))
);
while ($httpTest = DBfetch($dbCursor)) {
info(_s('Created: Web scenario "%1$s" on "%2$s".', $httpTest['name'], $httpTest['hostname']));
}
return $httpTests;
}
/**
* Update http tests.
*
* @param array $httpTests
*
* @return array
*/
public function update(array $httpTests) {
$httpTestIds = zbx_objectValues($httpTests, 'httptestid');
$dbHttpTest = API::HttpTest()->get([
'output' => API_OUTPUT_EXTEND,
'httptestids' => $httpTestIds,
'selectSteps' => API_OUTPUT_EXTEND,
'editable' => true,
'preservekeys' => true
]);
$deleteStepItemIds = [];
$steps_create = [];
$steps_update = [];
foreach ($httpTests as $key => $httpTest) {
DB::update('httptest', [
'values' => $httpTest,
'where' => ['httptestid' => $httpTest['httptestid']]
]);
$checkItemsUpdate = [];
$updateFields = [];
$itemids = [];
$dbCheckItems = DBselect(
'SELECT i.itemid,hi.type'.
' FROM items i,httptestitem hi'.
' WHERE hi.httptestid='.zbx_dbstr($httpTest['httptestid']).
' AND hi.itemid=i.itemid'
);
while ($checkitem = DBfetch($dbCheckItems)) {
$itemids[] = $checkitem['itemid'];
if (isset($httpTest['name'])) {
$updateFields['key_'] = $this->getTestKey($checkitem['type'], $httpTest['name']);
}
if (isset($httpTest['status'])) {
$updateFields['status'] = (HTTPTEST_STATUS_ACTIVE == $httpTest['status']) ? ITEM_STATUS_ACTIVE : ITEM_STATUS_DISABLED;
}
if (isset($httpTest['delay'])) {
$updateFields['delay'] = $httpTest['delay'];
}
if (!empty($updateFields)) {
$checkItemsUpdate[] = [
'values' => $updateFields,
'where' => ['itemid' => $checkitem['itemid']]
];
}
}
DB::update('items', $checkItemsUpdate);
if (isset($httpTest['applicationid'])) {
$this->updateItemsApplications($itemids, $httpTest['applicationid']);
}
if (array_key_exists('steps', $httpTest)) {
$db_http_test = $dbHttpTest[$httpTest['httptestid']];
$dbSteps = zbx_toHash($db_http_test['steps'], 'httpstepid');
foreach ($httpTest['steps'] as $webstep) {
if (isset($webstep['httpstepid']) && isset($dbSteps[$webstep['httpstepid']])) {
$steps_update[$key][] = $webstep;
unset($dbSteps[$webstep['httpstepid']]);
}
elseif (!isset($webstep['httpstepid'])) {
$steps_create[$key][] = $webstep;
}
if ($db_http_test['templateid'] != 0) {
unset($dbSteps[$webstep['httpstepid']]);
}
}
$stepidsDelete = array_keys($dbSteps);
if (!empty($stepidsDelete)) {
$result = DBselect(
'SELECT hi.itemid FROM httpstepitem hi WHERE '.dbConditionInt('hi.httpstepid', $stepidsDelete)
);
foreach (DBfetchColumn($result, 'itemid') as $itemId) {
$deleteStepItemIds[] = $itemId;
}
DB::delete('httpstep', ['httpstepid' => $stepidsDelete]);
}
// IF application ID was not set, use the ID from DB so new items can be linked.
if (!array_key_exists('applicationid', $httpTest)) {
$httpTest['applicationid'] = $db_http_test['applicationid'];
}
elseif (bccomp($httpTest['applicationid'], $db_http_test['applicationid'])) {
unset($httpTest['applicationid']);
}
}
}
// Old items must be deleted prior to createStepsReal() since identical items cannot be created in DB.
if ($deleteStepItemIds) {
API::Item()->delete($deleteStepItemIds, true);
}
foreach ($httpTests as $key => $httpTest) {
if (array_key_exists('steps', $httpTest)) {
if (array_key_exists($key, $steps_update)) {
$this->updateStepsReal($httpTest, $steps_update[$key]);
}
if (array_key_exists($key, $steps_create)) {
$this->createStepsReal($httpTest, $steps_create[$key]);
}
}
else {
if (isset($httpTest['applicationid'])) {
$dbStepIds = DBfetchColumn(DBselect(
'SELECT i.itemid'.
' FROM items i'.
' INNER JOIN httpstepitem hi ON hi.itemid=i.itemid'.
' WHERE '.dbConditionInt('hi.httpstepid', zbx_objectValues($dbHttpTest[$httpTest['httptestid']]['steps'], 'httpstepid')))
, 'itemid'
);
$this->updateItemsApplications($dbStepIds, $httpTest['applicationid']);
}
if (isset($httpTest['status'])) {
$status = ($httpTest['status'] == HTTPTEST_STATUS_ACTIVE) ? ITEM_STATUS_ACTIVE : ITEM_STATUS_DISABLED;
$itemIds = DBfetchColumn(DBselect(
'SELECT hsi.itemid'.
' FROM httpstep hs,httpstepitem hsi'.
' WHERE hs.httpstepid=hsi.httpstepid'.
' AND hs.httptestid='.zbx_dbstr($httpTest['httptestid'])
), 'itemid');
DB::update('items', [
'values' => ['status' => $status],
'where' => ['itemid' => $itemIds]
]);
}
}
}
// TODO: REMOVE info
$dbCursor = DBselect(
'SELECT ht.name,h.name AS hostname'.
' FROM httptest ht'.
' INNER JOIN hosts h ON ht.hostid=h.hostid'.
' WHERE '.dbConditionInt('ht.httptestid', zbx_objectValues($httpTests, 'httptestid'))
);
while ($httpTest = DBfetch($dbCursor)) {
info(_s('Updated: Web scenario "%1$s" on "%2$s".', $httpTest['name'], $httpTest['hostname']));
}
return $httpTests;
}
/**
* Link http tests in template to hosts.
*
* @param $templateId
* @param $hostIds
*/
public function link($templateId, $hostIds) {
$hostIds = zbx_toArray($hostIds);
$httpTests = [];
$dbCursor = DBselect(
'SELECT ht.httptestid,ht.name,ht.applicationid,ht.delay,ht.status,ht.variables,ht.agent,'.
'ht.authentication,ht.http_user,ht.http_password,ht.http_proxy,ht.retries,ht.hostid,ht.templateid,'.
'ht.headers,ht.verify_peer,ht.verify_host,ht.ssl_cert_file,ht.ssl_key_file,ht.ssl_key_password'.
' FROM httptest ht'.
' WHERE ht.hostid='.zbx_dbstr($templateId)
);
while ($dbHttpTest = DBfetch($dbCursor)) {
$httpTests[$dbHttpTest['httptestid']] = $dbHttpTest;
}
$dbCursor = DBselect(
'SELECT hs.httpstepid,hs.httptestid,hs.name,hs.no,hs.url,hs.timeout,hs.posts,hs.variables,'.
'hs.required,hs.status_codes,hs.headers,hs.follow_redirects,hs.retrieve_mode'.
' FROM httpstep hs'.
' WHERE '.dbConditionInt('hs.httptestid', array_keys($httpTests))
);
while ($dbHttpStep = DBfetch($dbCursor)) {
$httpTests[$dbHttpStep['httptestid']]['steps'][] = $dbHttpStep;
}
$this->inherit($httpTests, $hostIds);
}
/**
* Inherit passed http tests to hosts.
* If $hostIds is empty that means that we need to inherit all $httpTests to hosts which are linked to templates
* where $httpTests belong.
* *
* @param array $httpTests
* @param array $hostIds
*
* @return bool
*/
public function inherit(array $httpTests, array $hostIds = []) {
$hostsTemplatesMap = $this->getChildHostsFromHttpTests($httpTests, $hostIds);
if (empty($hostsTemplatesMap)) {
return true;
}
$preparedHttpTests = $this->prepareInheritedHttpTests($httpTests, $hostsTemplatesMap);
$inheritedHttpTests = $this->save($preparedHttpTests);
$this->inherit($inheritedHttpTests);
return true;
}
/**
* Get array with hosts that are linked with templates which passed http tests belong to as key and templateid that host
* is linked to as value.
* If second parameter $hostIds is not empty, result should contain only passed host ids.
*
* @param array $httpTests
* @param array $hostIds
*
* @return array
*/
protected function getChildHostsFromHttpTests(array $httpTests, array $hostIds = []) {
$hostsTemplatesMap = [];
$sqlWhere = $hostIds ? ' AND '.dbConditionInt('ht.hostid', $hostIds) : '';
$dbCursor = DBselect(
'SELECT ht.templateid,ht.hostid'.
' FROM hosts_templates ht'.
' WHERE '.dbConditionInt('ht.templateid', zbx_objectValues($httpTests, 'hostid')).
$sqlWhere
);
while ($dbHost = DBfetch($dbCursor)) {
$hostsTemplatesMap[$dbHost['hostid']] = $dbHost['templateid'];
}
return $hostsTemplatesMap;
}
/**
* Generate http tests data for inheritance.
* Using passed parameters decide if new http tests must be created on host or existing ones must be updated.
*
* @param array $httpTests which we need to inherit
* @param array $hostsTemplatesMap
*
* @throws Exception
* @return array with http tests, existing apps have 'httptestid' key.
*/
protected function prepareInheritedHttpTests(array $httpTests, array $hostsTemplatesMap) {
$hostHttpTests = $this->getHttpTestsMapsByHostIds(array_keys($hostsTemplatesMap));
$result = [];
foreach ($httpTests as $httpTest) {
$httpTestId = $httpTest['httptestid'];
foreach ($hostHttpTests as $hostId => $hostHttpTest) {
// if http test template is not linked to host we skip it
if ($hostsTemplatesMap[$hostId] != $httpTest['hostid']) {
continue;
}
$exHttpTest = null;
// update by templateid
if (isset($hostHttpTest['byTemplateId'][$httpTestId])) {
$exHttpTest = $hostHttpTest['byTemplateId'][$httpTestId];
// need to check templateid here too in case we update linked http test to name that already exists on linked host
if (isset($httpTest['name']) && isset($hostHttpTest['byName'][$httpTest['name']])
&& !idcmp($exHttpTest['templateid'], $hostHttpTest['byName'][$httpTest['name']]['templateid'])) {
$host = DBfetch(DBselect('SELECT h.name FROM hosts h WHERE h.hostid='.zbx_dbstr($hostId)));
throw new Exception(_s('Web scenario "%1$s" already exists on host "%2$s".', $exHttpTest['name'], $host['name']));
}
}
// update by name
else if (isset($hostHttpTest['byName'][$httpTest['name']])) {
$exHttpTest = $hostHttpTest['byName'][$httpTest['name']];
if ($exHttpTest['templateid'] > 0 || !$this->compareHttpSteps($httpTest, $exHttpTest)) {
$host = DBfetch(DBselect('SELECT h.name FROM hosts h WHERE h.hostid='.zbx_dbstr($hostId)));
throw new Exception(_s('Web scenario "%1$s" already exists on host "%2$s".', $exHttpTest['name'], $host['name']));
}
$this->createLinkageBetweenHttpTests($httpTestId, $exHttpTest['httptestid']);
continue;
}
$newHttpTest = $httpTest;
$newHttpTest['hostid'] = $hostId;
$newHttpTest['templateid'] = $httpTestId;
if ($exHttpTest) {
$newHttpTest['httptestid'] = $exHttpTest['httptestid'];
$this->setHttpTestParent($exHttpTest['httptestid'], $httpTestId);
if (isset($newHttpTest['steps'])) {
$newHttpTest['steps'] = $this->prepareHttpSteps($httpTest['steps'], $exHttpTest['httptestid']);
}
}
else {
unset($newHttpTest['httptestid']);
}
if (!empty($newHttpTest['applicationid'])) {
$newHttpTest['applicationid'] = $this->findChildApplication($newHttpTest['applicationid'], $hostId);
}
$result[] = $newHttpTest;
}
}
return $result;
}
/**
* Create linkage between two http tests.
* If we found existing http test by name and steps, we only add linkage, i.e. change templateid
*
* @param $parentId
* @param $childId
*/
protected function createLinkageBetweenHttpTests($parentId, $childId) {
DB::update('httptest', [
'values' => ['templateid' => $parentId],
'where' => ['httptestid' => $childId]
]);
$dbCursor = DBselect(
'SELECT i1.itemid AS parentid,i2.itemid AS childid'.
' FROM httptestitem hti1,httptestitem hti2,items i1,items i2'.
' WHERE hti1.httptestid='.zbx_dbstr($parentId).
' AND hti2.httptestid='.zbx_dbstr($childId).
' AND hti1.itemid=i1.itemid'.
' AND hti2.itemid=i2.itemid'.
' AND i1.key_=i2.key_'
);
while ($dbItems = DBfetch($dbCursor)) {
DB::update('items', [
'values' => ['templateid' => $dbItems['parentid']],
'where' => ['itemid' => $dbItems['childid']]
]);
}
$dbCursor = DBselect(
'SELECT i1.itemid AS parentid,i2.itemid AS childid'.
' FROM httpstepitem hsi1,httpstepitem hsi2,httpstep hs1,httpstep hs2,items i1,items i2'.
' WHERE hs1.httptestid='.zbx_dbstr($parentId).
' AND hs2.httptestid='.zbx_dbstr($childId).
' AND hsi1.itemid=i1.itemid'.
' AND hsi2.itemid=i2.itemid'.
' AND hs1.httpstepid=hsi1.httpstepid'.
' AND hs2.httpstepid=hsi2.httpstepid'.
' AND i1.key_=i2.key_'
);
while ($dbItems = DBfetch($dbCursor)) {
DB::update('items', [
'values' => ['templateid' => $dbItems['parentid']],
'where' => ['itemid' => $dbItems['childid']]
]);
}
}
/**
* Find application with same name on given host.
*
* @param $parentAppId
* @param $childHostId
*
* @return string
*/
protected function findChildApplication($parentAppId, $childHostId) {
$childAppId = DBfetch(DBselect(
'SELECT a2.applicationid'.
' FROM applications a1'.
' INNER JOIN applications a2 ON a1.name=a2.name'.
' WHERE a1.applicationid='.zbx_dbstr($parentAppId).
' AND a2.hostid='.zbx_dbstr($childHostId))
);
return $childAppId['applicationid'];
}
/**
* Find and set first parent id for http test.
*
* @param $id
* @param $parentId
*/
protected function setHttpTestParent($id, $parentId) {
while (isset($this->httpTestParents[$parentId])) {
$parentId = $this->httpTestParents[$parentId];
}
$this->httpTestParents[$id] = $parentId;
}
/**
* Get hosts http tests for each passed hosts.
* Each host has two hashes with http tests, one with name keys other with templateid keys.
*
* Resulting structure is:
* array(
* 'hostid1' => array(
* 'byName' => array(ht1data, ht2data, ...),
* 'nyTemplateId' => array(ht1data, ht2data, ...)
* ), ...
* );
*
* @param array $hostIds
*
* @return array
*/
protected function getHttpTestsMapsByHostIds(array $hostIds) {
$hostHttpTests = [];
foreach ($hostIds as $hostid) {
$hostHttpTests[$hostid] = ['byName' => [], 'byTemplateId' => []];
}
$dbCursor = DBselect(
'SELECT ht.httptestid,ht.name,ht.hostid,ht.templateid'.
' FROM httptest ht'.
' WHERE '.dbConditionInt('ht.hostid', $hostIds)
);
while ($dbHttpTest = DBfetch($dbCursor)) {
$hostHttpTests[$dbHttpTest['hostid']]['byName'][$dbHttpTest['name']] = $dbHttpTest;
if ($dbHttpTest['templateid']) {
$hostHttpTests[$dbHttpTest['hostid']]['byTemplateId'][$dbHttpTest['templateid']] = $dbHttpTest;
}
}
return $hostHttpTests;
}
/**
* Compare steps for http tests.
*
* @param array $httpTest steps must be included under 'steps'
* @param array $exHttpTest
*
* @return bool
*/
protected function compareHttpSteps(array $httpTest, array $exHttpTest) {
$firstHash = '';
$secondHash = '';
CArrayHelper::sort($httpTest['steps'], ['no']);
foreach ($httpTest['steps'] as $step) {
$firstHash .= $step['no'].$step['name'];
}
$dbHttpTestSteps = DBfetchArray(DBselect(
'SELECT hs.name,hs.no'.
' FROM httpstep hs'.
' WHERE hs.httptestid='.zbx_dbstr($exHttpTest['httptestid'])
));
CArrayHelper::sort($dbHttpTestSteps, ['no']);
foreach ($dbHttpTestSteps as $dbHttpStep) {
$secondHash .= $dbHttpStep['no'].$dbHttpStep['name'];
}
return ($firstHash === $secondHash);
}
/**
* Save http tests. If http test has httptestid it gets updated otherwise a new one is created.
*
* @param array $httpTests
*
* @return array
*/
protected function save(array $httpTests) {
$httpTestsCreate = [];
$httpTestsUpdate = [];
foreach ($httpTests as $httpTest) {
if (isset($httpTest['httptestid'])) {
$httpTestsUpdate[] = $httpTest;
}
else {
$httpTestsCreate[] = $httpTest;
}
}
if (!empty($httpTestsCreate)) {
$newHttpTests = $this->create($httpTestsCreate);
foreach ($newHttpTests as $num => $newHttpTest) {
$httpTests[$num]['httptestid'] = $newHttpTest['httptestid'];
}
}
if (!empty($httpTestsUpdate)) {
$this->update($httpTestsUpdate);
}
return $httpTests;
}
/**
* @param array $steps
* @param $exHttpTestId
*
* @return array
*/
protected function prepareHttpSteps(array $steps, $exHttpTestId) {
$exSteps = [];
$dbCursor = DBselect(
'SELECT hs.httpstepid,hs.name'.
' FROM httpstep hs'.
' WHERE hs.httptestid='.zbx_dbstr($exHttpTestId)
);
while ($dbHttpStep = DBfetch($dbCursor)) {
$exSteps[$dbHttpStep['name']] = $dbHttpStep['httpstepid'];
}
$result = [];
foreach ($steps as $step) {
$parentTestId = $this->httpTestParents[$exHttpTestId];
if (isset($this->changedSteps[$parentTestId][$step['name']])) {
$stepName = $this->changedSteps[$parentTestId][$step['name']];
}
else {
$stepName = $step['name'];
}
if (isset($exSteps[$stepName])) {
$step['httpstepid'] = $exSteps[$stepName];
$step['httptestid'] = $exHttpTestId;
}
$result[] = $step;
}
return $result;
}
/**
* Create items required for web scenario.
*
* @param array $httpTest
*
* @throws Exception
*/
protected function createHttpTestItems(array $httpTest) {
$checkitems = [
[
'name' => 'Download speed for scenario "$1".',
'key_' => $this->getTestKey(HTTPSTEP_ITEM_TYPE_IN, $httpTest['name']),
'value_type' => ITEM_VALUE_TYPE_FLOAT,
'units' => 'Bps',
'httptestitemtype' => HTTPSTEP_ITEM_TYPE_IN
],
[
'name' => 'Failed step of scenario "$1".',
'key_' => $this->getTestKey(HTTPSTEP_ITEM_TYPE_LASTSTEP, $httpTest['name']),
'value_type' => ITEM_VALUE_TYPE_UINT64,
'units' => '',
'httptestitemtype' => HTTPSTEP_ITEM_TYPE_LASTSTEP
],
[
'name' => 'Last error message of scenario "$1".',
'key_' => $this->getTestKey(HTTPSTEP_ITEM_TYPE_LASTERROR, $httpTest['name']),
'value_type' => ITEM_VALUE_TYPE_STR,
'units' => '',
'httptestitemtype' => HTTPSTEP_ITEM_TYPE_LASTERROR
]
];
// if this is a template scenario, fetch the parent http items to link inherited items to them
$parentItems = [];
if (isset($httpTest['templateid']) && $httpTest['templateid']) {
$parentItems = DBfetchArrayAssoc(DBselect(
'SELECT i.itemid,i.key_'.
' FROM items i,httptestitem hti'.
' WHERE i.itemid=hti.itemid'.
' AND hti.httptestid='.zbx_dbstr($httpTest['templateid'])
), 'key_');
}
$insertItems = [];
foreach ($checkitems as $item) {
$item['data_type'] = ITEM_DATA_TYPE_DECIMAL;
$item['hostid'] = $httpTest['hostid'];
$item['delay'] = $httpTest['delay'];
$item['type'] = ITEM_TYPE_HTTPTEST;
$item['history'] = self::ITEM_HISTORY;
$item['trends'] = self::ITEM_TRENDS;
$item['status'] = (HTTPTEST_STATUS_ACTIVE == $httpTest['status'])
? ITEM_STATUS_ACTIVE
: ITEM_STATUS_DISABLED;
if (isset($parentItems[$item['key_']])) {
$item['templateid'] = $parentItems[$item['key_']]['itemid'];
}
$insertItems[] = $item;
}
$newTestItemIds = DB::insert('items', $insertItems);
if (array_key_exists('applicationid', $httpTest)) {
$this->createItemsApplications($newTestItemIds, $httpTest['applicationid']);
}
$httpTestItems = [];
foreach ($checkitems as $inum => $item) {
$httpTestItems[] = [
'httptestid' => $httpTest['httptestid'],
'itemid' => $newTestItemIds[$inum],
'type' => $item['httptestitemtype']
];
}
DB::insert('httptestitem', $httpTestItems);
}
/**
* Create web scenario steps with items.
*
* @param $httpTest
* @param $websteps
*
* @throws Exception
*/
protected function createStepsReal($httpTest, $websteps) {
foreach ($websteps as $snum => $webstep) {
$websteps[$snum]['httptestid'] = $httpTest['httptestid'];
}
$webstepids = DB::insert('httpstep', $websteps);
// if this is a template scenario, fetch the parent http items to link inherited items to them
$parentStepItems = [];
if (isset($httpTest['templateid']) && $httpTest['templateid']) {
$parentStepItems = DBfetchArrayAssoc(DBselect(
'SELECT i.itemid,i.key_,hsi.httpstepid'.
' FROM items i,httpstepitem hsi,httpstep hs'.
' WHERE i.itemid=hsi.itemid'.
' AND hsi.httpstepid=hs.httpstepid'.
' AND hs.httptestid='.zbx_dbstr($httpTest['templateid'])
), 'key_');
}
foreach ($websteps as $snum => $webstep) {
$webstepid = $webstepids[$snum];
$stepitems = [
[
'name' => 'Download speed for step "$2" of scenario "$1".',
'key_' => $this->getStepKey(HTTPSTEP_ITEM_TYPE_IN, $httpTest['name'], $webstep['name']),
'value_type' => ITEM_VALUE_TYPE_FLOAT,
'units' => 'Bps',
'httpstepitemtype' => HTTPSTEP_ITEM_TYPE_IN
],
[
'name' => 'Response time for step "$2" of scenario "$1".',
'key_' => $this->getStepKey(HTTPSTEP_ITEM_TYPE_TIME, $httpTest['name'], $webstep['name']),
'value_type' => ITEM_VALUE_TYPE_FLOAT,
'units' => 's',
'httpstepitemtype' => HTTPSTEP_ITEM_TYPE_TIME
],
[
'name' => 'Response code for step "$2" of scenario "$1".',
'key_' => $this->getStepKey(HTTPSTEP_ITEM_TYPE_RSPCODE, $httpTest['name'], $webstep['name']),
'value_type' => ITEM_VALUE_TYPE_UINT64,
'units' => '',
'httpstepitemtype' => HTTPSTEP_ITEM_TYPE_RSPCODE
]
];
if (!isset($httpTest['delay']) || !isset($httpTest['status'])) {
$dbTest = DBfetch(DBselect('SELECT ht.delay,ht.status FROM httptest ht WHERE ht.httptestid='.zbx_dbstr($httpTest['httptestid'])));
$delay = $dbTest['delay'];
$status = $dbTest['status'];
}
else {
$delay = $httpTest['delay'];
$status = $httpTest['status'];
}
$insertItems = [];
$stepItemids = [];
foreach ($stepitems as $item) {
$item['hostid'] = $httpTest['hostid'];
$item['delay'] = $delay;
$item['type'] = ITEM_TYPE_HTTPTEST;
$item['data_type'] = ITEM_DATA_TYPE_DECIMAL;
$item['history'] = self::ITEM_HISTORY;
$item['trends'] = self::ITEM_TRENDS;
$item['status'] = (HTTPTEST_STATUS_ACTIVE == $status) ? ITEM_STATUS_ACTIVE : ITEM_STATUS_DISABLED;
if (isset($parentStepItems[$item['key_']])) {
$item['templateid'] = $parentStepItems[$item['key_']]['itemid'];
}
$insertItems[] = $item;
}
if ($insertItems) {
$stepItemids = DB::insert('items', $insertItems);
if (array_key_exists('applicationid', $httpTest)) {
$this->createItemsApplications($stepItemids, $httpTest['applicationid']);
}
}
$webstepitems = [];
foreach ($stepitems as $inum => $item) {
$webstepitems[] = [
'httpstepid' => $webstepid,
'itemid' => $stepItemids[$inum],
'type' => $item['httpstepitemtype']
];
}
DB::insert('httpstepitem', $webstepitems);
}
}
/**
* Update web scenario steps.
*
* @param $httpTest
* @param $websteps
*
* @throws Exception
*/
protected function updateStepsReal($httpTest, $websteps) {
$item_key_parser = new CItemKey();
// get all used keys
$webstepids = zbx_objectValues($websteps, 'httpstepid');
$dbKeys = DBfetchArrayAssoc(DBselect(
'SELECT i.key_'.
' FROM items i,httpstepitem hi'.
' WHERE '.dbConditionInt('hi.httpstepid', $webstepids).
' AND hi.itemid=i.itemid')
, 'key_'
);
foreach ($websteps as $webstep) {
DB::update('httpstep', [
'values' => $webstep,
'where' => ['httpstepid' => $webstep['httpstepid']]
]);
// update item keys
$itemids = [];
$stepitemsUpdate = $updateFields = [];
$dbStepItems = DBselect(
'SELECT i.itemid,i.key_,hi.type'.
' FROM items i,httpstepitem hi'.
' WHERE hi.httpstepid='.zbx_dbstr($webstep['httpstepid']).
' AND hi.itemid=i.itemid'
);
while ($stepitem = DBfetch($dbStepItems)) {
$itemids[] = $stepitem['itemid'];
if (isset($httpTest['name']) || isset($webstep['name'])) {
if (!isset($httpTest['name']) || !isset($webstep['name'])) {
$item_key_parser->parse($stepitem['key_']);
if (!isset($httpTest['name'])) {
$httpTest['name'] = $item_key_parser->getParam(0);
}
if (!isset($webstep['name'])) {
$webstep['name'] = $item_key_parser->getParam(1);
}
}
$updateFields['key_'] = $this->getStepKey($stepitem['type'], $httpTest['name'], $webstep['name']);
}
if (isset($dbKeys[$updateFields['key_']])) {
unset($updateFields['key_']);
}
if (isset($httpTest['status'])) {
$updateFields['status'] = (HTTPTEST_STATUS_ACTIVE == $httpTest['status']) ? ITEM_STATUS_ACTIVE : ITEM_STATUS_DISABLED;
}
if (isset($httpTest['delay'])) {
$updateFields['delay'] = $httpTest['delay'];
}
if (!empty($updateFields)) {
$stepitemsUpdate[] = [
'values' => $updateFields,
'where' => ['itemid' => $stepitem['itemid']]
];
}
}
if ($stepitemsUpdate) {
DB::update('items', $stepitemsUpdate);
}
if (array_key_exists('applicationid', $httpTest)) {
$this->updateItemsApplications($itemids, $httpTest['applicationid']);
}
}
}
/**
* Update web item application linkage.
*
* @param array $itemids
* @param string $applicationid
*/
protected function updateItemsApplications(array $itemids, $applicationid) {
if ($applicationid == 0) {
DB::delete('items_applications', ['itemid' => $itemids]);
}
else {
$linked_itemids = DBfetchColumn(
DBselect('SELECT ia.itemid FROM items_applications ia WHERE '.dbConditionInt('ia.itemid', $itemids)),
'itemid'
);
if ($linked_itemids) {
DB::update('items_applications', [
'values' => ['applicationid' => $applicationid],
'where' => ['itemid' => $linked_itemids]
]);
}
$this->createItemsApplications(array_diff($itemids, $linked_itemids), $applicationid);
}
}
/**
* Create web item application linkage.
*
* @param array $itemids
* @param string $applicationid
*/
protected function createItemsApplications(array $itemids, $applicationid) {
if ($applicationid != 0 && $itemids) {
$insert = [];
foreach ($itemids as $itemid) {
$insert[] = ['itemid' => $itemid, 'applicationid' => $applicationid];
}
DB::insert('items_applications', $insert);
}
}
/**
* Get item key for test item.
*
* @param int $type
* @param string $testName
*
* @return bool|string
*/
protected function getTestKey($type, $testName) {
switch ($type) {
case HTTPSTEP_ITEM_TYPE_IN:
return 'web.test.in['.quoteItemKeyParam($testName).',,bps]';
case HTTPSTEP_ITEM_TYPE_LASTSTEP:
return 'web.test.fail['.quoteItemKeyParam($testName).']';
case HTTPSTEP_ITEM_TYPE_LASTERROR:
return 'web.test.error['.quoteItemKeyParam($testName).']';
}
return false;
}
/**
* Get item key for step item.
*
* @param int $type
* @param string $testName
* @param string $stepName
*
* @return bool|string
*/
protected function getStepKey($type, $testName, $stepName) {
switch ($type) {
case HTTPSTEP_ITEM_TYPE_IN:
return 'web.test.in['.quoteItemKeyParam($testName).','.quoteItemKeyParam($stepName).',bps]';
case HTTPSTEP_ITEM_TYPE_TIME:
return 'web.test.time['.quoteItemKeyParam($testName).','.quoteItemKeyParam($stepName).',resp]';
case HTTPSTEP_ITEM_TYPE_RSPCODE:
return 'web.test.rspcode['.quoteItemKeyParam($testName).','.quoteItemKeyParam($stepName).']';
}
return false;
}
/**
* Returns the data about the last execution of the given HTTP tests.
*
* The following values will be returned for each executed HTTP test:
* - lastcheck - time when the test has been executed last
* - lastfailedstep - number of the last failed step
* - error - error message
*
* If a HTTP test has never been executed, no value will be returned.
*
* @param array $httpTestIds
*
* @return array an array with HTTP test IDs as keys and arrays of data as values
*/
public function getLastData(array $httpTestIds) {
$httpItems = DBfetchArray(DBselect(
'SELECT hti.httptestid,hti.type,i.itemid,i.value_type'.
' FROM httptestitem hti,items i'.
' WHERE hti.itemid=i.itemid'.
' AND hti.type IN ('.HTTPSTEP_ITEM_TYPE_LASTSTEP.','.HTTPSTEP_ITEM_TYPE_LASTERROR.')'.
' AND '.dbConditionInt('hti.httptestid', $httpTestIds)
));
$history = Manager::History()->getLast($httpItems);
$data = [];
foreach ($httpItems as $httpItem) {
if (isset($history[$httpItem['itemid']])) {
if (!isset($data[$httpItem['httptestid']])) {
$data[$httpItem['httptestid']] = [
'lastcheck' => null,
'lastfailedstep' => null,
'error' => null
];
}
$itemHistory = $history[$httpItem['itemid']][0];
if ($httpItem['type'] == HTTPSTEP_ITEM_TYPE_LASTSTEP) {
$data[$httpItem['httptestid']]['lastcheck'] = $itemHistory['clock'];
$data[$httpItem['httptestid']]['lastfailedstep'] = $itemHistory['value'];
}
else {
$data[$httpItem['httptestid']]['error'] = $itemHistory['value'];
}
}
}
return $data;
}
/**
* Get httptest step items by "httptestid".
*
* @param string $httptestid ID of a web scenario
*
* @return array
*/
public function getHttpStepItems($httptestid) {
return DBfetchArray(DBselect(
'SELECT hi.itemid'.
' FROM httpstepitem hi,httpstep hs'.
' WHERE hi.httpstepid=hs.httpstepid'.
' AND hs.httptestid='.zbx_dbstr($httptestid)
));
}
}
|