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
|
<?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.
**/
class CActionCondValidator extends CValidator {
/**
* Returns true if the given $value is valid, or set's an error and returns false otherwise.
*
* @param array $condition
*
* @return bool
*/
public function validate($condition) {
// Build validators.
$discoveryCheckTypeValidator = new CLimitedSetValidator([
'values' => array_keys(discovery_check_type2str())
]);
$discoveryObjectStatusValidator = new CLimitedSetValidator([
'values' => array_keys(discovery_object_status2str())
]);
$triggerSeverityValidator = new CLimitedSetValidator([
'values' => [
TRIGGER_SEVERITY_NOT_CLASSIFIED,
TRIGGER_SEVERITY_INFORMATION,
TRIGGER_SEVERITY_WARNING,
TRIGGER_SEVERITY_AVERAGE,
TRIGGER_SEVERITY_HIGH,
TRIGGER_SEVERITY_DISASTER
]
]);
$discoveryObjectValidator = new CLimitedSetValidator([
'values' => array_keys(discovery_object2str())
]);
$eventTypeValidator = new CLimitedSetValidator([
'values' => array_keys(eventType())
]);
// Validate condition values depending on condition type.
switch ($condition['conditiontype']) {
case CONDITION_TYPE_HOST_GROUP:
case CONDITION_TYPE_TEMPLATE:
case CONDITION_TYPE_TRIGGER:
case CONDITION_TYPE_HOST:
case CONDITION_TYPE_DRULE:
case CONDITION_TYPE_PROXY:
if (zbx_empty($condition['value']) || $condition['value'] === '0') {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (is_array($condition['value'])) {
foreach ($condition['value'] as $value) {
if (zbx_empty($value) || $value == 0) {
$this->setError(
_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty'))
);
break;
}
}
}
break;
case CONDITION_TYPE_DCHECK:
if (!$condition['value']) {
$this->setError(
_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty'))
);
}
break;
case CONDITION_TYPE_DOBJECT:
if (zbx_empty($condition['value'])) {
$this->setError(
_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty'))
);
}
elseif (!$discoveryObjectValidator->validate($condition['value'])) {
$this->setError(_('Incorrect action condition discovery object.'));
}
break;
case CONDITION_TYPE_TIME_PERIOD:
$time_period_parser = new CTimePeriodsParser(['usermacros' => true]);
if ($time_period_parser->parse($condition['value']) != CParser::PARSE_SUCCESS) {
$this->setError(_('Invalid time period.'));
}
break;
case CONDITION_TYPE_DHOST_IP:
$ip_range_parser = new CIPRangeParser(['v6' => ZBX_HAVE_IPV6, 'dns' => false, 'max_ipv4_cidr' => 30]);
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (!$ip_range_parser->parse($condition['value'])) {
$this->setError(_s('Invalid action condition: %1$s.', $ip_range_parser->getError()));
}
break;
case CONDITION_TYPE_DSERVICE_TYPE:
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (!$discoveryCheckTypeValidator->validate($condition['value'])) {
$this->setError(_('Incorrect action condition discovery check.'));
}
break;
case CONDITION_TYPE_DSERVICE_PORT:
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (!validate_port_list($condition['value'])) {
$this->setError(_s('Incorrect action condition port "%1$s".', $condition['value']));
}
break;
case CONDITION_TYPE_DSTATUS:
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (!$discoveryObjectStatusValidator->validate($condition['value'])) {
$this->setError(_('Incorrect action condition discovery status.'));
}
break;
case CONDITION_TYPE_SUPPRESSED:
if (!zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('should be empty')));
}
break;
case CONDITION_TYPE_TRIGGER_SEVERITY:
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (!$triggerSeverityValidator->validate($condition['value'])) {
$this->setError(_('Incorrect action condition trigger severity.'));
}
break;
case CONDITION_TYPE_EVENT_TYPE:
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
elseif (!$eventTypeValidator->validate($condition['value'])) {
$this->setError(_('Incorrect action condition event type.'));
}
break;
case CONDITION_TYPE_TRIGGER_NAME:
case CONDITION_TYPE_DUPTIME:
case CONDITION_TYPE_DVALUE:
case CONDITION_TYPE_APPLICATION:
case CONDITION_TYPE_HOST_NAME:
case CONDITION_TYPE_HOST_METADATA:
case CONDITION_TYPE_EVENT_TAG:
if (zbx_empty($condition['value'])) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
break;
case CONDITION_TYPE_EVENT_TAG_VALUE:
if (!is_string($condition['value2']) || $condition['value2'] === '') {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value2', _('cannot be empty')));
}
elseif (!is_string($condition['value'])) {
$this->setError(
_s('Incorrect value for field "%1$s": %2$s.', 'value', _('a character string is expected'))
);
}
elseif (array_key_exists('operator', $condition) && $condition['value'] === ''
&& ($condition['operator'] == CONDITION_OPERATOR_LIKE
|| $condition['operator'] == CONDITION_OPERATOR_NOT_LIKE)) {
$this->setError(_s('Incorrect value for field "%1$s": %2$s.', 'value', _('cannot be empty')));
}
break;
default:
$this->setError(_('Incorrect action condition type.'));
}
// If no error is not set, return true.
return !(bool) $this->getError();
}
}
|