Use subquery filters for host comment history if appropriate

refs #2934
This commit is contained in:
Eric Lippmann 2018-06-22 09:32:17 +02:00
parent df7b5d663a
commit 2ee0f99ed1
1 changed files with 20 additions and 0 deletions

View File

@ -23,6 +23,11 @@ class HostcommenthistoryQuery extends IdoQuery
*/
protected $groupOrigin = array('hostgroups', 'services');
protected $subQueryTargets = array(
'hostgroups' => 'hostgroup',
'servicegroups' => 'servicegroup'
);
/**
* {@inheritdoc}
*/
@ -171,4 +176,19 @@ class HostcommenthistoryQuery 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);
}
}