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
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2021 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.
**/
/**
* Controller to build preprocessing test dialog.
*/
class CControllerPopupItemTestEdit extends CControllerPopupItemTest {
protected function checkInput() {
$fields = [
'authtype' => 'in '.implode(',', [HTTPTEST_AUTH_NONE, HTTPTEST_AUTH_BASIC, HTTPTEST_AUTH_NTLM, HTTPTEST_AUTH_KERBEROS, ITEM_AUTHTYPE_PASSWORD, ITEM_AUTHTYPE_PUBLICKEY]),
'data' => 'array',
'delay' => 'string',
'get_value' => 'in 0,1',
'headers' => 'array',
'hostid' => 'db hosts.hostid',
'http_authtype' => 'in '.implode(',', [HTTPTEST_AUTH_NONE, HTTPTEST_AUTH_BASIC, HTTPTEST_AUTH_NTLM, HTTPTEST_AUTH_KERBEROS, ITEM_AUTHTYPE_PASSWORD, ITEM_AUTHTYPE_PUBLICKEY]),
'http_password' => 'string',
'http_proxy' => 'string',
'http_username' => 'string',
'follow_redirects' => 'in 0,1',
'key' => 'string',
'interfaceid' => 'db interface.interfaceid',
'ipmi_sensor' => 'string',
'itemid' => 'db items.itemid',
'item_type' => 'in '.implode(',', [ITEM_TYPE_ZABBIX, ITEM_TYPE_TRAPPER, ITEM_TYPE_SIMPLE, ITEM_TYPE_INTERNAL, ITEM_TYPE_ZABBIX_ACTIVE, ITEM_TYPE_AGGREGATE, ITEM_TYPE_HTTPTEST, ITEM_TYPE_EXTERNAL, ITEM_TYPE_DB_MONITOR, ITEM_TYPE_IPMI, ITEM_TYPE_SSH, ITEM_TYPE_TELNET, ITEM_TYPE_CALCULATED, ITEM_TYPE_JMX, ITEM_TYPE_SNMPTRAP, ITEM_TYPE_DEPENDENT, ITEM_TYPE_HTTPAGENT, ITEM_TYPE_SNMP]),
'jmx_endpoint' => 'string',
'output_format' => 'in '.implode(',', [HTTPCHECK_STORE_RAW, HTTPCHECK_STORE_JSON]),
'params_ap' => 'string',
'params_es' => 'string',
'params_f' => 'string',
'password' => 'string',
'post_type' => 'in '.implode(',', [ZBX_POSTTYPE_RAW, ZBX_POSTTYPE_JSON, ZBX_POSTTYPE_XML]),
'posts' => 'string',
'privatekey' => 'string',
'publickey' => 'string',
'query_fields' => 'array',
'request_method' => 'in '.implode(',', [HTTPCHECK_REQUEST_GET, HTTPCHECK_REQUEST_POST, HTTPCHECK_REQUEST_PUT, HTTPCHECK_REQUEST_HEAD]),
'retrieve_mode' => 'in '.implode(',', [HTTPTEST_STEP_RETRIEVE_MODE_CONTENT, HTTPTEST_STEP_RETRIEVE_MODE_HEADERS, HTTPTEST_STEP_RETRIEVE_MODE_BOTH]),
'show_final_result' => 'in 0,1',
'snmp_oid' => 'string',
'step_obj' => 'required|int32',
'steps' => 'array',
'ssl_cert_file' => 'string',
'ssl_key_file' => 'string',
'ssl_key_password' => 'string',
'status_codes' => 'string',
'test_type' => 'required|in '.implode(',', [self::ZBX_TEST_TYPE_ITEM, self::ZBX_TEST_TYPE_ITEM_PROTOTYPE, self::ZBX_TEST_TYPE_LLD]),
'timeout' => 'string',
'username' => 'string',
'url' => 'string',
'value_type' => 'in '.implode(',', [ITEM_VALUE_TYPE_UINT64, ITEM_VALUE_TYPE_FLOAT, ITEM_VALUE_TYPE_STR, ITEM_VALUE_TYPE_LOG, ITEM_VALUE_TYPE_TEXT]),
'valuemapid' => 'int32',
'verify_host' => 'in 0,1',
'verify_peer' => 'in 0,1'
];
$ret = $this->validateInput($fields);
if ($ret) {
$testable_item_types = self::getTestableItemTypes($this->getInput('hostid', 0));
$this->item_type = $this->hasInput('item_type') ? $this->getInput('item_type') : -1;
$this->preproc_item = self::getPreprocessingItemClassInstance($this->getInput('test_type'));
$this->is_item_testable = in_array($this->item_type, $testable_item_types);
// Check if key is valid for item types it's mandatory.
if (in_array($this->item_type, $this->item_types_has_key_mandatory)) {
$item_key_parser = new CItemKey();
if ($item_key_parser->parse($this->getInput('key', '')) != CParser::PARSE_SUCCESS) {
error(_s('Incorrect value for field "%1$s": %2$s.', 'key_', $item_key_parser->getError()));
$ret = false;
}
}
/*
* Either the item must be testable or at least one preprocessing test must be passed ("Test" button should
* be disabled otherwise).
*/
$steps = $this->getInput('steps', []);
if ($ret && $steps) {
$steps_validation_response = $this->preproc_item->validateItemPreprocessingSteps($steps);
if ($steps_validation_response !== true) {
error($steps_validation_response);
$ret = false;
}
}
elseif ($ret && !$this->is_item_testable) {
error(_s('Test of "%1$s" items is not supported.', item_type2str($this->item_type)));
$ret = false;
}
}
if (($messages = getMessages(false, null, false)) !== null) {
$this->setResponse(
(new CControllerResponseData([
'main_block' => json_encode(['errors' => $messages->toString()])
]))->disableView()
);
}
return $ret;
}
protected function doAction() {
// VMware and icmpping simple checks are not supported.
$key = $this->hasInput('key') ? $this->getInput('key') : '';
if ($this->item_type == ITEM_TYPE_SIMPLE
&& (substr($key, 0, 7) === 'vmware.' || substr($key, 0, 8) === 'icmpping')) {
$this->is_item_testable = false;
}
// Get item and host properties and values from cache.
$data = $this->getInput('data', []);
$inputs = $this->getItemTestProperties($this->getInputAll());
// Work with preprocessing steps.
$preprocessing_steps = $this->getInput('steps', []);
$preprocessing_types = zbx_objectValues($preprocessing_steps, 'type');
$preprocessing_names = get_preprocessing_types(null, false, $preprocessing_types);
$support_lldmacros = ($this->preproc_item instanceof CItemPrototype);
$show_prev = (count(array_intersect($preprocessing_types, self::$preproc_steps_using_prev_value)) > 0);
// Collect item texts and macros to later check their usage.
$texts_support_macros = [];
$texts_support_user_macros = [];
$texts_support_lld_macros = [];
$supported_macros = [];
foreach (array_keys(array_intersect_key($inputs, $this->macros_by_item_props)) as $field) {
// Special processing for calculated item formula.
if ($field === 'params_f') {
$expression_data = new CTriggerExpression(['calculated' => true, 'lldmacros' => $support_lldmacros]);
if (($result = $expression_data->parse($inputs[$field])) !== false) {
foreach ($result->getTokens() as $token) {
switch ($token['type']) {
case CTriggerExprParserResult::TOKEN_TYPE_USER_MACRO:
$texts_support_user_macros[] = $token['value'];
break;
case CTriggerExprParserResult::TOKEN_TYPE_LLD_MACRO:
$texts_support_lld_macros[] = $token['value'];
break;
case CTriggerExprParserResult::TOKEN_TYPE_STRING:
$texts_support_user_macros[] = $token['data']['string'];
$texts_support_lld_macros[] = $token['data']['string'];
break;
}
}
}
continue;
}
$macros = $this->macros_by_item_props[$field];
unset($macros['support_lld_macros'], $macros['support_user_macros']);
if ($field === 'query_fields' || $field === 'headers') {
if (!array_key_exists($field, $inputs) || !$inputs[$field]) {
continue;
}
foreach (['name', 'value'] as $key) {
$texts_having_macros = array_filter($inputs[$field][$key], function($str) {
return (strstr($str, '{') !== false);
});
if ($texts_having_macros) {
$supported_macros = array_merge_recursive($supported_macros, $macros);
$texts_support_macros = array_merge($texts_support_macros, $texts_having_macros);
$texts_support_user_macros = array_merge($texts_support_user_macros, $texts_having_macros);
if ($support_lldmacros) {
$texts_support_lld_macros = array_merge($texts_support_lld_macros, $texts_having_macros);
}
}
}
}
elseif (strstr($inputs[$field], '{') !== false) {
// Field support macros like {HOST.*}, {ITEM.*} etc.
if ($macros) {
$supported_macros = array_merge_recursive($supported_macros, $macros);
$texts_support_macros[] = $inputs[$field];
}
// Check if LLD macros are supported in field.
if ($support_lldmacros && $this->macros_by_item_props[$field]['support_lld_macros']) {
$texts_support_lld_macros[] = $inputs[$field];
}
// Check if user macros are supported in field.
if ($this->macros_by_item_props[$field]['support_user_macros']) {
$texts_support_user_macros[] = $inputs[$field];
}
}
}
// Check if if there is an interface and its details (SNMP) have macros and add them to list of macros.
if (array_key_exists('interface', $inputs) && array_key_exists('details', $inputs['interface'])) {
foreach ($inputs['interface']['details'] as $field) {
if (strstr($field, '{') !== false) {
$texts_support_user_macros[] = $field;
}
}
}
// Unset duplicate macros.
foreach ($supported_macros as &$item_macros_type) {
$item_macros_type = array_unique($item_macros_type);
}
unset($item_macros_type);
// Extract macros and apply effective values for each of them.
$usermacros = CMacrosResolverHelper::extractItemTestMacros([
'steps' => $preprocessing_steps,
'hostid' => $this->host ? $this->host['hostid'] : 0,
'delay' => $show_prev ? $this->getInput('delay', ZBX_ITEM_DELAY_DEFAULT) : '',
'texts_support_macros' => $texts_support_macros,
'texts_support_lld_macros' => $texts_support_lld_macros,
'texts_support_user_macros' => $texts_support_user_macros,
'supported_macros' => $supported_macros,
'support_lldmacros' => $support_lldmacros,
'macros_values' => $this->getSupportedMacros($inputs + ['interfaceid' => $this->getInput('interfaceid', 0)])
]);
$show_warning = false;
// Set resolved macros to previously specified values.
foreach (array_keys($usermacros['macros']) as $macro_name) {
if ($usermacros['macros'] && array_key_exists('macros', $data) && is_array($data['macros'])
&& array_key_exists($macro_name, $data['macros'])) {
// Macro values were set by user. Which means those could be intentional asterisks or empty fields.
$usermacros['macros'][$macro_name] = $data['macros'][$macro_name];
}
elseif ($usermacros['macros'][$macro_name] === ZBX_SECRET_MASK) {
/*
* Macro values were not set by user, so this means form was opened for the first time. So in this
* case check if there are secret macros. If there are, clear the values and show warning message box.
*/
$usermacros['macros'][$macro_name] = '';
$show_warning = true;
}
}
// Get previous value and time.
$prev_value = '';
$prev_time = '';
if ($show_prev && array_key_exists('prev_value', $data) && $data['prev_value'] !== '') {
$prev_value = $data['prev_value'];
// Get previous value time.
if (array_key_exists('prev_time', $data)) {
$prev_time = $data['prev_time'];
}
else {
$delay = timeUnitToSeconds($usermacros['delay']);
$prev_time = ($delay !== null && $delay > 0)
? 'now-'.$usermacros['delay']
: 'now';
}
}
// Sort macros.
ksort($usermacros['macros']);
// Add step number and name for each preprocessing step.
$num = 0;
foreach ($preprocessing_steps as &$step) {
$step['name'] = $preprocessing_names[$step['type']];
$step['num'] = ++$num;
}
unset($step);
$this->setResponse(new CControllerResponseData([
'title' => _('Test item'),
'steps' => $preprocessing_steps,
'value' => array_key_exists('value', $data) ? $data['value'] : '',
'eol' => array_key_exists('eol', $data) ? (int) $data['eol'] : ZBX_EOL_LF,
'macros' => $usermacros['macros'],
'show_prev' => $show_prev,
'prev_value' => $prev_value,
'prev_time' => $prev_time,
'hostid' => $this->getInput('hostid'),
'interfaceid' => $this->getInput('interfaceid', 0),
'test_type' => $this->getInput('test_type'),
'step_obj' => $this->getInput('step_obj'),
'show_final_result' => $this->getInput('show_final_result'),
'valuemapid' => $this->getInput('valuemapid', 0),
'get_value' => array_key_exists('get_value', $data)
? $data['get_value']
: $this->getInput('get_value', 0),
'is_item_testable' => $this->is_item_testable,
'inputs' => $inputs,
'proxies' => in_array($this->item_type, $this->items_support_proxy) ? $this->getHostProxies() : [],
'proxies_enabled' => in_array($this->item_type, $this->items_support_proxy),
'interface_address_enabled' => (array_key_exists($this->item_type, $this->items_require_interface)
&& $this->items_require_interface[$this->item_type]['address']
),
'interface_port_enabled' => (array_key_exists($this->item_type, $this->items_require_interface)
&& $this->items_require_interface[$this->item_type]['port']
),
'show_warning' => $show_warning,
'user' => [
'debug_mode' => $this->getDebugMode()
]
]));
}
}
|