array('hh.statehistory_id', 'ho.object_id')); /** * {@inheritdoc} */ protected $groupOrigin = array('hostgroups', 'services'); /** * Array to map type names to type ids for query optimization * * @var array */ protected $types = array( 'soft_state' => 0, 'hard_state' => 1 ); protected $subQueryTargets = array( 'hostgroups' => 'hostgroup', 'servicegroups' => 'servicegroup' ); /** * {@inheritdoc} */ protected $columnMap = array( 'hostgroups' => array( 'hostgroup' => 'hgo.name1 COLLATE latin1_general_ci', 'hostgroup_alias' => 'hg.alias COLLATE latin1_general_ci', 'hostgroup_name' => 'hgo.name1' ), 'hosts' => array( 'host_alias' => 'h.alias', 'host_display_name' => 'h.display_name COLLATE latin1_general_ci' ), 'instances' => array( 'instance_name' => 'i.instance_name' ), 'servicegroups' => array( 'servicegroup' => 'sgo.name1 COLLATE latin1_general_ci', 'servicegroup_name' => 'sgo.name1', 'servicegroup_alias' => 'sg.alias COLLATE latin1_general_ci' ), 'services' => array( 'service' => 'so.name2 COLLATE latin1_general_ci', 'service_description' => 'so.name2', 'service_display_name' => 's.display_name COLLATE latin1_general_ci', 'service_host_name' => 'so.name1' ), 'statehistory' => array( 'id' => 'hh.statehistory_id', 'host' => 'ho.name1 COLLATE latin1_general_ci', 'host_name' => 'ho.name1', 'object_id' => 'hh.object_id', 'object_type' => '(\'host\')', 'output' => '(CASE WHEN hh.state_type = 1 THEN hh.output ELSE \'[ \' || hh.current_check_attempt || \'/\' || hh.max_check_attempts || \' ] \' || hh.output END)', 'state' => 'hh.state', 'timestamp' => 'UNIX_TIMESTAMP(hh.state_time)', 'type' => "(CASE WHEN hh.state_type = 1 THEN 'hard_state' ELSE 'soft_state' END)" ), ); protected function requireFilterColumns(Filter $filter) { if ($filter instanceof FilterExpression) { switch ($filter->getColumn()) { case 'timestamp': $this->requireColumn('timestamp'); $filter->setColumn('hh.state_time'); $filter->setExpression($this->timestampForSql($this->valueToTimestamp($filter->getExpression()))); return null; case 'type': if (! is_array($filter->getExpression())) { $this->requireColumn('type'); $filter->setColumn('hh.state_type'); if (isset($this->types[$filter->getExpression()])) { $filter->setExpression($this->types[$filter->getExpression()]); } else { $filter->setExpression(-1); } return null; } } } return parent::requireFilterColumns($filter); } /** * {@inheritdoc} */ protected function joinBaseTables() { $this->select->from( array('hh' => $this->prefix . 'statehistory'), array() )->join( array('ho' => $this->prefix . 'objects'), 'ho.object_id = hh.object_id AND ho.is_active = 1 AND ho.objecttype_id = 1', array() ); $this->joinedVirtualTables['statehistory'] = true; } /** * Join host groups */ protected function joinHostgroups() { $this->select->joinLeft( array('hgm' => $this->prefix . 'hostgroup_members'), 'hgm.host_object_id = ho.object_id', array() )->joinLeft( array('hg' => $this->prefix . 'hostgroups'), 'hg.hostgroup_id = hgm.hostgroup_id', array() )->joinLeft( array('hgo' => $this->prefix . 'objects'), 'hgo.object_id = hg.hostgroup_object_id AND hgo.is_active = 1 AND hgo.objecttype_id = 3', array() ); } /** * Join hosts */ protected function joinHosts() { $this->select->join( array('h' => $this->prefix . 'hosts'), 'h.host_object_id = ho.object_id', array() ); } /** * Join instances */ protected function joinInstances() { $this->select->join( array('i' => $this->prefix . 'instances'), 'i.instance_id = hh.instance_id', array() ); } /** * Join service groups */ protected function joinServicegroups() { $this->requireVirtualTable('services'); $this->select->joinLeft( array('sgm' => $this->prefix . 'servicegroup_members'), 'sgm.service_object_id = s.service_object_id', array() )->joinLeft( array('sg' => $this->prefix . 'servicegroups'), 'sg.' . $this->servicegroup_id . ' = sgm.servicegroup_id', array() )->joinLeft( array('sgo' => $this->prefix . 'objects'), 'sgo.object_id = sg.servicegroup_object_id AND sgo.is_active = 1 AND sgo.objecttype_id = 4', array() ); } /** * Join services */ protected function joinServices() { $this->select->joinLeft( array('s' => $this->prefix . 'services'), 's.host_object_id = ho.object_id', array() )->joinLeft( array('so' => $this->prefix . 'objects'), 'so.object_id = s.service_object_id AND so.is_active = 1 AND so.objecttype_id = 2', array() ); } protected function joinSubQuery(IdoQuery $query, $name, $filter, $and, $negate, &$additionalFilter) { 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, $filter, $and, $negate, $additionalFilter); } }