Use subquery filters for host notifications if appropriate

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

View File

@ -13,6 +13,11 @@ class HostnotificationQuery extends IdoQuery
*/
protected $allowCustomVars = true;
protected $subQueryTargets = array(
'hostgroups' => 'hostgroup',
'servicegroups' => 'servicegroup'
);
/**
* {@inheritdoc}
*/
@ -232,4 +237,19 @@ class HostnotificationQuery extends IdoQuery
return $group;
}
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);
}
}