Source
xxxxxxxxxx
<?php
/*
** Zabbix
** Copyright (C) 2001-2024 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 CControllerMapView extends CController {
private $sysmapid;
protected function init() {
$this->disableSIDValidation();
}
protected function checkInput() {
$fields = [
'sysmapid' => 'db sysmaps.sysmapid',
'mapname' => 'not_empty',
'severity_min' => 'in '.implode(',', [TRIGGER_SEVERITY_NOT_CLASSIFIED, TRIGGER_SEVERITY_INFORMATION, TRIGGER_SEVERITY_WARNING, TRIGGER_SEVERITY_AVERAGE, TRIGGER_SEVERITY_HIGH, TRIGGER_SEVERITY_DISASTER])
];
$ret = $this->validateInput($fields);
if (!$ret) {
$this->setResponse(new CControllerResponseFatal());
}
return $ret;
}
protected function checkPermissions() {
if (!$this->checkAccess(CRoleHelper::UI_MONITORING_MAPS)) {
return false;
}
$sysmapid = null;
$options = ['output' => ['sysmapid']];
if ($this->hasInput('mapname')) {
// Get map by name.
$options['search']['name'] = $this->getInput('mapname');
}
elseif ($this->hasInput('sysmapid')) {
// Get map by sysmapid from request.
$options['sysmapids'] = [$this->getInput('sysmapid')];
}
else {
// Get map by sysmapid from profile.
$options['sysmapids'] = [CProfile::get('web.maps.sysmapid', 0)];
}
$sysmaps = API::Map()->get($options);
if ($sysmaps) {
$sysmap = reset($sysmaps);
$sysmapid = $sysmap['sysmapid'];
}
if ($sysmapid === null) {
if (!$this->hasInput('mapname') && !$this->hasInput('sysmapid')) {
// Redirect to map list.
redirect('sysmaps.php');
}
else {
// No permissions.
return false;
}
}
$this->sysmapid = $sysmapid;
return true;
}
protected function doAction() {
CProfile::update('web.maps.sysmapid', $this->sysmapid, PROFILE_TYPE_ID);