2001-11-12 21:42:17 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
* Purpose ...............: Display Last Callers
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
2005-08-29 11:25:38 +00:00
|
|
|
* Copyright (C) 1997-2005
|
2001-11-12 21:42:17 +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.
|
|
|
|
*
|
|
|
|
* MBSE 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 MBSE BBS; see the file COPYING. If not, write to the Free
|
2003-08-15 20:05:34 +00:00
|
|
|
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
2001-11-12 21:42:17 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../config.h"
|
2004-02-21 17:22:00 +00:00
|
|
|
#include "../lib/mbselib.h"
|
2001-11-12 21:42:17 +00:00
|
|
|
#include "../lib/mbse.h"
|
2002-01-07 19:16:03 +00:00
|
|
|
#include "../lib/users.h"
|
2001-11-12 21:42:17 +00:00
|
|
|
#include "input.h"
|
|
|
|
#include "language.h"
|
|
|
|
#include "lastcallers.h"
|
2004-10-27 11:08:09 +00:00
|
|
|
#include "term.h"
|
2004-11-03 20:48:45 +00:00
|
|
|
#include "ttyio.h"
|
2001-11-12 21:42:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Last caller action flags
|
|
|
|
*/
|
|
|
|
extern int LC_Download;
|
|
|
|
extern int LC_Upload;
|
|
|
|
extern int LC_Read;
|
|
|
|
extern int LC_Wrote;
|
|
|
|
extern int LC_Chat;
|
|
|
|
extern int LC_Olr;
|
|
|
|
extern int LC_Door;
|
2005-10-07 20:42:35 +00:00
|
|
|
extern int rows;
|
|
|
|
extern int cols;
|
2001-11-12 21:42:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display last callers screen.
|
|
|
|
*/
|
|
|
|
void LastCallers(char *OpData)
|
|
|
|
{
|
2002-06-26 20:29:45 +00:00
|
|
|
FILE *pLC;
|
|
|
|
int LineCount = 5, count = 0, i, x;
|
|
|
|
char *sFileName, *Heading, *Underline;
|
|
|
|
struct lastcallers lcall;
|
|
|
|
struct lastcallershdr lcallhdr;
|
|
|
|
|
|
|
|
sFileName = calloc(PATH_MAX, sizeof(char));
|
|
|
|
Heading = calloc(81, sizeof(char));
|
|
|
|
Underline = calloc(81, sizeof(char));
|
|
|
|
|
|
|
|
clear();
|
|
|
|
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(sFileName, PATH_MAX, "%s/etc/lastcall.data", getenv("MBSE_ROOT"));
|
2002-06-26 20:29:45 +00:00
|
|
|
if ((pLC = fopen(sFileName,"r")) == NULL)
|
|
|
|
WriteError("$LastCallers: Can't open %s", sFileName);
|
|
|
|
else {
|
|
|
|
fread(&lcallhdr, sizeof(lcallhdr), 1, pLC);
|
|
|
|
colour(WHITE, BLACK);
|
|
|
|
/* Todays callers to */
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%s%s", (char *) Language(84), CFG.bbs_name);
|
2002-06-26 20:29:45 +00:00
|
|
|
Center(Heading);
|
|
|
|
|
|
|
|
x = strlen(Heading);
|
|
|
|
|
2005-10-07 20:42:35 +00:00
|
|
|
for (i = 0; i < x; i++)
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Underline, 81, "%s%c", Underline, exitinfo.GraphMode ? 196 : 45);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
colour(LIGHTRED, BLACK);
|
|
|
|
Center(Underline);
|
|
|
|
|
2004-11-03 20:48:45 +00:00
|
|
|
Enter(1);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
/* # User Name Device timeOn Calls Location */
|
|
|
|
pout(LIGHTGREEN, BLACK, (char *) Language(85));
|
|
|
|
Enter(1);
|
|
|
|
|
|
|
|
colour(GREEN, BLACK);
|
2005-10-07 20:42:35 +00:00
|
|
|
fLine(cols -1);
|
2001-11-12 21:42:17 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
while (fread(&lcall, lcallhdr.recsize, 1, pLC) == 1) {
|
|
|
|
if (!lcall.Hidden) {
|
|
|
|
count++;
|
|
|
|
|
|
|
|
colour(WHITE, BLACK);
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-5d", count);
|
2004-11-03 20:48:45 +00:00
|
|
|
PUTSTR(Heading);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
colour(LIGHTCYAN, BLACK);
|
|
|
|
if ((strcasecmp(OpData, "/H")) == 0) {
|
|
|
|
if ((strcmp(lcall.Handle, "") != 0 && *(lcall.Handle) != ' '))
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-20s", lcall.Handle);
|
2002-06-26 20:29:45 +00:00
|
|
|
else
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-20s", lcall.UserName);
|
2002-06-26 20:29:45 +00:00
|
|
|
} else if (strcasecmp(OpData, "/U") == 0) {
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-20s", lcall.Name);
|
2002-06-26 20:29:45 +00:00
|
|
|
} else {
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-20s", lcall.UserName);
|
2001-11-12 21:42:17 +00:00
|
|
|
}
|
2004-11-03 20:48:45 +00:00
|
|
|
PUTSTR(Heading);
|
2001-11-12 21:42:17 +00:00
|
|
|
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-8s", lcall.Device);
|
2004-11-03 20:48:45 +00:00
|
|
|
pout(LIGHTBLUE, BLACK, Heading);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-8s", lcall.TimeOn);
|
2004-11-03 20:48:45 +00:00
|
|
|
pout(LIGHTMAGENTA, BLACK, Heading);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-7d", lcall.Calls);
|
2004-11-03 20:48:45 +00:00
|
|
|
pout(YELLOW, BLACK, Heading);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
2005-08-29 11:25:38 +00:00
|
|
|
snprintf(Heading, 81, "%-32s", lcall.Location);
|
2004-11-03 20:48:45 +00:00
|
|
|
pout(LIGHTRED, BLACK, Heading);
|
|
|
|
Enter(1);
|
2001-11-12 21:42:17 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
LineCount++;
|
2005-10-07 20:42:35 +00:00
|
|
|
if (LineCount == rows) {
|
2002-06-26 20:29:45 +00:00
|
|
|
Pause();
|
|
|
|
LineCount = 0;
|
|
|
|
}
|
|
|
|
} /* End of check if user is hidden */
|
2001-11-12 21:42:17 +00:00
|
|
|
}
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
colour(GREEN, BLACK);
|
2005-10-07 20:42:35 +00:00
|
|
|
fLine(cols -1);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
fclose(pLC);
|
2004-11-03 20:48:45 +00:00
|
|
|
Enter(1);
|
2002-06-26 20:29:45 +00:00
|
|
|
Pause();
|
|
|
|
}
|
|
|
|
free(sFileName);
|
|
|
|
free(Heading);
|
|
|
|
free(Underline);
|
2001-11-12 21:42:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|