1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
<?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.
**/
class CHostAvailability extends CTag {
public const LABELS = [
INTERFACE_TYPE_AGENT => 'ZBX',
INTERFACE_TYPE_SNMP => 'SNMP',
INTERFACE_TYPE_IPMI => 'IPMI',
INTERFACE_TYPE_JMX => 'JMX'
];
public const COLORS = [
INTERFACE_AVAILABLE_UNKNOWN => ZBX_STYLE_STATUS_GREY,
INTERFACE_AVAILABLE_TRUE => ZBX_STYLE_STATUS_GREEN,
INTERFACE_AVAILABLE_FALSE => ZBX_STYLE_STATUS_RED,
INTERFACE_AVAILABLE_MIXED => ZBX_STYLE_STATUS_YELLOW
];
protected $type_interfaces = [];
public function __construct() {
parent::__construct('div', true);
$this->addClass(ZBX_STYLE_STATUS_CONTAINER);
}
/**
* Set host interfaces.
*
* @param array $interfaces Array of arrays with all host interfaces.
* @param int $interfaces[]['type'] Type of interface, INTERFACE_TYPE_* constant.
* @param string $interfaces[]['interface'] Hint table 'Interface' column value.
* @param string $interfaces[]['detail'] Hint table 'Interface' column additional details string.
* @param int $interfaces[]['available'] Hint table 'Status' column value, INTERFACE_AVAILABLE_* constant.
* @param string $interfaces[]['error'] Hint table 'Error' column value.
*
* @return CHostAvailability
*/
public function setInterfaces(array $interfaces): CHostAvailability {
$this->type_interfaces = array_fill_keys(array_keys(static::LABELS), []);
foreach ($interfaces as $interface) {
$this->type_interfaces[$interface['type']][] = $interface;
}
return $this;
}
/**
* Get host interfaces hint table HTML object.
*
* @param array $interfaces Array of arrays with interfaces.
*
* @return CTableInfo
*/
protected function getInterfaceHint(array $interfaces): CTableInfo {
$hint_table = (new CTableInfo())
->setHeader([_('Interface'), _('Status'), _('Error')])
->addStyle('max-width: 640px');
$status = [
INTERFACE_AVAILABLE_UNKNOWN => _('Unknown'),
INTERFACE_AVAILABLE_TRUE => _('Available'),
INTERFACE_AVAILABLE_FALSE => _('Not available')
];
foreach ($interfaces as $interface) {
$interface_tag = new CDiv($interface['interface']);
if ($interface['description']) {
$interface_tag->addItem((new CDiv($interface['description']))->addClass(ZBX_STYLE_GREY));
}
$hint_table->addRow([
$interface_tag,
(new CSpan($status[$interface['available']]))
->addClass(static::COLORS[$interface['available']])
->addClass(ZBX_STYLE_NOWRAP),
(new CDiv($interface['error']))->addClass(ZBX_STYLE_RED)
]);
}
return $hint_table;
}
public function toString($destroy = true) {
foreach ($this->type_interfaces as $type => $interfaces) {
if (!$interfaces || !array_key_exists($type, static::LABELS)) {
continue;
}
CArrayHelper::sort($interfaces, ['interface']);
$available = array_column($interfaces, 'available');
$status = in_array(INTERFACE_AVAILABLE_UNKNOWN, $available)
? INTERFACE_AVAILABLE_UNKNOWN
: INTERFACE_AVAILABLE_TRUE;
if (in_array(INTERFACE_AVAILABLE_FALSE, $available)) {
$status = (in_array(INTERFACE_AVAILABLE_UNKNOWN, $available)
|| in_array(INTERFACE_AVAILABLE_TRUE, $available))
? INTERFACE_AVAILABLE_MIXED
: INTERFACE_AVAILABLE_FALSE;
}
$this->addItem((new CSpan(static::LABELS[$type]))
->addClass(static::COLORS[$status])
->setHint($this->getInterfaceHint($interfaces))
);
}
return parent::toString($destroy);
}
}
|