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.
107 lines
4.2 KiB
107 lines
4.2 KiB
1 year ago
|
<?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 CControllerGuiUpdate extends CController {
|
||
|
|
||
|
protected function checkInput() {
|
||
|
$themes = array_keys(APP::getThemes());
|
||
|
$timezones = array_keys(CTimezoneHelper::getList());
|
||
|
|
||
|
$fields = [
|
||
|
'default_lang' => 'db config.default_lang|in '.implode(',', array_keys(getLocales())),
|
||
|
'default_timezone' => 'required|in '.ZBX_DEFAULT_TIMEZONE.','.implode(',', $timezones).'|db config.default_timezone',
|
||
|
'default_theme' => 'required|db config.default_theme|in '.implode(',', $themes),
|
||
|
'search_limit' => 'required|db config.search_limit|ge 1|le 999999',
|
||
|
'max_overview_table_size' => 'required|db config.max_overview_table_size|ge 5|le 999999',
|
||
|
'max_in_table' => 'required|db config.max_in_table|ge 1|le 99999',
|
||
|
'server_check_interval' => 'required|db config.server_check_interval|in 0,'.SERVER_CHECK_INTERVAL,
|
||
|
'work_period' => 'required|db config.work_period|time_periods',
|
||
|
'show_technical_errors' => 'db config.show_technical_errors|in 0,1',
|
||
|
'history_period' => 'required|db config.history_period|time_unit '.implode(':', [SEC_PER_DAY, 7 * SEC_PER_DAY]),
|
||
|
'period_default' => 'required|db config.period_default|time_unit_year '.implode(':', [SEC_PER_MIN, 10 * SEC_PER_YEAR]),
|
||
|
'max_period' => 'required|db config.max_period|time_unit_year '.implode(':', [SEC_PER_YEAR, 10 * SEC_PER_YEAR])
|
||
|
];
|
||
|
|
||
|
$ret = $this->validateInput($fields);
|
||
|
|
||
|
if (!$ret) {
|
||
|
switch ($this->GetValidationError()) {
|
||
|
case self::VALIDATION_ERROR:
|
||
|
$response = new CControllerResponseRedirect((new CUrl('zabbix.php'))
|
||
|
->setArgument('action', 'gui.edit')
|
||
|
->getUrl()
|
||
|
);
|
||
|
$response->setFormData($this->getInputAll());
|
||
|
CMessageHelper::setErrorTitle(_('Cannot update configuration'));
|
||
|
$this->setResponse($response);
|
||
|
break;
|
||
|
|
||
|
case self::VALIDATION_FATAL_ERROR:
|
||
|
$this->setResponse(new CControllerResponseFatal());
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $ret;
|
||
|
}
|
||
|
|
||
|
protected function checkPermissions() {
|
||
|
return $this->checkAccess(CRoleHelper::UI_ADMINISTRATION_GENERAL);
|
||
|
}
|
||
|
|
||
|
protected function doAction() {
|
||
|
$settings = [
|
||
|
CSettingsHelper::DEFAULT_THEME => $this->getInput('default_theme'),
|
||
|
CSettingsHelper::DEFAULT_TIMEZONE => $this->getInput('default_timezone'),
|
||
|
CSettingsHelper::SEARCH_LIMIT => $this->getInput('search_limit'),
|
||
|
CSettingsHelper::MAX_OVERVIEW_TABLE_SIZE => $this->getInput('max_overview_table_size'),
|
||
|
CSettingsHelper::MAX_IN_TABLE => $this->getInput('max_in_table'),
|
||
|
CSettingsHelper::SERVER_CHECK_INTERVAL => $this->getInput('server_check_interval'),
|
||
|
CSettingsHelper::WORK_PERIOD => $this->getInput('work_period'),
|
||
|
CSettingsHelper::SHOW_TECHNICAL_ERRORS => $this->getInput('show_technical_errors', 0),
|
||
|
CSettingsHelper::HISTORY_PERIOD => $this->getInput('history_period'),
|
||
|
CSettingsHelper::PERIOD_DEFAULT => $this->getInput('period_default'),
|
||
|
CSettingsHelper::MAX_PERIOD => $this->getInput('max_period')
|
||
|
];
|
||
|
|
||
|
if ($this->hasInput('default_lang')) {
|
||
|
$settings[CSettingsHelper::DEFAULT_LANG] = $this->getInput('default_lang');
|
||
|
}
|
||
|
|
||
|
$result = API::Settings()->update($settings);
|
||
|
|
||
|
$response = new CControllerResponseRedirect((new CUrl('zabbix.php'))
|
||
|
->setArgument('action', 'gui.edit')
|
||
|
->getUrl()
|
||
|
);
|
||
|
|
||
|
if ($result) {
|
||
|
CMessageHelper::setSuccessTitle(_('Configuration updated'));
|
||
|
}
|
||
|
else {
|
||
|
$response->setFormData($this->getInputAll());
|
||
|
CMessageHelper::setErrorTitle(_('Cannot update configuration'));
|
||
|
}
|
||
|
|
||
|
$this->setResponse($response);
|
||
|
}
|
||
|
}
|