From c0ffe4d6908c9d31339f46efabdac41f444afbc2 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 8 Jun 2015 17:07:34 +0200 Subject: [PATCH] Introduce class HostnotificationQuery refs #9009 --- .../Ido/Query/HostnotificationQuery.php | 202 ++++++++++++++++++ 1 file changed, 202 insertions(+) create mode 100644 modules/monitoring/library/Monitoring/Backend/Ido/Query/HostnotificationQuery.php diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostnotificationQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostnotificationQuery.php new file mode 100644 index 000000000..78a6f53af --- /dev/null +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostnotificationQuery.php @@ -0,0 +1,202 @@ + array( + 'notification_output' => 'hn.output', + 'notification_start_time' => 'UNIX_TIMESTAMP(hn.start_time)', + 'notification_state' => 'hn.state', + 'notification_object_id' => 'hn.object_id', + 'host' => 'ho.name1 COLLATE latin1_general_ci', + 'host_name' => 'ho.name1', + 'object_type' => '(\'host\')' + ), + 'contactnotifications' => array( + 'contact' => 'cno.name1 COLLATE latin1_general_ci', + 'notification_contact_name' => 'cno.name1', + 'contact_object_id' => 'cno.object_id' + ), + 'acknowledgements' => array( + 'acknowledgement_entry_time' => 'UNIX_TIMESTAMP(a.entry_time)', + 'acknowledgement_author_name' => 'a.author_name', + 'acknowledgement_comment_data' => 'a.comment_data' + ), + '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' + ), + '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' + ) + ); + + /** + * {@inheritdoc} + */ + protected function joinBaseTables() + { + $this->select->from( + array('hn' => $this->prefix . 'notifications'), + array() + )->join( + array('ho' => $this->prefix . 'objects'), + 'ho.object_id = hn.object_id', + array() + )->where( + 'ho.is_active = ?', + 1 + )->where( + 'ho.objecttype_id = ?', + 1 + ); + $this->joinedVirtualTables['notifications'] = true; + } + + /** + * Join contact notifications + */ + protected function joinContactnotifications() + { + $this->select->join( + array('cn' => $this->prefix . 'contactnotifications'), + 'cn.notification_id = hn.notification_id', + array() + ); + $this->select->join( + array('cno' => $this->prefix . 'objects'), + 'cno.object_id = cn.contact_object_id', + array() + ); + } + + /** + * Join acknowledgements + */ + protected function joinAcknowledgements() + { + $this->select->joinLeft( + array('a' => $this->prefix . 'acknowledgements'), + 'a.object_id = hn.object_id', + array() + ); + } + + /** + * Join host groups + */ + protected function joinHostgroups() + { + $this->select->join( + array('hgm' => $this->prefix . 'hostgroup_members'), + 'hgm.host_object_id = ho.object_id', + array() + )->join( + array('hg' => $this->prefix . 'hostgroups'), + 'hg.hostgroup_id = hgm.hostgroup_id', + array() + )->join( + array('hgo' => $this->prefix . 'objects'), + 'hgo.object_id = hg.hostgroup_object_id', + array() + )->where( + 'hgo.is_active = ?', + 1 + ) + ->where( + 'hgo.objecttype_id = ?', + 3 + ); + $this->group(array('hn.notification_id', 'ho.name1')); + } + + /** + * Join hosts + */ + protected function joinHosts() + { + $this->select->join( + array('h' => $this->prefix . 'hosts'), + 'h.host_object_id = ho.object_id', + array() + ); + } + + /** + * Join service groups + */ + protected function joinServicegroups() + { + $this->requireVirtualTable('services'); + $this->select->join( + array('sgm' => $this->prefix . 'servicegroup_members'), + 'sgm.service_object_id = s.service_object_id', + array() + )->join( + array('sg' => $this->prefix . 'servicegroups'), + 'sg.' . $this->servicegroup_id . ' = sgm.servicegroup_id', + array() + )->join( + array('sgo' => $this->prefix . 'objects'), + 'sgo.object_id = sg.servicegroup_object_id', + array() + )->where( + 'sgo.is_active = ?', + 1 + ) + ->where( + 'sgo.objecttype_id = ?', + 4 + ); + } + + /** + * Join services + */ + protected function joinServices() + { + $this->select->join( + array('s' => $this->prefix . 'services'), + 's.host_object_id = h.host_object_id', + array() + )->join( + array('so' => $this->prefix . 'objects'), + 'so.object_id = s.service_object_id', + array() + )->where( + 'so.is_active = ?', + 1 + ) + ->where( + 'so.objecttype_id = ?', + 2 + ); + $this->group(array('hn.notification_id', 'ho.name1')); + } +}