This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbtask/taskinfo.c

140 lines
3.4 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
2002-06-05 21:07:36 +00:00
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: Give system information
*
*****************************************************************************
2004-02-21 17:22:00 +00:00
* Copyright (C) 1997-2004
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* MB BBS 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 MB BBS; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
2002-06-30 13:20:57 +00:00
#include "../config.h"
2004-02-21 17:22:00 +00:00
#include "../lib/mbselib.h"
2001-08-17 05:46:24 +00:00
#include "taskinfo.h"
/*
* Get BBS System info.
*/
char *get_sysinfo(void)
{
FILE *fp;
static char buf[SS_BUFSIZE];
char *temp;
2004-04-06 21:32:06 +00:00
time_t startdate;
2001-08-17 05:46:24 +00:00
sprintf(buf, "201:1,16;");
2004-04-06 21:32:06 +00:00
temp = calloc(PATH_MAX, sizeof(char));
2001-08-17 05:46:24 +00:00
sprintf(temp, "%s/etc/sysinfo.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r")) == NULL) {
free(temp);
return buf;
}
free(temp);
2004-04-06 21:32:06 +00:00
if (fread(&SYSINFO, sizeof(SYSINFO), 1, fp) == 1) {
startdate = SYSINFO.StartDate;
2001-08-17 05:46:24 +00:00
sprintf(buf, "100:7,%ld,%ld,%ld,%ld,%ld,%s,%s;", SYSINFO.SystemCalls,
SYSINFO.Pots, SYSINFO.ISDN, SYSINFO.Network, SYSINFO.Local,
2004-04-06 21:32:06 +00:00
ctime(&startdate), SYSINFO.LastCaller);
}
2001-08-17 05:46:24 +00:00
fclose(fp);
return buf;
}
char *get_lastcallercount(void)
{
static char buf[SS_BUFSIZE];
char *temp;
FILE *fp;
sprintf(buf, "201:1,16;");
temp = calloc(128, sizeof(char));
sprintf(temp, "%s/etc/lastcall.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r")) == NULL) {
free(temp);
return buf;
}
fread(&LCALLhdr, sizeof(LCALLhdr), 1, fp);
fseek(fp, 0, SEEK_END);
sprintf(buf, "100:1,%ld;", ((ftell(fp) - LCALLhdr.hdrsize) / LCALLhdr.recsize));
fclose(fp);
return buf;
}
char *get_lastcallerrec(int Rec)
{
static char buf[SS_BUFSIZE];
2001-11-02 22:07:11 +00:00
char *temp, action[9];
2001-08-17 05:46:24 +00:00
FILE *fp;
sprintf(buf, "201:1,16;");
temp = calloc(128, sizeof(char));
sprintf(temp, "%s/etc/lastcall.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r")) == NULL) {
free(temp);
return buf;
}
fread(&LCALLhdr, sizeof(LCALLhdr), 1, fp);
fseek(fp, ((Rec -1) * LCALLhdr.recsize) + LCALLhdr.hdrsize, SEEK_SET);
if (fread(&LCALL, LCALLhdr.recsize, 1, fp) == 1) {
LCALL.UserName[15] = '\0';
LCALL.Location[12] = '\0';
2001-11-02 22:07:11 +00:00
strcpy(action, "--------");
2001-08-17 05:46:24 +00:00
if (LCALL.Hidden)
action[0] = 'H';
if (LCALL.Download)
action[1] = 'D';
if (LCALL.Upload)
action[2] = 'U';
if (LCALL.Read)
action[3] = 'R';
if (LCALL.Wrote)
2001-11-02 22:07:11 +00:00
action[4] = 'P';
2001-08-17 05:46:24 +00:00
if (LCALL.Chat)
action[5] = 'C';
if (LCALL.Olr)
action[6] = 'O';
2001-11-02 22:07:11 +00:00
if (LCALL.Door)
action[7] = 'E';
action[8] = '\0';
2001-08-17 05:46:24 +00:00
sprintf(buf, "100:9,%s,%s,%d,%s,%s,%d,%d,%s,%s;", LCALL.UserName, LCALL.Location,
LCALL.SecLevel, LCALL.Device, LCALL.TimeOn,
LCALL.CallTime, LCALL.Calls, LCALL.Speed, action);
}
fclose(fp);
return buf;
}