Source
<?php
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
class CControllerDiscoveryView extends CController {
protected function init() {
$this->disableCsrfValidation();
}
protected function checkInput() {
$fields = [
'sort' => 'in ip',
'filter_set' => 'in 1',
'filter_rst' => 'in 1',
'filter_druleids' => 'array_id',
'sortorder' => 'in '.ZBX_SORT_DOWN.','.ZBX_SORT_UP
];
$ret = $this->validateInput($fields);
if (!$ret) {
$this->setResponse(new CControllerResponseFatal());
}
return $ret;
}
protected function checkPermissions() {
return $this->checkAccess(CRoleHelper::UI_MONITORING_DISCOVERY);
}
protected function doAction() {
$sortField = $this->getInput('sort', CProfile::get('web.discovery.php.sort', 'ip'));
$sortOrder = $this->getInput('sortorder', CProfile::get('web.discovery.php.sortorder', ZBX_SORT_UP));
CProfile::update('web.discovery.php.sort', $sortField, PROFILE_TYPE_STR);
CProfile::update('web.discovery.php.sortorder', $sortOrder, PROFILE_TYPE_STR);
// filter
if ($this->hasInput('filter_set')) {
CProfile::updateArray('web.discovery.filter.druleids', $this->getInput('filter_druleids', []),
PROFILE_TYPE_ID
);
}
elseif ($this->hasInput('filter_rst')) {
CProfile::deleteIdx('web.discovery.filter.druleids');
}
$filter_druleids = CProfile::getArray('web.discovery.filter.druleids', []);