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
|
<?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 CControllerWidgetHostAvailView extends CControllerWidget {
public function __construct() {
parent::__construct();
$this->setType(WIDGET_HOST_AVAIL);
$this->setValidationRules([
'name' => 'string',
'fields' => 'json'
]);
}
protected function doAction() {
$fields = $this->getForm()->getFieldsData();
$type_fields = [
INTERFACE_TYPE_AGENT => 'available',
INTERFACE_TYPE_SNMP => 'snmp_available',
INTERFACE_TYPE_JMX => 'jmx_available',
INTERFACE_TYPE_IPMI => 'ipmi_available'
];
$interface_types = array_keys($type_fields);
// Sanitize non-existing interface types.
$fields['interface_type'] = array_values(array_intersect($interface_types, $fields['interface_type']));
$groupids = $fields['groupids'] ? getSubGroups($fields['groupids']) : null;
$hosts_types = $fields['interface_type'] ? $fields['interface_type'] : $interface_types;
$hosts_total = array_fill_keys($interface_types, 0);
$hosts_count = array_fill_keys($interface_types, [
HOST_AVAILABLE_UNKNOWN => 0,
HOST_AVAILABLE_TRUE => 0,
HOST_AVAILABLE_FALSE => 0
]);
$db_hosts = API::Host()->get([
'output' => ['available', 'snmp_available', 'jmx_available', 'ipmi_available'],
'selectInterfaces' => ['interfaceid', 'type'],
'groupids' => $groupids,
'filter' => ($fields['maintenance'] == HOST_MAINTENANCE_STATUS_OFF)
? ['status' => HOST_STATUS_MONITORED, 'maintenance_status' => HOST_MAINTENANCE_STATUS_OFF]
: ['status' => HOST_STATUS_MONITORED]
]);
foreach ($db_hosts as $host) {
$interfaces = [];
foreach ($host['interfaces'] as $val) {
$interfaces[$val['type']] = true;
}
foreach (array_keys($interfaces) as $type) {
$hosts_count[$type][$host[$type_fields[$type]]]++;
$hosts_total[$type]++;
}
}
$this->setResponse(new CControllerResponseData([
'name' => $this->getInput('name', $this->getDefaultHeader()),
'layout' => $fields['layout'],
'hosts_types' => $hosts_types,
'hosts_count' => $hosts_count,
'hosts_total' => $hosts_total,
'user' => [
'debug_mode' => $this->getDebugMode()
]
]));
}
}
|