1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
/*----------------------------------------------------------------------------*/
/* Xymon monitor library. */
/* */
/* This is a library module, part of libxymon. */
/* It contains routines for generating the Xymon CGI URL's */
/* */
/* Copyright (C) 2002-2011 Henrik Storner <henrik@storner.dk> */
/* */
/* This program is released under the GNU General Public License (GPL), */
/* version 2. See the file "COPYING" for details. */
/* */
/*----------------------------------------------------------------------------*/
static char rcsid[] = "$Id: cgiurls.c 8069 2019-07-23 15:29:06Z jccleaver $";
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <limits.h>
#include <errno.h>
#include "libxymon.h"
static char *cgibinurl = NULL;
char *hostsvcurl(char *hostname, char *service, int htmlformat)
{
static char *url;
unsigned int url_buflen;
if (url) xfree(url);
if (!cgibinurl) cgibinurl = xgetenv("CGIBINURL");
url_buflen = 1024 + strlen(cgibinurl) + strlen(hostname) + strlen(service);
url = (char *)malloc(url_buflen);
snprintf(url, url_buflen,
(htmlformat ? "%s/svcstatus.sh?HOST=%s&SERVICE=%s" : "%s/svcstatus.sh?HOST=%s&SERVICE=%s"),
cgibinurl, hostname, service);
return url;
}
char *hostsvcclienturl(char *hostname, char *section)
{
static char *url;
unsigned int url_buflen;
int n;
if (url) xfree(url);
if (!cgibinurl) cgibinurl = xgetenv("CGIBINURL");
url_buflen = 1024 + strlen(cgibinurl) + strlen(hostname) + (section ? strlen(section) : 0);
url = (char *)malloc(url_buflen);
n = snprintf(url, url_buflen, "%s/svcstatus.sh?CLIENT=%s", cgibinurl, hostname);
if (section) snprintf(url+n, (url_buflen - n), "&SECTION=%s", section);
return url;
}
char *histcgiurl(char *hostname, char *service)
{
static char *url = NULL;
unsigned int url_buflen;
if (url) xfree(url);
if (!cgibinurl) cgibinurl = xgetenv("CGIBINURL");
url_buflen = 1024 + strlen(cgibinurl) + strlen(hostname) + strlen(service);
url = (char *)malloc(url_buflen);
snprintf(url, url_buflen, "%s/history.sh?HISTFILE=%s.%s", cgibinurl, commafy(hostname), service);
return url;
}
char *histlogurl(char *hostname, char *service, time_t histtime, char *histtime_txt)
{
static char *url = NULL;
unsigned int url_buflen;
if (url) xfree(url);
if (!cgibinurl) cgibinurl = xgetenv("CGIBINURL");
/* cgi-bin/historylog.sh?HOST=foo.sample.com&SERVICE=msgs&TIMEBUF=Fri_Nov_7_16:01:08_2002 */
url_buflen = 1024 + strlen(cgibinurl) + strlen(hostname) + strlen(service);
url = (char *)malloc(url_buflen);
if (!histtime_txt) {
snprintf(url, url_buflen, "%s/historylog.sh?HOST=%s&SERVICE=%s&TIMEBUF=%s",
xgetenv("CGIBINURL"), hostname, service, histlogtime(histtime));
}
else {
snprintf(url, url_buflen, "%s/historylog.sh?HOST=%s&SERVICE=%s&TIMEBUF=%s",
xgetenv("CGIBINURL"), hostname, service, histtime_txt);
}
return url;
}
char *replogurl(char *hostname, char *service, int color,
char *style, int recentgifs,
reportinfo_t *repinfo,
char *reportstart, time_t reportend, float reportwarnlevel)
{
static char *url;
unsigned int url_buflen, n;
if (url) xfree(url);
if (!cgibinurl) cgibinurl = xgetenv("CGIBINURL");
url_buflen = 4096 + strlen(cgibinurl) + strlen(hostname) + strlen(service);
url = (char *)malloc(url_buflen);
n = snprintf(url, url_buflen, "%s/reportlog.sh?HOST=%s&SERVICE=%s&COLOR=%s&PCT=%.2f&ST=%u&END=%u&RED=%.2f&YEL=%.2f&GRE=%.2f&PUR=%.2f&CLE=%.2f&BLU=%.2f&STYLE=%s&FSTATE=%s&REDCNT=%d&YELCNT=%d&GRECNT=%d&PURCNT=%d&CLECNT=%d&BLUCNT=%d&WARNPCT=%.2f&RECENTGIFS=%d",
cgibinurl,
hostname, service,
colorname(color), repinfo->fullavailability,
(unsigned int)repinfo->reportstart, (unsigned int)reportend,
repinfo->fullpct[COL_RED], repinfo->fullpct[COL_YELLOW],
repinfo->fullpct[COL_GREEN], repinfo->fullpct[COL_PURPLE],
repinfo->fullpct[COL_CLEAR], repinfo->fullpct[COL_BLUE],
style, repinfo->fstate,
repinfo->count[COL_RED], repinfo->count[COL_YELLOW],
repinfo->count[COL_GREEN], repinfo->count[COL_PURPLE],
repinfo->count[COL_CLEAR], repinfo->count[COL_BLUE],
reportwarnlevel,
use_recentgifs);
if (reportstart) snprintf(url+n, (url_buflen - n), "&REPORTTIME=%s", reportstart);
return url;
}
|