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.
252 lines
7.6 KiB
252 lines
7.6 KiB
1 year ago
|
<?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.
|
||
|
**/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @var CView $this
|
||
|
* @var array $data
|
||
|
*/
|
||
|
|
||
|
$this->includeJsFile('administration.proxy.list.js.php');
|
||
|
|
||
|
$filter = (new CFilter())
|
||
|
->addVar('action', 'proxy.list')
|
||
|
->setResetUrl(
|
||
|
(new CUrl('zabbix.php'))->setArgument('action', 'proxy.list')
|
||
|
)
|
||
|
->setProfile('web.proxies.filter')
|
||
|
->setActiveTab($data['active_tab'])
|
||
|
->addFilterTab(_('Filter'), [
|
||
|
(new CFormGrid())
|
||
|
->addClass(CFormGrid::ZBX_STYLE_FORM_GRID_LABEL_WIDTH_TRUE)
|
||
|
->addItem([
|
||
|
new CLabel(_('Name'), 'filter_name'),
|
||
|
new CFormField(
|
||
|
(new CTextBox('filter_name', $data['filter']['name']))
|
||
|
->setWidth(ZBX_TEXTAREA_FILTER_SMALL_WIDTH)
|
||
|
->setAttribute('autofocus', 'autofocus')
|
||
|
)
|
||
|
]),
|
||
|
(new CFormGrid())
|
||
|
->addClass(CFormGrid::ZBX_STYLE_FORM_GRID_LABEL_WIDTH_TRUE)
|
||
|
->addItem([
|
||
|
new CLabel(_('Mode')),
|
||
|
new CFormField(
|
||
|
(new CRadioButtonList('filter_operating_mode', (int) $data['filter']['operating_mode']))
|
||
|
->addValue(_('Any'), -1)
|
||
|
->addValue(_('Active'), PROXY_OPERATING_MODE_ACTIVE)
|
||
|
->addValue(_('Passive'), PROXY_OPERATING_MODE_PASSIVE)
|
||
|
->setModern(true)
|
||
|
)
|
||
|
]),
|
||
|
(new CFormGrid())
|
||
|
->addClass(CFormGrid::ZBX_STYLE_FORM_GRID_LABEL_WIDTH_TRUE)
|
||
|
->addItem([
|
||
|
new CLabel(_('Version')),
|
||
|
new CFormField(
|
||
|
(new CRadioButtonList('filter_version', (int) $data['filter']['version']))
|
||
|
->addValue(_('Any'), -1)
|
||
|
->addValue(_('Current'), ZBX_PROXY_VERSION_CURRENT)
|
||
|
->addValue(_('Outdated'), ZBX_PROXY_VERSION_ANY_OUTDATED)
|
||
|
->setModern(true)
|
||
|
)
|
||
|
])
|
||
|
]);
|
||
|
|
||
|
$form = (new CForm())
|
||
|
->setId('proxy-list')
|
||
|
->setName('proxy_list');
|
||
|
|
||
|
$view_url = (new CUrl('zabbix.php'))
|
||
|
->setArgument('action', 'proxy.list')
|
||
|
->getUrl();
|
||
|
|
||
|
$proxy_list = (new CTableInfo())
|
||
|
->setHeader([
|
||
|
(new CColHeader(
|
||
|
(new CCheckBox('all_hosts'))->onClick("checkAll('".$form->getName()."', 'all_hosts', 'proxyids');")
|
||
|
))->addClass(ZBX_STYLE_CELL_WIDTH),
|
||
|
make_sorting_header(_('Name'), 'name', $data['sort'], $data['sortorder'], $view_url),
|
||
|
make_sorting_header(_('Mode'), 'operating_mode', $data['sort'], $data['sortorder'], $view_url),
|
||
|
make_sorting_header(_('Encryption'), 'tls_accept', $data['sort'], $data['sortorder'], $view_url),
|
||
|
make_sorting_header(_('Version'), 'version', $data['sort'], $data['sortorder'], $view_url),
|
||
|
make_sorting_header(_('Last seen (age)'), 'lastaccess', $data['sort'], $data['sortorder'], $view_url),
|
||
|
_('Host count'),
|
||
|
_('Item count'),
|
||
|
_('Required vps'),
|
||
|
_('Hosts')
|
||
|
]);
|
||
|
|
||
|
foreach ($data['proxies'] as $proxyid => $proxy) {
|
||
|
$hosts = [];
|
||
|
$version = $proxy['version'];
|
||
|
$compatibility = $proxy['compatibility'];
|
||
|
|
||
|
// Info icons.
|
||
|
$info_icons = [];
|
||
|
if ($compatibility == ZBX_PROXY_VERSION_OUTDATED) {
|
||
|
$version = (new CSpan($version))->addClass(ZBX_STYLE_RED);
|
||
|
$info_icons[] = makeWarningIcon(_s(
|
||
|
'Proxy version is outdated, only data collection and remote execution is available with server version %1$s.',
|
||
|
$data['server_version']
|
||
|
));
|
||
|
}
|
||
|
elseif ($compatibility == ZBX_PROXY_VERSION_UNSUPPORTED) {
|
||
|
$version = (new CSpan($version))->addClass(ZBX_STYLE_RED);
|
||
|
$info_icons[] = makeErrorIcon(
|
||
|
_s('Proxy version is not supported by server version %1$s.', $data['server_version'])
|
||
|
);
|
||
|
}
|
||
|
|
||
|
foreach ($proxy['hosts'] as $host_index => $host) {
|
||
|
if ($host_index >= $data['config']['max_in_table']) {
|
||
|
$hosts[] = [' ', HELLIP()];
|
||
|
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
if ($hosts) {
|
||
|
$hosts[] = ', ';
|
||
|
}
|
||
|
|
||
|
switch ($host['status']) {
|
||
|
case HOST_STATUS_MONITORED:
|
||
|
$style = null;
|
||
|
break;
|
||
|
|
||
|
case HOST_STATUS_TEMPLATE:
|
||
|
$style = ZBX_STYLE_GREY;
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
$style = ZBX_STYLE_RED;
|
||
|
}
|
||
|
|
||
|
$hosts[] = $data['allowed_ui_conf_hosts']
|
||
|
? (new CLink($host['name']))
|
||
|
->addClass($style)
|
||
|
->addClass('js-edit-host')
|
||
|
->setAttribute('data-hostid', $host['hostid'])
|
||
|
: (new CSpan($host['name']))->addClass($style);
|
||
|
}
|
||
|
|
||
|
if ($proxy['operating_mode'] == PROXY_OPERATING_MODE_PASSIVE) {
|
||
|
switch ($proxy['tls_connect']) {
|
||
|
case HOST_ENCRYPTION_NONE:
|
||
|
$encryption = (new CSpan(_('None')))->addClass(ZBX_STYLE_STATUS_GREEN);
|
||
|
break;
|
||
|
|
||
|
case HOST_ENCRYPTION_PSK:
|
||
|
$encryption = (new CSpan(_('PSK')))->addClass(ZBX_STYLE_STATUS_GREEN);
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
$encryption = (new CSpan(_('CERT')))->addClass(ZBX_STYLE_STATUS_GREEN);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
else {
|
||
|
$encryption = (new CDiv())->addClass(ZBX_STYLE_STATUS_CONTAINER);
|
||
|
|
||
|
if (($proxy['tls_accept'] & HOST_ENCRYPTION_NONE) != 0) {
|
||
|
$encryption->addItem((new CSpan(_('None')))->addClass(ZBX_STYLE_STATUS_GREEN));
|
||
|
}
|
||
|
|
||
|
if (($proxy['tls_accept'] & HOST_ENCRYPTION_PSK) != 0) {
|
||
|
$encryption->addItem((new CSpan(_('PSK')))->addClass(ZBX_STYLE_STATUS_GREEN));
|
||
|
}
|
||
|
|
||
|
if (($proxy['tls_accept'] & HOST_ENCRYPTION_CERTIFICATE) != 0) {
|
||
|
$encryption->addItem((new CSpan(_('CERT')))->addClass(ZBX_STYLE_STATUS_GREEN));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$proxy_list->addRow([
|
||
|
new CCheckBox('proxyids['.$proxyid.']', $proxyid),
|
||
|
(new CCol(
|
||
|
(new CLink($proxy['name']))
|
||
|
->addClass('js-edit-proxy')
|
||
|
->setAttribute('data-proxyid', $proxyid)
|
||
|
))->addClass(ZBX_STYLE_NOWRAP),
|
||
|
$proxy['operating_mode'] == PROXY_OPERATING_MODE_ACTIVE ? _('Active') : _('Passive'),
|
||
|
$encryption,
|
||
|
$info_icons ? [$version, NBSP(), makeInformationList($info_icons)] : $version,
|
||
|
$proxy['lastaccess'] == 0
|
||
|
? (new CSpan(_('Never')))->addClass(ZBX_STYLE_RED)
|
||
|
: zbx_date2age($proxy['lastaccess']),
|
||
|
array_key_exists('host_count', $proxy) ? $proxy['host_count'] : '',
|
||
|
array_key_exists('item_count', $proxy) ? $proxy['item_count'] : '',
|
||
|
array_key_exists('vps_total', $proxy) ? $proxy['vps_total'] : '',
|
||
|
$hosts ?: ''
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
$form->addItem([$proxy_list, $data['paging']]);
|
||
|
|
||
|
$form->addItem(
|
||
|
new CActionButtonList('action', 'proxyids', [
|
||
|
'proxy.config.refresh' => [
|
||
|
'content' => (new CSimpleButton(_('Refresh configuration')))
|
||
|
->addClass(ZBX_STYLE_BTN_ALT)
|
||
|
->addClass('js-refresh-proxy-config')
|
||
|
->addClass('js-no-chkbxrange')
|
||
|
],
|
||
|
'proxy.host.massenable' => [
|
||
|
'content' => (new CSimpleButton(_('Enable hosts')))
|
||
|
->addClass(ZBX_STYLE_BTN_ALT)
|
||
|
->addClass('js-massenable-proxy-host')
|
||
|
->addClass('js-no-chkbxrange')
|
||
|
],
|
||
|
'proxy.host.massdisable' => [
|
||
|
'content' => (new CSimpleButton(_('Disable hosts')))
|
||
|
->addClass(ZBX_STYLE_BTN_ALT)
|
||
|
->addClass('js-massdisable-proxy-host')
|
||
|
->addClass('js-no-chkbxrange')
|
||
|
],
|
||
|
'proxy.massdelete' => [
|
||
|
'content' => (new CSimpleButton(_('Delete')))
|
||
|
->addClass(ZBX_STYLE_BTN_ALT)
|
||
|
->addClass('js-massdelete-proxy')
|
||
|
->addClass('js-no-chkbxrange')
|
||
|
]
|
||
|
], 'proxy')
|
||
|
);
|
||
|
|
||
|
(new CHtmlPage())
|
||
|
->setTitle(_('Proxies'))
|
||
|
->setDocUrl(CDocHelper::getUrl(CDocHelper::ADMINISTRATION_PROXY_LIST))
|
||
|
->setControls(
|
||
|
(new CTag('nav', true,
|
||
|
(new CList())
|
||
|
->addItem(
|
||
|
(new CSimpleButton(_('Create proxy')))->addClass('js-create-proxy')
|
||
|
)
|
||
|
))->setAttribute('aria-label', _('Content controls'))
|
||
|
)
|
||
|
->addItem($filter)
|
||
|
->addItem($form)
|
||
|
->show();
|
||
|
|
||
|
(new CScriptTag('
|
||
|
view.init();
|
||
|
'))
|
||
|
->setOnDocumentReady()
|
||
|
->show();
|