You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zabbix/ui/app/controllers/CControllerPopupLldOverride...

152 lines
4.6 KiB

<?php
/*
** Zabbix
** Copyright (C) 2001-2023 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 CControllerPopupLldOverride extends CController {
protected function init() {
$this->disableCsrfValidation();
}
protected function checkInput() {
$fields = [
'no' => 'int32',
'templated' => 'in 0,1',
'name' => 'string',
'old_name' => 'string',
'stop' => 'in 0,1',
'overrides_evaltype' => 'in '.implode(',', [CONDITION_EVAL_TYPE_AND_OR, CONDITION_EVAL_TYPE_AND, CONDITION_EVAL_TYPE_OR, CONDITION_EVAL_TYPE_EXPRESSION]),
'overrides_formula' => 'string',
'overrides_filters' => 'array',
'operations' => 'array',
'overrides_names' => 'array',
'validate' => 'in 1'
];
$ret = $this->validateInput($fields);
if (!$ret) {
$this->setResponse(
(new CControllerResponseData(['main_block' => json_encode([
'error' => [
'messages' => array_column(get_and_clear_messages(), 'message')
]
])]))->disableView()
);
}
return $ret;
}
protected function checkPermissions() {
return true;
}
protected function doAction() {
$page_options = [
'no' => $this->getInput('no', -1),
'templated' => $this->getInput('templated', 0),
'name' => $this->getInput('name', ''),
'old_name' => $this->getInput('old_name', ''),
'stop' => $this->getInput('stop', 0),
'overrides_evaltype' => $this->getInput('overrides_evaltype', CONDITION_EVAL_TYPE_AND_OR),
'overrides_formula' => $this->getInput('overrides_formula', ''),
'overrides_filters' => $this->getInput('overrides_filters', [[
'macro' => '',
'operator' => CONDITION_OPERATOR_REGEXP,
'value' => '',
'formulaid' => num2letter(0)
]]),
'operations' => $this->getInput('operations', []),
'overrides_names' => $this->getInput('overrides_names', [])
];
if ($this->hasInput('validate')) {
if ($page_options['name'] === '') {
error(_s('Incorrect value for field "%1$s": %2$s.', _('Name'), _('cannot be empty')));
}
// Validate if override names are unique.
if ($page_options['name'] !== $page_options['old_name']) {
foreach ($page_options['overrides_names'] as $name) {
if ($name === $page_options['name']) {
error(_s('Override with name "%1$s" already exists.', $name));
}
}
}
$overrides_filter = prepareLldFilter([
'evaltype' => $page_options['overrides_evaltype'],
'formula' => $page_options['overrides_formula'],
'conditions' => $page_options['overrides_filters']
]);
$overrides_filter['conditions'] = sortLldRuleFilterConditions($overrides_filter['conditions'],
$overrides_filter['evaltype']
);
if ($overrides_filter['evaltype'] == CONDITION_EVAL_TYPE_EXPRESSION
&& $overrides_filter['formula'] === '') {
error(_s('Incorrect value for field "%1$s": %2$s.', _('Custom expression'), _('cannot be empty')));
}
// Return collected error messages.
if ($messages = get_and_clear_messages()) {
$output['error']['messages'] = array_column($messages, 'message');
}
else {
// Return valid response.
$params = [
'name' => $page_options['name'],
'stop' => $page_options['stop'],
'overrides_evaltype' => $overrides_filter['evaltype'],
'overrides_formula' => $overrides_filter['formula'],
'overrides_filters' => $overrides_filter['conditions'],
'operations' => $page_options['operations'],
'no' => $page_options['no']
];
$output = [
'params' => $params
];
}
$this->setResponse(
(new CControllerResponseData(['main_block' => json_encode($output)]))->disableView()
);
}
else {
$page_options['overrides_filters'] = sortLldRuleFilterConditions($page_options['overrides_filters'],
$page_options['overrides_evaltype']
);
$data = [
'title' => _('Override'),
'options' => $page_options,
'user' => [
'debug_mode' => $this->getDebugMode()
]
];
$this->setResponse(new CControllerResponseData($data));
}
}
}