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/CControllerDashboardWidgetV...

118 lines
3.0 KiB

<?php declare(strict_types = 0);
/*
** 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.
**/
use Zabbix\Core\CWidget;
use Zabbix\Widgets\CWidgetForm;
/**
* Class containing methods for operations with widgets.
*/
class CControllerDashboardWidgetView extends CController {
protected ?CWidget $widget;
protected CWidgetForm $form;
protected array $validation_rules = [];
protected array $fields_values = [];
protected function init(): void {
$this->setPostContentType(self::POST_CONTENT_TYPE_JSON);
$this->disableCsrfValidation();
$this->setValidationRules([
'name' => 'string',
'fields' => 'array',
'templateid' => 'db dashboard.templateid'
]);
}
protected function setValidationRules(array $validation_rules): self {
$this->validation_rules = $validation_rules;
return $this;
}
protected function addValidationRules(array $validation_rules): self {
$this->validation_rules = array_merge($this->validation_rules, $validation_rules);
return $this;
}
protected function checkPermissions(): bool {
return $this->getUserType() >= USER_TYPE_ZABBIX_USER;
}
protected function checkInput(): bool {
$this->widget = APP::ModuleManager()->getActionModule();
$validation_rules = $this->validation_rules;
$ret = $this->validateInput($validation_rules);
if ($ret) {
$this->form = $this->widget->getForm($this->getInput('fields', []),
$this->hasInput('templateid') ? $this->getInput('templateid') : null
);
if ($errors = $this->form->validate()) {
foreach ($errors as $error) {
error($error);
}
$ret = false;
}
}
if ($ret) {
$this->fields_values = $this->form->getFieldsValues();
}
if (!$ret) {
$this->setResponse(
(new CControllerResponseData(['main_block' => json_encode([
'error' => [
'messages' => array_column(get_and_clear_messages(), 'message')
]
], JSON_THROW_ON_ERROR)]))->disableView()
);
}
return $ret;
}
protected function getForm(): CWidgetForm {
return $this->form;
}
protected function doAction(): void {
$this->setResponse(new CControllerResponseData([
'name' => $this->getInput('name', $this->widget->getName()),
'user' => [
'debug_mode' => $this->getDebugMode()
]
]));
}
protected function isTemplateDashboard(): bool {
return $this->hasInput('templateid');
}
}