nagios4/xdata/xcddefault.c
2017-05-19 22:22:40 +02:00

187 lines
5.2 KiB
C

/*****************************************************************************
*
* XCDDEFAULT.C - Default external comment data routines for Nagios
*
* Copyright (c) 2000-2007 Ethan Galstad (egalstad@nagios.org)
* Last Modified: 09-04-2007
*
* License:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****************************************************************************/
/*********** COMMON HEADER FILES ***********/
#include "../include/config.h"
#include "../include/common.h"
#include "../include/locations.h"
#include "../include/comments.h"
#include "../include/macros.h"
#ifdef NSCORE
#include "../include/objects.h"
#include "../include/nagios.h"
#endif
#ifdef NSCGI
#include "../include/cgiutils.h"
#endif
/**** IMPLEMENTATION SPECIFIC HEADER FILES ****/
#include "xcddefault.h"
#ifdef NSCORE
extern unsigned long next_comment_id;
extern comment *comment_list;
#endif
#ifdef NSCORE
/******************************************************************/
/************ COMMENT INITIALIZATION/CLEANUP FUNCTIONS ************/
/******************************************************************/
/* initialize comment data */
int xcddefault_initialize_comment_data(char *main_config_file) {
comment *temp_comment = NULL;
/* find the new starting index for comment id if its missing*/
if(next_comment_id == 0L) {
for(temp_comment = comment_list; temp_comment != NULL; temp_comment = temp_comment->next) {
if(temp_comment->comment_id >= next_comment_id)
next_comment_id = temp_comment->comment_id + 1;
}
}
/* initialize next comment id if necessary */
if(next_comment_id == 0L)
next_comment_id = 1;
return OK;
}
/* removes invalid and old comments from the comment file */
int xcddefault_cleanup_comment_data(char *main_config_file) {
/* nothing to do anymore */
return OK;
}
/******************************************************************/
/***************** DEFAULT DATA OUTPUT FUNCTIONS ******************/
/******************************************************************/
/* adds a new host comment */
int xcddefault_add_new_host_comment(int entry_type, char *host_name, time_t entry_time, char *author_name, char *comment_data, int persistent, int source, int expires, time_t expire_time, unsigned long *comment_id) {
/* find the next valid comment id */
while(find_host_comment(next_comment_id) != NULL)
next_comment_id++;
/* add comment to list in memory */
add_host_comment(entry_type, host_name, entry_time, author_name, comment_data, next_comment_id, persistent, expires, expire_time, source);
/* update comment file */
xcddefault_save_comment_data();
/* return the id for the comment we are about to add (this happens in the main code) */
if(comment_id != NULL)
*comment_id = next_comment_id;
/* increment the comment id */
next_comment_id++;
return OK;
}
/* adds a new service comment */
int xcddefault_add_new_service_comment(int entry_type, char *host_name, char *svc_description, time_t entry_time, char *author_name, char *comment_data, int persistent, int source, int expires, time_t expire_time, unsigned long *comment_id) {
/* find the next valid comment id */
while(find_service_comment(next_comment_id) != NULL)
next_comment_id++;
/* add comment to list in memory */
add_service_comment(entry_type, host_name, svc_description, entry_time, author_name, comment_data, next_comment_id, persistent, expires, expire_time, source);
/* update comment file */
xcddefault_save_comment_data();
/* return the id for the comment we are about to add (this happens in the main code) */
if(comment_id != NULL)
*comment_id = next_comment_id;
/* increment the comment id */
next_comment_id++;
return OK;
}
/******************************************************************/
/**************** COMMENT DELETION FUNCTIONS **********************/
/******************************************************************/
/* deletes a host comment */
int xcddefault_delete_host_comment(unsigned long comment_id) {
/* update comment file */
xcddefault_save_comment_data();
return OK;
}
/* deletes a service comment */
int xcddefault_delete_service_comment(unsigned long comment_id) {
/* update comment file */
xcddefault_save_comment_data();
return OK;
}
/******************************************************************/
/****************** COMMENT OUTPUT FUNCTIONS **********************/
/******************************************************************/
/* writes comment data to file */
int xcddefault_save_comment_data(void) {
/* don't update the status file now (too inefficent), let aggregated status updates do it */
return OK;
}
#endif