get_host_template_info($_GET['id'], $hostTemplate)) { header("Location: templates.php"); die(); } else { // GET VALUES $templateValues = $hostTemplate->getValues(); } } // Action Handlers if(isset($_GET['request'])) { if($_GET['request'] == "delete" && $_GET['section'] == 'autodiscovery') { $filter = NagiosHostTemplateAutodiscoveryServicePeer::retrieveByPK($_GET['filter']); if(!$filter || $filter->getHostTemplate() != $hostTemplate->getId()) { $error = "That filter no longer exists."; } else { $filter->delete(); $success = "Service filter deleted."; } } if($_GET['request'] == "delete" && $_GET['section'] == 'groups') { $c = new Criteria(); $c->add(NagiosHostgroupMembershipPeer::HOST_TEMPLATE, $_GET['id']); $c->add(NagiosHostgroupMembershipPeer::HOSTGROUP, $_GET['hostgroup_id']); $membership = NagiosHostgroupMembershipPeer::doSelectOne($c); if($membership) { $membership->delete(); $success = "Membership Deleted"; } } else if($_GET['request'] == "delete" && $_GET['section'] == 'services') { $service = NagiosServicePeer::retrieveByPK($_GET['service_id']); if($service) { $service->delete(); $success = "Service Deleted"; } else { $error = "That service does not exist."; } } else if($_GET['request'] == "delete" && $_GET['section'] == 'general') { $template = NagiosHostTemplatePeer::retrieveByPK($_GET['id']); if($template) { $template->delete(); $success = "Host template deleted."; unset($_GET['id']); header("Location: templates.php"); die(); } else { $error = "Host template does not exist."; } } else if($_GET['request'] == "delete" && $_GET['section'] == 'inheritance') { $c = new Criteria(); $c->add(NagiosHostTemplateInheritancePeer::SOURCE_TEMPLATE, $hostTemplate->getId()); $c->addAscendingOrderByColumn(NagiosHostTemplateInheritancePeer::ORDER); $inheritanceList = NagiosHostTemplateInheritancePeer::doSelect($c); $found = false; for($counter = 0; $counter < count($inheritanceList); $counter++) { if($inheritanceList[$counter]->getNagiosHostTemplateRelatedByTargetTemplate()->getId() == $_GET['template_id']) { // Omg, we found it! // Delete the inheritance $inheritanceList[$counter]->delete(); // Okay, regrab the list $newList = NagiosHostTemplateInheritancePeer::doSelect($c); for($counter = 0; $counter < count($newList); $counter++) { // Reordering $newList[$counter]->setOrder($counter); $newList[$counter]->save(); } $success = "Removed template from inheritance list."; } } if(empty($error)) { $error = "Could not find that template specified."; } } else if($_GET['request'] == "movedown" && $_GET['section'] == "inheritance") { $c = new Criteria(); $c->add(NagiosHostTemplateInheritancePeer::SOURCE_TEMPLATE, $hostTemplate->getId()); $c->addAscendingOrderByColumn(NagiosHostTemplateInheritancePeer::ORDER); $inheritanceList = NagiosHostTemplateInheritancePeer::doSelect($c); $found = false; for($counter = 0; $counter < count($inheritanceList); $counter++) { if($inheritanceList[$counter]->getNagiosHostTemplateRelatedByTargetTemplate()->getId() == $_GET['template_id']) { // Omg, we found it! if($counter == (count($inheritanceList) -1)) { // We're at the end of the array, we couldn't possibly move down more! $error = "Cannot move that template down any further."; break; } else { $tempTemplate = $inheritanceList[$counter + 1]; $inheritanceList[$counter]->setOrder($inheritanceList[$counter]->getOrder() + 1); $tempTemplate->setOrder($tempTemplate->getOrder() - 1); $inheritanceList[$counter]->save(); $tempTemplate->save(); $success = "Template moved down in inheritance chain."; $found = true; break; } } } if(empty($error)) { $error = "Could not find that template specified."; } } else if($_GET['request'] == "moveup" && $_GET['section'] == "inheritance") { $c = new Criteria(); $c->add(NagiosHostTemplateInheritancePeer::SOURCE_TEMPLATE, $hostTemplate->getId()); $c->addAscendingOrderByColumn(NagiosHostTemplateInheritancePeer::ORDER); $inheritanceList = NagiosHostTemplateInheritancePeer::doSelect($c); $found = false; for($counter = 0; $counter < count($inheritanceList); $counter++) { if($inheritanceList[$counter]->getNagiosHostTemplateRelatedByTargetTemplate()->getId() == $_GET['template_id']) { // Omg, we found it! if($counter == 0) { // We're at the end of the array, we couldn't possibly move down more! $error = "Cannot move that template up any further."; break; } else { $tempTemplate = $inheritanceList[$counter - 1]; $inheritanceList[$counter]->setOrder($inheritanceList[$counter]->getOrder() - 1); $tempTemplate->setOrder($tempTemplate->getOrder() + 1); $inheritanceList[$counter]->save(); $tempTemplate->save(); $success = "Template moved up in inheritance chain."; $found = true; break; } } } if(empty($error)) { $error = "Could not find that template specified."; } } if($_GET['request'] == "delete" && $_GET['section'] == 'contacts') { if(!empty($_GET['contactgroup_id'])) { $c = new Criteria(); $c->add(NagiosHostContactgroupPeer::HOST_TEMPLATE, $_GET['id']); $c->add(NagiosHostcontactgroupPeer::CONTACTGROUP, $_GET['contactgroup_id']); $membership = NagiosHostContactgroupPeer::doSelectOne($c); if($membership) { $membership->delete(); $success = "Contact Group Deleted"; } } else if(!empty($_GET['contact_id'])) { $c = new Criteria(); $c->add(NagiosHostContactMemberPeer::TEMPLATE, $_GET['id']); $c->add(NagiosHostcontactMemberPeer::CONTACT, $_GET['contact_id']); $membership = NagiosHostContactMemberPeer::doSelectOne($c); if($membership) { $membership->delete(); $success = "Contact deleted."; } } } if($_GET['request'] == "delete" && $_GET['section'] == 'dependencies') { $dependency = NagiosDependencyPeer::retrieveByPK($_GET['dependency_id']); if($dependency) { $dependency->delete(); $success = "Dependency deleted."; } } if($_GET['request'] == "delete" && $_GET['section'] == 'escalations') { // !!!!!!!!!!!!!! This is where we do dependency error checking $lilac->delete_escalation($_GET['escalation_id']); $success = "Escalation Deleted"; unset($tempData); } if($_GET['request'] == "delete" && $_GET['section'] == 'checkcommand') { $commandParameter = NagiosHostCheckCommandParameterPeer::retrieveByPK($_GET['checkcommandparameter_id']); if($commandParameter) { $commandParameter->delete(); } $success = "Check Command Parameter Deleted."; } } if(isset($_POST['request'])) { $modifiedData = array(); if(isset($_POST['host_manage']) && count($_POST['host_manage'])) { foreach( $_POST['host_manage'] as $key=>$value) { if( is_array( $value)) { $modifiedData[$key] = $value; } else { $modifiedData[$key] = (string)trim($value); } } } if($_POST['request'] == 'host_template_modify_general') { if($modifiedData['template_name'] != $hostTemplate->getName() && $lilac->host_template_exists($modifiedData['template_name'])) { $error = "A host template with that name already exists!"; } else { // Field Error Checking if(count($modifiedData)) { foreach($modifiedData as $tempVariable) $tempVariable = trim($tempVariable); } if($modifiedData['template_name'] == '' || $modifiedData['template_description'] == '') { $addError = 1; $error = "Incorrect values for fields. Please verify."; } // All is well for error checking, modify the template. else { $hostTemplate->setName($modifiedData['template_name']); $hostTemplate->setDescription($modifiedData['template_description']); $hostTemplate->save(); $success = "Template modified."; unset($_GET['edit']); } } } else if($_POST['request'] == "add_template_command") { $template = NagiosHostTemplatePeer::retrieveByPK($_POST['hostmanage']['template_add']['template_id']); if(!$template) { $error = "That host template is not found."; } else { // We need to get the count of templates already inherited $templateList = $hostTemplate->getNagiosHostTemplateInheritances(); foreach($templateList as $tempTemplate) { if($tempTemplate->getId() == $_POST['hostmanage']['template_add']['template_id']) { $error = "That template already exists in the inheritance chain."; } } if(empty($error)) { $newInheritance = new NagiosHostTemplateInheritance(); $newInheritance->setNagiosHostTemplateRelatedBySourceTemplate($hostTemplate); $newInheritance->setNagiosHostTemplateRelatedByTargetTemplate($template); $newInheritance->setOrder(count($templateList)); try { $newInheritance->save(); $success = "Template added to inheritance chain."; } catch(Exception $e) { $error = $e->getMessage(); } } } } else if($_POST['request'] == 'host_template_modify_checks') { if(count($modifiedData)) { foreach($modifiedData as $tempVariable) $tempVariable = trim($tempVariable); } if((isset($modifiedData['max_check_attempts_include']) && !is_numeric($modifiedData['max_check_attempts'])) || (isset($modifiedData['max_check_attempts_include']) && !($modifiedData['max_check_attempts'] >= 1)) || (isset($modifiedData['freshness_threshold_include']) && !($modifiedData['freshness_threshold'] >= 0))) { $addError = 1; $error = "Incorrect values for fields. Please verify."; } // All is well for error checking, modify the template. else { // Let's modify our host template if(isset($modifiedData['initial_state'])) { $hostTemplate->setInitialState($modifiedData['initial_state']); } else { $hostTemplate->setInitialState(null); } if(isset($modifiedData['active_checks_enabled'])) { $hostTemplate->setActiveChecksEnabled($modifiedData['active_checks_enabled']); } else { $hostTemplate->setActiveChecksEnabled(null); } if(isset($modifiedData['passive_checks_enabled'])) { $hostTemplate->setPassiveChecksEnabled($modifiedData['passive_checks_enabled']); } else { $hostTemplate->setPassiveChecksEnabled(null); } if(isset($modifiedData['check_period']) && $modifiedData['check_period'] != 0) { $hostTemplate->setCheckPeriod(NagiosTimeperiodPeer::retrieveByPK($modifiedData['check_period'])->getId()); } else { $hostTemplate->setCheckPeriod(null); } if(isset($modifiedData['check_command']) && $modifiedData['check_command'] != 0) { $hostTemplate->setCheckCommand(NagiosCommandPeer::retrieveByPK($modifiedData['check_command'])->getId()); } else { $hostTemplate->setCheckCommand(null); } if(isset($modifiedData['retry_interval'])) { $hostTemplate->setRetryInterval($modifiedData['retry_interval']); } else { $hostTemplate->setRetryInterval(null); } if(isset($modifiedData['max_check_attempts'])) { $hostTemplate->setMaximumCheckAttempts($modifiedData['max_check_attempts']); } else { $hostTemplate->setMaximumCheckAttempts(null); } if(isset($modifiedData['check_interval'])) { $hostTemplate->setCheckInterval($modifiedData['check_interval']); } else { $hostTemplate->setCheckInterval(null); } if(isset($modifiedData['obsess_over_host'])) { $hostTemplate->setObsessOverHost($modifiedData['obsess_over_host']); } else { $hostTemplate->setObsessOverHost(null); } if(isset($modifiedData['check_freshness'])) { $hostTemplate->setCheckFreshness($modifiedData['check_freshness']); } else { $hostTemplate->setCheckFreshness(null); } if(isset($modifiedData['freshness_threshold'])) { $hostTemplate->setFreshnessThreshold($modifiedData['freshness_threshold']); } else { $hostTemplate->setFreshnessThreshold(null); } if(isset($modifiedData['event_handler']) && $modifiedData['event_handler'] !=0) { $hostTemplate->setEventHandler(NagiosCommandPeer::retrieveByPK($modifiedData['event_handler'])->getId()); } else { $hostTemplate->setEventHandler(null); } if(isset($modifiedData['event_handler_enabled'])) { $hostTemplate->setEventHandlerEnabled($modifiedData['event_handler_enabled']); } else { $hostTemplate->setEventHandlerEnabled(null); } if(isset($modifiedData['failure_prediction_enabled'])) { $hostTemplate->setFailurePredictionEnabled($modifiedData['failure_prediction_enabled']); } else { $hostTemplate->setFailurePredictionEnabled(null); } $hostTemplate->save(); unset($_GET['edit']); $success = "Host template modified"; } } else if($_POST['request'] == 'host_template_modify_flapping') { // Field Error Checking if(count($modifiedData)) { foreach($modifiedData as $tempVariable) $tempVariable = trim($tempVariable); } if((isset($modifiedData['low_flap_threshold']) && $modifiedData['low_flap_threshold'] < 0) || (isset($modifiedData['high_flap_threshold']) && $modifiedData['high_flap_threshold'] < 0)) { $addError = 1; $error = "Incorrect values for fields. Please verify."; } // All is well for error checking, modify the command. else { // Modify flapping information if(isset($modifiedData['flap_detection_enabled'])) { $hostTemplate->setFlapDetectionEnabled($modifiedData['flap_detection_enabled']); } else { $hostTemplate->setFlapDetectionEnabled(null); } if(!isset($_POST['host_manage_checkboxes']) || !isset($_POST['host_manage_checkboxes']['flap_detection_options'])) { $hostTemplate->setFlapDetectionOnUp(null); $hostTemplate->setFlapDetectionOnDown(null); $hostTemplate->setFlapDetectionOnUnreachable(null); } else { if(isset($_POST['host_manage']['flap_detection_on_up'])) { $hostTemplate->setFlapDetectionOnUp(true); } else { $hostTemplate->setFlapDetectionOnUp(false); } if(isset($_POST['host_manage']['flap_detection_on_down'])) { $hostTemplate->setFlapDetectionOnDown(true); } else { $hostTemplate->setFlapDetectionOnDown(false); } if(isset($_POST['host_manage']['flap_detection_on_unreachable'])) { $hostTemplate->setFlapDetectionOnUnreachable(true); } else { $hostTemplate->setFlapDetectionOnUnreachable(false); } } if(isset($modifiedData['low_flap_threshold'])) { $hostTemplate->setLowFlapThreshold($modifiedData['low_flap_threshold']); } else { $hostTemplate->setLowFlapThreshold(null); } if(isset($modifiedData['high_flap_threshold'])) { $hostTemplate->setHighFlapThreshold($modifiedData['high_flap_threshold']); } else { $hostTemplate->setHighFlapThreshold(null); } $hostTemplate->save(); unset($modifiedData); $success = "Host template modified."; unset($_GET['edit']); } } else if($_POST['request'] == 'host_template_modify_logging') { // Field Error Checking // None required for this process // All is well for error checking, modify the host template. if(isset($modifiedData['process_perf_data'])) { $hostTemplate->setProcessPerfData($modifiedData['process_perf_data']); } else { $hostTemplate->setProcessPerfData(null); } if(isset($modifiedData['retain_status_information'])) { $hostTemplate->setRetainStatusInformation($modifiedData['retain_status_information']); } else { $hostTemplate->setRetainStatusInformation(null); } if(isset($modifiedData['retain_nonstatus_information'])) { $hostTemplate->setRetainNonstatusInformation($modifiedData['retain_nonstatus_information']); } else { $hostTemplate->setRetainNonstatusInformation(null); } $hostTemplate->save(); unset($modifiedData); $success = "Host template modified."; unset($_GET['edit']); } else if($_POST['request'] == 'host_template_modify_notifications') { // Field Error Checking if(count($modifiedData)) { foreach($modifiedData as $tempVariable) $tempVariable = trim($tempVariable); } if(isset($_POST['host_manage_enablers']['notification_interval']) && ($modifiedData['notification_interval'] == '' || $modifiedData['notification_interval'] < 0 || !is_numeric($modifiedData['notification_interval']))) { $error = "Incorrect values for fields. Please verify."; } // All is well for error checking, modify the command. else { if(!isset($_POST['host_manage_checkboxes']) || !isset($_POST['host_manage_checkboxes']['notification_options'])) { $hostTemplate->setNotificationOnDown(null); $hostTemplate->setNotificationOnUnreachable(null); $hostTemplate->setNotificationOnRecovery(null); $hostTemplate->setNotificationOnFlapping(null); $hostTemplate->setNotificationOnScheduledDowntime(null); } else { if(isset($_POST['host_manage']['notification_on_down'])) { $hostTemplate->setNotificationOnDown(true); } else { $hostTemplate->setNotificationOnDown(false); } if(isset($_POST['host_manage']['notification_on_unreachable'])) { $hostTemplate->setNotificationOnUnreachable(true); } else { $hostTemplate->setNotificationOnUnreachable(false); } if(isset($_POST['host_manage']['notification_on_recovery'])) { $hostTemplate->setNotificationOnRecovery(true); } else { $hostTemplate->setNotificationOnRecovery(false); } if(isset($_POST['host_manage']['notification_on_flapping'])) { $hostTemplate->setNotificationOnFlapping(true); } else { $hostTemplate->setNotificationOnFlapping(false); } if(isset($_POST['host_manage']['notification_on_scheduled_downtime'])) { $hostTemplate->setNotificationOnScheduledDowntime(true); } else { $hostTemplate->setNotificationOnScheduledDowntime(false); } } if(!isset($_POST['host_manage_checkboxes']) || !isset($_POST['host_manage_checkboxes']['stalking_options'])) { $hostTemplate->setStalkingOnUp(null); $hostTemplate->setStalkingOnDown(null); $hostTemplate->setStalkingOnUnreachable(null); } else { if(isset($_POST['host_manage']['stalking_on_up'])) { $hostTemplate->setStalkingOnUp(true); } else { $hostTemplate->setStalkingOnUp(false); } if(isset($_POST['host_manage']['stalking_on_down'])) { $hostTemplate->setStalkingOnDown(true); } else { $hostTemplate->setStalkingOnDown(false); } if(isset($_POST['host_manage']['stalking_on_unreachable'])) { $hostTemplate->setStalkingOnUnreachable(true); } else { $hostTemplate->setStalkingOnUnreachable(false); } } if(isset($modifiedData['first_notification_delay'])) { $hostTemplate->setFirstNotificationDelay($modifiedData['first_notification_delay']); } else { $hostTemplate->setFirstNotificationDelay(null); } if(isset($modifiedData['notifications_enabled'])) { $hostTemplate->setNotificationsEnabled($modifiedData['notifications_enabled']); } else { $hostTemplate->setNotificationsEnabled(null); } if(isset($modifiedData['notification_interval'])) { $hostTemplate->setNotificationInterval($modifiedData['notification_interval']); } else { $hostTemplate->setNotificationInterval(null); } if(isset($modifiedData['notification_period'])) { $hostTemplate->setNotificationPeriod(NagiosTimeperiodPeer::retrieveByPK($modifiedData['notification_period'])->getId()); } else { $hostTemplate->setNotificationPeriod(null); } $hostTemplate->save(); // Remove session data unset($modifiedData); $success = "Host template modified."; unset($_GET['edit']); } } else if($_POST['request'] == 'add_member_command') { if($lilac->host_template_has_hostgroup($_GET['id'], $modifiedData['group_add']['hostgroup_id'])) { $error = "That host group already exists in that list!"; } else { $lilac->add_hostgroup_template_member($modifiedData['group_add']['hostgroup_id'], $modifiedData['group_add']['host_id']); $success = "Host Template Added To Host Group."; unset($modifiedData); } } else if($_POST['request'] == 'command_parameter_add') { // All is well for error checking, modify the command. $lilac->add_host_template_command_parameter($_GET['id'], $modifiedData); // Remove session data unset($modifiedData); $success = "Command Parameter added."; } if($_POST['request'] == 'update_host_extended') { if(isset($modifiedData['notes'])) { $hostTemplate->setNotes($modifiedData['notes']); } else { $hostTemplate->setNotes(null); } if(isset($modifiedData['notes_url'])) { $hostTemplate->setNotesUrl($modifiedData['notes_url']); } else { $hostTemplate->setNotesUrl(null); } if(isset($modifiedData['action_url'])) { $hostTemplate->setActionUrl($modifiedData['action_url']); } else { $hostTemplate->setActionUrl(null); } if(isset($modifiedData['icon_image'])) { $hostTemplate->setIconImage($modifiedData['icon_image']); } else { $hostTemplate->setIconImage(null); } if(isset($modifiedData['icon_image_alt'])) { $hostTemplate->setIconImageAlt($modifiedData['icon_image_alt']); } else { $hostTemplate->setIconImageAlt(null); } if(isset($modifiedData['vrml_image'])) { $hostTemplate->setVrmlImage($modifiedData['vrml_image']); } else { $hostTemplate->setVrmlImage(null); } if(isset($modifiedData['statusmap_image'])) { $hostTemplate->setStatusmapImage($modifiedData['statusmap_image']); } else { $hostTemplate->setStatusmapImage(null); } if(isset($modifiedData['two_d_coords'])) { $hostTemplate->setTwoDCoords($modifiedData['two_d_coords']); } else { $hostTemplate->setTwoDCoords(null); } if(isset($modifiedData['three_d_coords'])) { $hostTemplate->setThreeDCoords($modifiedData['three_d_coords']); } else { $hostTemplate->setThreeDCoords(null); } $hostTemplate->save(); $success = "Updated Host Template Extended Information"; } else if($_POST['request'] == 'add_contact_command') { $c = new Criteria(); $c->add(NagiosHostContactMemberPeer::TEMPLATE, $_GET['id']); $c->add(NagiosHostContactMemberPeer::CONTACT, $_POST['host_manage']['contact_add']['contact_id']); $membership = NagiosHostContactMemberPeer::doSelectOne($c); if($membership) { $error = "That contact already exists in that list!"; } else { $tempContact = NagiosContactPeer::retrieveByPk($_POST['host_manage']['contact_add']['contact_id']); if($tempContact) { $membership = new NagiosHostContactMember(); $membership->setTemplate($_GET['id']); $membership->setNagiosContact($tempContact); $membership->save(); $success = "New Host Template Contact Link added."; } else { $error = "That contact is not found."; } } } else if($_POST['request'] == 'add_contactgroup_command') { $c = new Criteria(); $c->add(NagiosHostContactgroupPeer::HOST_TEMPLATE, $_GET['id']); $c->add(NagiosHostContactgroupPeer::CONTACTGROUP, $_POST['host_manage']['contactgroup_add']['contactgroup_id']); $membership = NagiosHostContactgroupPeer::doSelectOne($c); if($membership) { $error = "That contact group already exists in that list!"; } else { $tempGroup = NagiosContactGroupPeer::retrieveByPk($_POST['host_manage']['contactgroup_add']['contactgroup_id']); if($tempGroup) { $membership = new NagiosHostContactgroup(); $membership->setHostTemplate($_GET['id']); $membership->setNagiosContactGroup($tempGroup); $membership->save(); $success = "New Host Template Contact Group Link added."; } else { $error = "That contact group is not found."; } } } else if($_POST['request'] == 'host_template_modify_autodiscovery') { // Field Error Checking if(count($modifiedData)) { foreach($modifiedData as $tempVariable) $tempVariable = trim($tempVariable); } // All is well for error checking, modify the command. if(isset($modifiedData['autodiscovery_address_filter'])) { $hostTemplate->setAutodiscoveryAddressFilter($modifiedData['autodiscovery_address_filter']); } else { $hostTemplate->setAutodiscoveryAddressFilter(null); } if(isset($modifiedData['autodiscovery_hostname_filter'])) { $hostTemplate->setAutodiscoveryHostnameFilter($modifiedData['autodiscovery_hostname_filter']); } else { $hostTemplate->setAutodiscoveryHostnameFilter(null); } if(isset($modifiedData['autodiscovery_os_family_filter'])) { $hostTemplate->setAutodiscoveryOsFamilyFilter($modifiedData['autodiscovery_os_family_filter']); } else { $hostTemplate->setAutodiscoveryOsFamilyFilter(null); } if(isset($modifiedData['autodiscovery_os_generation_filter'])) { $hostTemplate->setAutodiscoveryOsGenerationFilter($modifiedData['autodiscovery_os_generation_filter']); } else { $hostTemplate->setAutodiscoveryOsGenerationFilter(null); } if(isset($modifiedData['autodiscovery_os_vendor_filter'])) { $hostTemplate->setAutodiscoveryOsVendorFilter($modifiedData['autodiscovery_os_vendor_filter']); } else { $hostTemplate->setAutodiscoveryOsVendorFilter(null); } $hostTemplate->save(); unset($modifiedData); $success = "Host template modified."; unset($_GET['edit']); } else if($_POST['request'] == 'host_template_add_autodiscovery_service') { if(count($modifiedData)) { foreach($modifiedData as $tempVariable) $tempVariable = trim($tempVariable); } if(empty($modifiedData['protocol']) || empty($modifiedData['port']) || !is_numeric($modifiedData['port'])) { $error = "Port is required and must be numeric for Auto-Discovery service filter."; } else { // Error checking is good, let's create a service filter $serviceFilter = new NagiosHostTemplateAutodiscoveryService(); $serviceFilter->setExtraInformation($modifiedData['extra_information']); $serviceFilter->setNagiosHostTemplate($hostTemplate); $serviceFilter->setName($modifiedData['name']); $serviceFilter->setPort($modifiedData['port']); $serviceFilter->setProduct($modifiedData['product']); $serviceFilter->setProtocol($modifiedData['protocol']); $serviceFilter->setVersion($modifiedData['version']); $serviceFilter->save(); $success = "Auto-Discovery Service Filter Created"; } } } if(isset($_GET['id'])) { // Load template. if(!$lilac->get_host_template_info($_GET['id'], $hostTemplate)) { header("Location: templates.php"); die(); } else { // GET VALUES $templateValues = $hostTemplate->getValues(); // Check to see if we inherit from another template } } // To create a "default" command $command_list[] = array("command_id" => 0, "command_name" => "None"); $lilac->return_command_list($tempList); foreach($tempList as $command) { $command_list[] = array("command_id" => $command->getId(), "command_name" => $command->getName()); } $period_list = array(); $lilac->return_period_list($tempList); foreach($tempList as $period) { $period_list[] = array("timeperiod_id" => $period->getId(), "timeperiod_name" => $period->getName()); } $initialState_list = array(); $initialState_list[] = array('value' => 'o', 'label' => 'Up'); $initialState_list[] = array('value' => 'd', 'label' => 'Down'); $initialState_list[] = array('value' => 'u', 'label' => 'Unreachable'); // Build subnav $subnav = array( 'general' => 'General', 'inheritance' => 'Inheritance', 'checks' => 'Checks', 'flapping' => 'Flapping', 'logging' => 'Logging', 'notifications' => 'Notifications', 'services' => 'Services', 'groups' => 'Group Memberships', 'contacts' => 'Contacts', 'extended' => 'Extended Information', 'dependencies' => 'Dependencies', 'escalations' => 'Escalations' ); if(isset($templateValues['check_command'])) { $subnav['checkcommand'] = 'Check Command Parameters'; } $subnav['autodiscovery'] = 'Auto-Discovery Filters'; print_header("Host Template Editor"); if(isset($_GET['id'])) { print_window_header("Template Info for " . $hostTemplate->getName(), "100%"); print_subnav($subnav, $_GET['section'], "section", $_SERVER['PHP_SELF'] . "?id=" . $_GET['id']); $host_template_icon_image = $path_config['image_root'] . "server.gif"; if($_GET['section'] == 'general') { ?>
Template Name:

element_desc("template_name", "nagios_host_template_desc"); ?>

Description:

element_desc("template_description", "nagios_host_template_desc"); ?>


[ Cancel ] Template Name: getName();?>
Description: getDescription();?>

[ Edit ]

[ Delete This Host Template ] getNagiosHostTemplateInheritances(); $numOfTemplates = count($templateInheritances); $exclude_list = array(); $exclude_list[] = $hostTemplate->getId(); if($numOfTemplates) { foreach($templateInheritances as $template) { $exclude_list[] = $template->getId(); } } $templateList = NagiosHostTemplatePeer::doSelect(new Criteria); ?>
Host Templates To Inherit From (Top to Bottom):
1 && $counter > 0) { ?>[ Move Up] 1 && $counter < ($numOfTemplates -1)) { ?>[ Move Down]  [ Delete ] getName();?>


Add Template To Inherit From:

getInheritedCommandWithParameters(); ?>
element_desc("initial_state", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "active_checks_enabled", "Active Checks", $lilac->element_desc("active_checks_enabled", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "passive_checks_enabled", "Passive Checks", $lilac->element_desc("passive_checks_enabled", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($period_list, "timeperiod_id", "timeperiod_name", "host_manage", "check_period", "Check Period", $lilac->element_desc("check_period", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($command_list, "command_id", "command_name", "host_manage", "check_command", "Check Command", $lilac->element_desc("check_command", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(4, 4, "host_manage", "retry_interval", "Retry Interval", $lilac->element_desc("retry_interval", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(4, 4, "host_manage", "max_check_attempts", "Maximum Check Attempts", $lilac->element_desc("max_check_attempts", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(8, 8, "host_manage", "check_interval", "Check Interval In Time-Units", $lilac->element_desc("check_interval", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "obsess_over_host", "Obsess Over Host", $lilac->element_desc("obsess_over_host", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "check_freshness", "Check Freshness", $lilac->element_desc("check_freshness", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(8, 8, "host_manage", "freshness_threshold", "Freshness Threshold in Seconds", $lilac->element_desc("freshness_threshold", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "event_handler_enabled", "Event Handler Enabled", $lilac->element_desc("event_handler_enabled", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($command_list, "command_id", "command_name", "host_manage", "event_handler", "Event Handler", $lilac->element_desc("event_handler", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "failure_prediction_enabled", "Failure Prediction", $lilac->element_desc("failure_prediction_enabled", "nagios_hosts_desc"), $templateValues, $_GET['id']); double_pane_form_window_finish(); ?>
[ Cancel ]

Included In Template:


[ Edit ]
"flap_detection_on_up", 'label' => "Up"); $flap_detection_options_checkbox_group[] = array('field' => "flap_detection_on_down", 'label' => "Down"); $flap_detection_options_checkbox_group[] = array('field' => "flap_detection_on_unreachable", 'label' => "Unreachable"); ?> element_desc("flap_detection_enabled", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_checkbox_group_with_enabler($flap_detection_options_checkbox_group, "host_manage", "flap_detection_options", "Flap Detection Options", $lilac->element_desc("flap_detection_options", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(4, 4, "host_manage", "low_flap_threshold", "Low Flap Threshold", $lilac->element_desc("low_flap_threshold", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(4, 4, "host_manage", "high_flap_threshold", "High Flap Threshold", $lilac->element_desc("high_flap_threshold", "nagios_hosts_desc"), $templateValues, $_GET['id']); double_pane_form_window_finish(); ?> [ Cancel ]

Included In Template:

getFlapDetectionOnUp() !== null) { ?> Flap Detection On: getFlapDetectionOnUp() || $hostTemplate->getFlapDetectionOnDown() || $hostTemplate->getFlapDetectionOnUnreachable()) { if($hostTemplate->getFlapDetectionOnUp()) { print("Up"); if($hostTemplate->getFlapDetectionOnDown() || $hostTemplate->getFlapDetectionOnUnreachable()) print(","); } if($hostTemplate->getFlapDetectionOnDown()) { print("Down"); if($hostTemplate->getFlapDetectionOnUnreachable()) print(","); } if($hostTemplate->getFlapDetectionOnUnreachable()) { print("Unreachable"); } } else { print("None"); } print("
"); } elseif(isset($templateValues['flap_detection_on_up'])) { ?> Flap Detection On: - Inherited From: ".$templateValues['flap_detection_on_up']['source']['name'].""); print("
"); } print_display_field("Low Flap Threshold", $templateValues, "low_flap_threshold", $_GET['id']); print_display_field("High Flap Threshold", $templateValues, "high_flap_threshold", $_GET['id']); ?>
[ Edit ]
element_desc("process_perf_data", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "retain_status_information", "Retain Status Information", $lilac->element_desc("retain_status_information", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($enable_list, "values", "text", "host_manage", "retain_nonstatus_information", "Retain Non-Status Information", $lilac->element_desc("retain_nonstatus_information", "nagios_hosts_desc"), $templateValues, $_GET['id']); double_pane_form_window_finish(); ?> [ Cancel ]

Included In Template:


[ Edit ]
"notification_on_down", 'label' => "Down"); $notification_options_checkbox_group[] = array('field' => "notification_on_unreachable", 'label' => "Unreachable"); $notification_options_checkbox_group[] = array('field' => "notification_on_recovery", 'label' => "Recovery"); $notification_options_checkbox_group[] = array('field' => "notification_on_flapping", 'label' => "Flapping"); $notification_options_checkbox_group[] = array('field' => "notification_on_scheduled_downtime", 'label' => "Scheduled Downtime"); $stalking_options_checkbox_group[] = array('field' => "stalking_on_up", 'label' => "Up"); $stalking_options_checkbox_group[] = array('field' => "stalking_on_down", 'label' => "Down"); $stalking_options_checkbox_group[] = array('field' => "stalking_on_unreachable", 'label' => "Unreachable"); ?> element_desc("notifications_enabled", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(4, 4, "host_manage", "first_notification_delay", "First Notification Delay", $lilac->element_desc("first_notification_delay", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(8, 8, "host_manage", "notification_interval", "Notification Interval in Time-Units", $lilac->element_desc("notification_interval", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($period_list, "timeperiod_id", "timeperiod_name", "host_manage", "notification_period", "Notification Period", $lilac->element_desc("notification_period", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_checkbox_group_with_enabler($notification_options_checkbox_group, "host_manage", "notification_options", "Notification Options", $lilac->element_desc("notification_options", "nagios_hosts_desc"), $templateValues, $_GET['id']); form_checkbox_group_with_enabler($stalking_options_checkbox_group, "host_manage", "stalking_options", "Stalking Options", $lilac->element_desc("stalking_options", "nagios_hosts_desc"), $templateValues, $_GET['id']); double_pane_form_window_finish(); ?>
[ Cancel ]

Included In Template:

getNotificationOnDown() !== null) { ?> Notification On: getNotificationOnDown() && !$hostTemplate->getNotificationOnUnreachable() && !$hostTemplate->getNotificationOnRecovery() && !$hostTemplate->getNotificationOnFlapping()) { print("None"); } else { $values = array(); if($hostTemplate->getNotificationOnDown()) $values[] = "Down"; if($hostTemplate->getNotificationOnUnreachable()) $values[] = "Unreachable"; if($hostTemplate->getNotificationOnRecovery()) $values[] = "Recovery"; if($hostTemplate->getNotificationOnFlapping()) $values[] = "Flapping"; if($hostTemplate->getNotificationOnScheduledDowntime()) $values[] = "Scheduled Downtime"; print(implode(",", $values)); } print("
"); } elseif(isset($templateValues['notification_on_down'])) { ?> Notification On: - Inherited From: ".$templateValues['notification_on_down']['source']['name'].""); print("
"); } if($hostTemplate->getStalkingOnUp() !== null) { ?> Stalking On: getStalkingOnUp() || $hostTemplate->getStalkingOnDown() || $hostTemplate->getStalkingOnUnreachable()) { if($hostTemplate->getStalkingOnUp()) { print("Up"); if($hostTemplate->getStalkingOnDown() || $hostTemplate->getStalkingOnUnreachable()) print(","); } if($hostTemplate->getStalkingOnDown()) { print("Down"); if($hostTemplate->getStalkingOnUnreachable()) print(","); } if($hostTemplate->getStalkingOnUnreachable()) { print("Unreachable"); } } else { print("None"); } print("
"); } elseif(isset($templateValues['stalking_on_up'])) { ?> Stalking On: - Inherited From: ".$templateValues['stalking_on_up']['source']['name'].""); print("
"); } ?>
[ Edit ]
getInheritedHostGroups(); $numOfInheritedGroups = count($inherited_list); $lilac->get_host_template_membership_list($_GET['id'], $group_list); $numOfGroups = count($group_list); // Get list of host groups $lilac->get_hostgroup_list($tempList); $hostgroups_list = array(); foreach($tempList as $hostgroup) { $hostgroups_list[] = array("hostgroup_id" => $hostgroup->getId(), "hostgroup_name" => $hostgroup->getName()); } $numOfHostGroups = count($hostgroups_list); ?>
Host Groups Inherited By Templates:
  getName();?>: getName();?>

Host Group Membership:
 [ Delete ] getNagiosHostgroup()->getName();?>: getNagiosHostgroup()->getAlias();?>


Add New Host Group Membership:
element_desc("members", "nagios_contactgroups_desc"); ?>

getInheritedServices(); $numOfInheritedServices = count($inherited_list); $lilac->get_host_template_services_list($_GET['id'], $hostTemplateServiceList); $command_list[] = array("value" => 0, "text" => "None"); $numOfServices = count($hostTemplateServiceList); ?>
Services Inherited By Inherited Templates:
  getDescription();?> from getNagiosHostTemplate()->getName();?>

Services Explicitly Linked to This Host Template:
 [ Delete ] getDescription();?>


[ Create A New Service For This Template ]
getInheritedCommandParameters(); $numOfInheritedCommandParameters = count($inherited_list); // Get List Of Parameters for this service and check $checkCommandParameters = $hostTemplate->getNagiosHostCheckCommandParameters(); $numOfCheckCommandParameters = count($checkCommandParameters); $parameterCounter = 0; ?>
Parameters Inherited By Templates:
  $ARG$: getParameter();?>

Check Command Parameters:
 [ Delete ] $ARG$: getParameter();?>


Value for $ARG$:
'', "text" => 'None'); $tempDir = array(); if ($handle = @opendir($sys_config['logos_path'])) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $tempDir[] = $file; } } closedir($handle); asort($tempDir); foreach($tempDir as $value) { if(!is_dir($sys_config['logos_path'] ."/". $value)) $directory_list[] = array("value" => $value, "text" => $value); } } $numOfImages = count($directory_list) - 1; ?>
element_desc("notes", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(60, 255, "host_manage", "notes_url", "Notes URL", $lilac->element_desc("notes_url", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(60, 255, "host_manage", "action_url", "Action URL", $lilac->element_desc("action_url", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($directory_list, "value", "text", "host_manage", "icon_image", "Icon Image", $lilac->element_desc("icon_image", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(60, 255, "host_manage", "icon_image_alt", "Icon Image Alt Text", $lilac->element_desc("icon_image_alt", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($directory_list, "value", "text", "host_manage", "vrml_image", "VRML Image", $lilac->element_desc("vrml_image", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_select_element_with_enabler($directory_list, "value", "text", "host_manage", "statusmap_image", "Statusmap Image", $lilac->element_desc("statusmap_image", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(30, 30, "host_manage", "two_d_coords", "2D Coordinates", $lilac->element_desc("two_d_coords", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); form_text_element_with_enabler(30, 30, "host_manage", "three_d_coords", "3D Coordinates", $lilac->element_desc("three_d_coords", "nagios_services_extended_info_desc"), $templateValues, $_GET['id']); double_pane_form_window_finish(); ?>
[ Cancel ]
Included in definition:
\n"; print_display_field("Notes", $templateValues, "notes", $_GET['id']); print_display_field("Notes URL", $templateValues, "notes_url", $_GET['id']); print_display_field("Action URL", $templateValues, "action_url", $_GET['id']); print_display_field("Icon Image", $templateValues, "icon_image", $_GET['id']); print_display_field("Icon Image Alt Text", $templateValues, "icon_image_alt", $_GET['id']); print_display_field("VRML Image", $templateValues, "vrml_image", $_GET['id']); print_display_field("Statusmap Image", $templateValues, "statusmap_image", $_GET['id']); print_display_field("2D Coordinates", $templateValues, "two_d_coords", $_GET['id']); print_display_field("3D Coordinates", $templateValues, "three_d_coords", $_GET['id']); ?>
[ Edit ]
getInheritedContacts(); $numOfInheritedContacts = count($inherited_list); $contacts_list = $hostTemplate->getNagiosHostContactMembers(); $numOfContacts = count($contacts_list); ?>
Contacts Inherited By Templates:
  getName();?>: getAlias();?>

Contacts Explicitly Linked to This Host Template:
 [ Delete ] getNagiosContact()->getName();?>: getNagiosContact()->getAlias();?>
get_contact_list($temp_list); $contacts_list = array(); foreach($temp_list as $tempContact) { $contacts_list[] = array('contact_name' => $tempContact->getName(), 'contact_id' => $tempContact->getId()); } ?>

Add New Contact:
element_desc("contact_groups", "nagios_hosts_desc"); ?>

getInheritedContactGroups(); $numOfInheritedGroups = count($inherited_list); $lilac->return_host_template_contactgroups_list($_GET['id'], $contactgroups_list); $numOfContactGroups = count($contactgroups_list); ?>
Contact Groups Inherited By Templates:
  return_contactgroup_name($inherited_list[$counter]->getId());?>: return_contactgroup_alias($inherited_list[$counter]->getId());?>

Contact Groups Explicitly Linked to This Host Template:
 [ Delete ] getNagiosContactgroup()->getName();?>: getNagiosContactgroup()->getAlias();?>
get_contactgroup_list($temp_list); $contactgroups_list = array(); foreach($temp_list as $tempGroup) { $contactgroups_list[] = array('contactgroup_name' => $tempGroup->getName(), 'contactgroup_id' => $tempGroup->getId()); } ?>

Add New Contact Group:
element_desc("contact_groups", "nagios_hosts_desc"); ?>

getInheritedDependencies(); $numOfInheritedDepdendencies = count($inherited_list); $dependencies_list = $hostTemplate->getNagiosDependencys(); $numOfDependencies = count($dependencies_list); ?>
Depdendencies Inherited By Templates:
  getName();?> - Inherited from getNagiosHostTemplate()->getName();?>

Depdendencies Explicitly Linked to This Host Template:
 [ Delete ] getName();?>


[ Create A New Host Dependency For This Template ]
getInheritedEscalations(); $numOfInheritedEscalations = count($inherited_list); $escalations_list = $hostTemplate->getNagiosEscalations(); $numOfEscalations = count($escalations_list); ?>
Escalations Inherited By Templates:
  getDescription();?> - Inherited From getNagiosHostTemplate()->getName();?>

Escalations Explicitly Linked to This Host Template
 [ Delete ] getDescription();?>


[ Create A New Escalation For This Template ]
element_desc("autodiscovery_address_filter", "host_template_autodiscovery"), $templateValues, $_GET['id']); form_text_element_with_enabler(40, 255, "host_manage", "autodiscovery_hostname_filter", "Hostname Filter", $lilac->element_desc("autodiscovery_hostname_filter", "host_template_autodiscovery"), $templateValues, $_GET['id']); form_text_element_with_enabler(40, 255, "host_manage", "autodiscovery_os_family_filter", "Operating System Family Filter", $lilac->element_desc("autodiscovery_os_family_filter", "host_template_autodiscovery"), $templateValues, $_GET['id']); form_text_element_with_enabler(40, 255, "host_manage", "autodiscovery_os_generation_filter", "Operating System Generation Filter", $lilac->element_desc("autodiscovery_os_generation_filter", "host_template_autodiscovery"), $templateValues, $_GET['id']); form_text_element_with_enabler(40, 255, "host_manage", "autodiscovery_os_vendor_filter", "Operating system Vendor Filter", $lilac->element_desc("autodiscovery_os_vendor_filter", "host_template_autodiscovery"), $templateValues, $_GET['id']); double_pane_form_window_finish(); ?>
[ Cancel ]

Included In Template:


[ Edit ]

getInheritedNagiosAutodiscoveryServiceFilters(); $numOfInheritedFilters = count($inherited_list); $filter_list = $hostTemplate->getNagiosHostTemplateAutodiscoveryServices(); $numOfFilters = count($filter_list); if($numOfInheritedFilters) { ?>

Inherited Service Filters

Inherited From: getNagiosHostTemplate()->getName();?>

Port: getProtocol()); ?>/getPort();?>

getName() != '') { ?>

Name: getName(); ?>

getName() != '') { ?>

Port: getProtocol(); ?>

getName() != '') { ?>

Product: getProduct(); ?>

getName() != '') { ?>

Version: getVersion(); ?>

getName() != '') { ?>

Extra Information: getExtraInformation(); ?>

Defined Service Filters

No Defined Filters For This Host Template

Port: getProtocol()); ?>/getPort();?>

getName() != '') { ?>

Name: getName(); ?>

getName() != '') { ?>

Port: getProtocol(); ?>

getName() != '') { ?>

Product: getProduct(); ?>

getName() != '') { ?>

Version: getVersion(); ?>

getName() != '') { ?>

Extra Information: getExtraInformation(); ?>

[ Delete ]


'TCP', 'value' => 'tcp' ); $protocol_select[] = array( 'option' => 'UDP', 'value' => 'udp' ); ?>

Add A Service Filter

Protocol: Port: (Required)

Name:
element_desc("autodiscovery_service_filter_name", "host_template_autodiscovery");?>

Product: Version:
element_desc("autodiscovery_service_filter_product", "host_template_autodiscovery");?>

Extra Information:
element_desc("autodiscovery_service_filter_extra_information", "host_template_autodiscovery");?>