array('sdh.downtimehistory_id', 'so.object_id')); /** * {@inheritdoc} */ protected $groupOrigin = array('hostgroups', 'servicegroups'); protected $subQueryTargets = array( 'hostgroups' => 'hostgroup', 'servicegroups' => 'servicegroup' ); /** * {@inheritdoc} */ protected $columnMap = array( 'downtimehistory' => array( 'id' => 'sdh.downtimehistory_id', 'host' => 'so.name1 COLLATE latin1_general_ci', 'host_name' => 'so.name1', 'object_id' => 'sdh.object_id', 'object_type' => '(\'service\')', 'output' => "('[' || sdh.author_name || '] ' || sdh.comment_data)", 'service' => 'so.name2 COLLATE latin1_general_ci', 'service_description' => 'so.name2', 'service_host' => 'so.name1 COLLATE latin1_general_ci', 'service_host_name' => 'so.name1', 'state' => '(-1)', 'timestamp' => 'UNIX_TIMESTAMP(sdh.actual_start_time)', 'type' => "('dt_start')" ), '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_display_name' => 's.display_name COLLATE latin1_general_ci' ) ); protected function requireFilterColumns(Filter $filter) { if ($filter instanceof FilterExpression && $filter->getColumn() === 'timestamp') { $this->requireColumn('timestamp'); $filter->setColumn('sdh.actual_start_time'); $filter->setExpression($this->timestampForSql($this->valueToTimestamp($filter->getExpression()))); return null; } return parent::requireFilterColumns($filter); } /** * {@inheritdoc} */ protected function joinBaseTables() { $this->select->from( array('sdh' => $this->prefix . 'downtimehistory'), array() )->join( array('so' => $this->prefix . 'objects'), 'so.object_id = sdh.object_id AND so.is_active = 1 AND so.objecttype_id = 2', array() ); if (func_num_args() === 0 || func_get_arg(0) === false) { $this->select->where( "sdh.actual_start_time > '1970-01-02 00:00:00'" ); } $this->select->where( "sdh.was_started = 1 AND sdh.was_cancelled = 0" ); $this->joinedVirtualTables['downtimehistory'] = true; } /** * Join host groups */ protected function joinHostgroups() { $this->requireVirtualTable('services'); $this->select->joinLeft( array('hgm' => $this->prefix . 'hostgroup_members'), 'hgm.host_object_id = s.host_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->requireVirtualTable('services'); $this->select->join( array('h' => $this->prefix . 'hosts'), 'h.host_object_id = s.host_object_id', array() ); } /** * Join instances */ protected function joinInstances() { $this->select->join( array('i' => $this->prefix . 'instances'), 'i.instance_id = sdh.instance_id', array() ); } /** * Join service groups */ protected function joinServicegroups() { $this->select->joinLeft( array('sgm' => $this->prefix . 'servicegroup_members'), 'sgm.service_object_id = so.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->join( array('s' => $this->prefix . 'services'), 's.service_object_id = so.object_id', array() ); } protected function joinSubQuery(IdoQuery $query, $name, $filter, $and, $negate, &$additionalFilter) { if ($name === 'hostgroup') { $query->joinVirtualTable('services'); return ['so.object_id', 'so.object_id']; } elseif ($name === 'servicegroup') { $query->joinVirtualTable('members'); return ['sgm.service_object_id', 'so.object_id']; } return parent::joinSubQuery($query, $name, $filter, $and, $negate, $additionalFilter); } }