Use subquery filters for host comments if appropriate

refs #2934
This commit is contained in:
Eric Lippmann 2018-06-20 15:27:09 +02:00
parent 271a1d72f1
commit db50d40068
1 changed files with 20 additions and 0 deletions

View File

@ -23,6 +23,11 @@ class HostcommentQuery extends IdoQuery
*/
protected $groupOrigin = array('hostgroups', 'services');
protected $subQueryTargets = array(
'hostgroups' => 'hostgroup',
'servicegroups' => 'servicegroup'
);
/**
* {@inheritdoc}
*/
@ -179,4 +184,19 @@ class HostcommentQuery extends IdoQuery
array()
);
}
protected function joinSubQuery(IdoQuery $query, $name)
{
if ($name === 'hostgroup') {
$query->joinVirtualTable('members');
return ['hgm.host_object_id', 'ho.object_id'];
} elseif ($name === 'servicegroup') {
$query->joinVirtualTable('services');
return ['s.host_object_id', 'ho.object_id'];
}
return parent::joinSubQuery($query, $name);
}
}