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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 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 containing methods for operations with discovery hosts.
*/
class CDHost extends CApiService {
protected $tableName = 'dhosts';
protected $tableAlias = 'dh';
protected $sortColumns = ['dhostid', 'druleid'];
/**
* Get host data.
*
* @param array $options
* @param array $options['groupids'] HostGroup IDs
* @param bool $options['monitored_hosts'] only monitored Hosts
* @param bool $options['templated_hosts'] include templates in result
* @param bool $options['with_items'] only with items
* @param bool $options['with_triggers'] only with triggers
* @param bool $options['with_httptests'] only with http tests
* @param bool $options['with_graphs'] only with graphs
* @param bool $options['editable'] only with read-write permission. Ignored for SuperAdmins
* @param bool $options['selectTemplates'] select Templates
* @param bool $options['selectItems'] select Items
* @param bool $options['selectTriggers'] select Triggers
* @param bool $options['selectGraphs'] select Graphs
* @param int $options['count'] count Hosts, returned column name is rowscount
* @param string $options['pattern'] search hosts by pattern in Host name
* @param string $options['extendPattern'] search hosts by pattern in Host name, ip and DNS
* @param int $options['limit'] limit selection
* @param string $options['sortfield'] field to sort by
* @param string $options['sortorder'] sort order
*
* @return array Host data as array or false if error
*/
public function get($options = []) {
$result = [];
$sqlParts = [
'select' => ['dhosts' => 'dh.dhostid'],
'from' => ['dhosts' => 'dhosts dh'],
'where' => [],
'group' => [],
'order' => [],
'limit' => null
];
$defOptions = [
'druleids' => null,
'dhostids' => null,
'dserviceids' => null,
'editable' => false,
'nopermissions' => null,
// filter
'filter' => null,
'search' => null,
'searchByAny' => null,
'startSearch' => false,
'excludeSearch' => false,
'searchWildcardsEnabled' => null,
// output
'output' => API_OUTPUT_EXTEND,
'selectDRules' => null,
'selectDServices' => null,
'countOutput' => false,
'groupCount' => false,
'preservekeys' => false,
'sortfield' => '',
'sortorder' => '',
'limit' => null,
'limitSelects' => null
];
$options = zbx_array_merge($defOptions, $options);
if (self::$userData['type'] < USER_TYPE_ZABBIX_ADMIN) {
return [];
}
// dhostids
if (!is_null($options['dhostids'])) {
zbx_value2array($options['dhostids']);
$sqlParts['where']['dhostid'] = dbConditionInt('dh.dhostid', $options['dhostids']);
}
// druleids
if (!is_null($options['druleids'])) {
zbx_value2array($options['druleids']);
$sqlParts['where']['druleid'] = dbConditionInt('dh.druleid', $options['druleids']);
if ($options['groupCount']) {
$sqlParts['group']['druleid'] = 'dh.druleid';
}
}
// dserviceids
if (!is_null($options['dserviceids'])) {
zbx_value2array($options['dserviceids']);
$sqlParts['from']['dservices'] = 'dservices ds';
$sqlParts['where'][] = dbConditionInt('ds.dserviceid', $options['dserviceids']);
$sqlParts['where']['dhds'] = 'dh.dhostid=ds.dhostid';
if ($options['groupCount']) {
$sqlParts['group']['dserviceids'] = 'ds.dserviceid';
}
}
// filter
if (is_array($options['filter'])) {
$this->dbFilter('dhosts dh', $options, $sqlParts);
}
// search
if (is_array($options['search'])) {
zbx_db_search('dhosts dh', $options, $sqlParts);
}
// limit
if (zbx_ctype_digit($options['limit']) && $options['limit']) {
$sqlParts['limit'] = $options['limit'];
}
//-------
$sqlParts = $this->applyQueryOutputOptions($this->tableName(), $this->tableAlias(), $options, $sqlParts);
$sqlParts = $this->applyQuerySortOptions($this->tableName(), $this->tableAlias(), $options, $sqlParts);
$res = DBselect($this->createSelectQueryFromParts($sqlParts), $sqlParts['limit']);
while ($dhost = DBfetch($res)) {
if ($options['countOutput']) {
if ($options['groupCount']) {
$result[] = $dhost;
}
else {
$result = $dhost['rowscount'];
}
}
else {
$result[$dhost['dhostid']] = $dhost;
}
}
if ($options['countOutput']) {
return $result;
}
if ($result) {
$result = $this->addRelatedObjects($options, $result);
$result = $this->unsetExtraFields($result, ['druleid'], $options['output']);
}
// removing keys (hash -> array)
if (!$options['preservekeys']) {
$result = zbx_cleanHashes($result);
}
return $result;
}
protected function applyQueryOutputOptions($tableName, $tableAlias, array $options, array $sqlParts) {
$sqlParts = parent::applyQueryOutputOptions($tableName, $tableAlias, $options, $sqlParts);
if (!$options['countOutput']) {
if ($options['selectDRules'] !== null) {
$sqlParts = $this->addQuerySelect('dh.druleid', $sqlParts);
}
}
return $sqlParts;
}
protected function addRelatedObjects(array $options, array $result) {
$result = parent::addRelatedObjects($options, $result);
$dhostIds = array_keys($result);
// select_drules
if ($options['selectDRules'] !== null && $options['selectDRules'] != API_OUTPUT_COUNT) {
$relationMap = $this->createRelationMap($result, 'dhostid', 'druleid');
$drules = API::DRule()->get([
'output' => $options['selectDRules'],
'druleids' => $relationMap->getRelatedIds(),
'preservekeys' => true
]);
if (!is_null($options['limitSelects'])) {
order_result($drules, 'name');
}
$result = $relationMap->mapMany($result, $drules, 'drules', $options['limitSelects']);
}
// selectDServices
if (!is_null($options['selectDServices'])) {
if ($options['selectDServices'] != API_OUTPUT_COUNT) {
$dservices = API::DService()->get([
'output' => $this->outputExtend($options['selectDServices'], ['dserviceid', 'dhostid']),
'dhostids' => $dhostIds,
'preservekeys' => true
]);
$relationMap = $this->createRelationMap($dservices, 'dhostid', 'dserviceid');
$dservices = $this->unsetExtraFields($dservices, ['dserviceid', 'dhostid'], $options['selectDServices']);
if (!is_null($options['limitSelects'])) {
order_result($dservices, 'name');
}
$result = $relationMap->mapMany($result, $dservices, 'dservices', $options['limitSelects']);
}
else {
$dservices = API::DService()->get([
'output' => $options['selectDServices'],
'dhostids' => $dhostIds,
'countOutput' => true,
'groupCount' => true
]);
$dservices = zbx_toHash($dservices, 'dhostid');
foreach ($result as $dhostid => $dhost) {
if (isset($dservices[$dhostid]))
$result[$dhostid]['dservices'] = $dservices[$dhostid]['rowscount'];
else
$result[$dhostid]['dservices'] = 0;
}
}
}
return $result;
}
}
|