✏️ 正在编辑: CControllerProxyCreate.php
路径:
/usr/share/zabbix/app/controllers/CControllerProxyCreate.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /* ** Zabbix ** Copyright (C) 2001-2021 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 CControllerProxyCreate extends CController { protected function checkInput() { $fields = [ 'host' => 'db hosts.host', 'status' => 'db hosts.status |in '.HOST_STATUS_PROXY_ACTIVE.','.HOST_STATUS_PROXY_PASSIVE, 'dns' => 'db interface.dns', 'ip' => 'db interface.ip', 'useip' => 'db interface.useip |in 0,1', 'port' => 'db interface.port', 'proxy_address' => 'db hosts.proxy_address', 'description' => 'db hosts.description', 'tls_connect' => 'db hosts.tls_connect |in '.HOST_ENCRYPTION_NONE.','.HOST_ENCRYPTION_PSK.','. HOST_ENCRYPTION_CERTIFICATE, 'tls_accept' => 'db hosts.tls_accept |in 0,'.HOST_ENCRYPTION_NONE.','.HOST_ENCRYPTION_PSK.','. (HOST_ENCRYPTION_NONE | HOST_ENCRYPTION_PSK).','. HOST_ENCRYPTION_CERTIFICATE.','. (HOST_ENCRYPTION_NONE | HOST_ENCRYPTION_CERTIFICATE).','. (HOST_ENCRYPTION_PSK | HOST_ENCRYPTION_CERTIFICATE).','. (HOST_ENCRYPTION_NONE | HOST_ENCRYPTION_PSK | HOST_ENCRYPTION_CERTIFICATE), 'tls_issuer' => 'db hosts.tls_issuer', 'tls_psk' => 'db hosts.tls_psk', 'tls_psk_identity'=>'db hosts.tls_psk_identity', 'tls_subject' => 'db hosts.tls_subject', 'form_refresh' => 'int32' ]; $ret = $this->validateInput($fields); if (!$ret) { switch ($this->GetValidationError()) { case self::VALIDATION_ERROR: $response = new CControllerResponseRedirect('zabbix.php?action=proxy.edit'); $response->setFormData($this->getInputAll()); CMessageHelper::setErrorTitle(_('Cannot add proxy')); $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_PROXIES); } protected function doAction() { $proxy = []; $this->getInputs($proxy, ['host', 'status', 'description', 'tls_connect', 'tls_accept', 'tls_issuer', 'tls_subject', 'tls_psk_identity', 'tls_psk' ]); if ($this->getInput('status', HOST_STATUS_PROXY_ACTIVE) == HOST_STATUS_PROXY_PASSIVE) { $proxy['interface'] = []; $this->getInputs($proxy['interface'], ['dns', 'ip', 'useip', 'port']); } else { $proxy['proxy_address'] = $this->getInput('proxy_address', ''); } DBstart(); $result = API::Proxy()->create([$proxy]); if ($result) { add_audit(AUDIT_ACTION_ADD, AUDIT_RESOURCE_PROXY, '['.$this->getInput('host', '').'] ['.reset($result['proxyids']).']' ); } $result = DBend($result); if ($result) { $response = new CControllerResponseRedirect((new CUrl('zabbix.php')) ->setArgument('action', 'proxy.list') ->setArgument('page', CPagerHelper::loadPage('proxy.list', null)) ); $response->setFormData(['uncheck' => '1']); CMessageHelper::setSuccessTitle(_('Proxy added')); } else { $response = new CControllerResponseRedirect((new CUrl('zabbix.php')) ->setArgument('action', 'proxy.edit') ); $response->setFormData($this->getInputAll()); CMessageHelper::setErrorTitle(_('Cannot add proxy')); } $this->setResponse($response); } }
💾 保存文件
← 返回文件管理器