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.

137 lines
4.6 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 CController as CAction;
class CLegacyAction extends CAction {
protected function init(): void {
$this->disableCsrfValidation();
}
public function doAction(): void {
}
/**
* Check user input.
*
* @return bool
*/
public function checkInput(): bool {
$json_actions = ['templates.php', 'host_prototypes.php'];
if (in_array($this->getAction(), $json_actions) && array_key_exists('formdata_json', $_REQUEST)) {
$_REQUEST = json_decode($_REQUEST['formdata_json'], true);
}
return true;
}
/**
* Check permission.
*
* @return bool
*/
public function checkPermissions(): bool {
$user_type = $this->getUserType();
$denied = [];
$action = $this->getAction();
/*
* Overwrite legacy action in case user is located in sub-section like items, triggers etc. That will make
* sure to hide left menu and display error in case user has no access to templates or hosts.
*/
if (in_array(getRequest('context', ''), ['host', 'template']) && in_array($action, ['items.php', 'triggers.php',
'graphs.php', 'host_discovery.php', 'httpconf.php', 'disc_prototypes.php', 'trigger_prototypes.php',
'host_prototypes.php'])) {
$action = (getRequest('context') === 'host') ? 'host.list' : 'template.list';
}
if ($user_type < USER_TYPE_ZABBIX_USER) {
$denied = ['chart.php', 'chart2.php', 'chart3.php', 'chart4.php', 'chart6.php', 'chart7.php', 'history.php',
'hostinventories.php', 'hostinventoriesoverview.php', 'httpdetails.php', 'image.php', 'imgstore.php',
'jsrpc.php', 'map.php', 'tr_events.php', 'sysmap.php', 'sysmaps.php', 'report2.php'
];
}
if ($user_type < USER_TYPE_ZABBIX_ADMIN) {
$denied = array_merge($denied, ['actionconf.php', 'disc_prototypes.php', 'graphs.php', 'host_discovery.php',
'host_prototypes.php', 'host.list', 'httpconf.php', 'items.php', 'report4.php',
'template.list', 'trigger_prototypes.php', 'triggers.php'
]);
}
if (in_array($action, $denied)) {
return false;
}
$rule_actions = [];
if (in_array($user_type, [USER_TYPE_ZABBIX_USER, USER_TYPE_ZABBIX_ADMIN, USER_TYPE_SUPER_ADMIN])) {
$rule_actions = [
CRoleHelper::UI_MONITORING_HOSTS => ['httpdetails.php'],
CRoleHelper::UI_MONITORING_LATEST_DATA => ['history.php'],
CRoleHelper::UI_MONITORING_MAPS => ['image.php', 'map.php', 'sysmap.php', 'sysmaps.php'],
CRoleHelper::UI_MONITORING_PROBLEMS => ['tr_events.php'],
CRoleHelper::UI_INVENTORY_HOSTS => ['hostinventories.php'],
CRoleHelper::UI_INVENTORY_OVERVIEW => ['hostinventoriesoverview.php'],
CRoleHelper::UI_REPORTS_AVAILABILITY_REPORT => ['report2.php']
];
}
if ($user_type == USER_TYPE_ZABBIX_ADMIN || $user_type == USER_TYPE_SUPER_ADMIN) {
$rule_actions += [
CRoleHelper::UI_CONFIGURATION_HOSTS => ['host.list'],
CRoleHelper::UI_CONFIGURATION_TEMPLATES => ['template.list'],
CRoleHelper::UI_REPORTS_NOTIFICATIONS => ['report4.php']
];
if ($action === 'actionconf.php') {
switch (getRequest('eventsource')) {
case EVENT_SOURCE_TRIGGERS:
$rule_actions += [CRoleHelper::UI_CONFIGURATION_TRIGGER_ACTIONS => ['actionconf.php']];
break;
case EVENT_SOURCE_SERVICE:
$rule_actions += [CRoleHelper::UI_CONFIGURATION_SERVICE_ACTIONS => ['actionconf.php']];
break;
case EVENT_SOURCE_DISCOVERY:
$rule_actions += [CRoleHelper::UI_CONFIGURATION_DISCOVERY_ACTIONS => ['actionconf.php']];
break;
case EVENT_SOURCE_AUTOREGISTRATION:
$rule_actions += [CRoleHelper::UI_CONFIGURATION_AUTOREGISTRATION_ACTIONS => ['actionconf.php']];
break;
case EVENT_SOURCE_INTERNAL:
$rule_actions += [CRoleHelper::UI_CONFIGURATION_INTERNAL_ACTIONS => ['actionconf.php']];
break;
}
}
}
foreach ($rule_actions as $rule_name => $actions) {
if (in_array($action, $actions)) {
return $this->checkAccess($rule_name);
}
}
return true;
}
}