2001-11-10 17:14:16 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
* Purpose ...............: Who's online functions
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
2002-01-07 19:16:03 +00:00
|
|
|
* Copyright (C) 1997-2002
|
2001-11-10 17:14:16 +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
|
|
|
|
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../config.h"
|
2001-11-10 17:14:16 +00:00
|
|
|
#include "../lib/libs.h"
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../lib/memwatch.h"
|
2001-11-10 17:14:16 +00:00
|
|
|
#include "../lib/mbse.h"
|
|
|
|
#include "../lib/structs.h"
|
2002-01-07 19:16:03 +00:00
|
|
|
#include "../lib/users.h"
|
2001-11-10 17:14:16 +00:00
|
|
|
#include "../lib/records.h"
|
|
|
|
#include "../lib/common.h"
|
|
|
|
#include "../lib/clcomm.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "language.h"
|
|
|
|
#include "exitinfo.h"
|
|
|
|
#include "whoson.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern int LC_Download, LC_Upload, LC_Read, LC_Chat, LC_Olr, LC_Door;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function to display what users are currently On-Line and what they
|
|
|
|
* are busy doing
|
|
|
|
*/
|
|
|
|
void WhosOn(char *OpData)
|
|
|
|
{
|
2002-06-26 20:29:45 +00:00
|
|
|
char buf[128], *Heading, *Underline, *cnt, *isdoing, *location, *device;
|
|
|
|
char *fullname, *temp;
|
|
|
|
int i, x, Start = TRUE;
|
|
|
|
FILE *fp;
|
|
|
|
struct userhdr ushdr;
|
|
|
|
struct userrec us;
|
|
|
|
|
|
|
|
Underline = calloc(81, sizeof(char));
|
|
|
|
Heading = calloc(81, sizeof(char));
|
|
|
|
|
|
|
|
WhosDoingWhat(WHOSON);
|
|
|
|
|
|
|
|
clear();
|
|
|
|
Enter(1);
|
|
|
|
colour(WHITE, BLACK);
|
|
|
|
/* Callers On-Line to */
|
|
|
|
sprintf(Heading, "%s%s", (char *) Language(414), CFG.bbs_name);
|
|
|
|
Center(Heading);
|
|
|
|
x = strlen(Heading);
|
|
|
|
|
|
|
|
for(i = 0; i < x; i++)
|
|
|
|
sprintf(Underline, "%s%c", Underline, exitinfo.GraphMode ? 196 : 45);
|
|
|
|
colour(LIGHTRED, BLACK);
|
|
|
|
Center(Underline);
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
/* Name Device Status Location */
|
|
|
|
pout(LIGHTGREEN, BLACK, (char *) Language(415));
|
|
|
|
Enter(1);
|
|
|
|
colour(GREEN, BLACK);
|
|
|
|
fLine(79);
|
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
if (Start)
|
2001-11-12 21:42:17 +00:00
|
|
|
sprintf(buf, "GMON:1,1;");
|
2002-06-26 20:29:45 +00:00
|
|
|
else
|
2001-11-12 21:42:17 +00:00
|
|
|
sprintf(buf, "GMON:1,0;");
|
2002-06-26 20:29:45 +00:00
|
|
|
Start = FALSE;
|
|
|
|
if (socket_send(buf) == 0) {
|
|
|
|
strcpy(buf, socket_receive());
|
|
|
|
if (strncmp(buf, "100:0;", 6) == 0)
|
|
|
|
break; /* No more data */
|
|
|
|
if (strstr(buf, "mbsebbs")) {
|
|
|
|
/*
|
|
|
|
* We are only interested in copies of the mbsebbs program
|
|
|
|
*/
|
|
|
|
cnt = strtok(buf, ",");
|
|
|
|
strtok(NULL, ",");
|
|
|
|
device = xstrcpy(strtok(NULL, ","));
|
|
|
|
fullname = xstrcpy(strtok(NULL, ","));
|
|
|
|
|
2003-02-07 22:51:07 +00:00
|
|
|
if (((strcasecmp(OpData, "/H")) == 0) || (strlen(OpData) == 0)) {
|
2001-11-12 21:42:17 +00:00
|
|
|
/*
|
2003-02-07 22:51:07 +00:00
|
|
|
* The mbtask daemon has only the users Unix names, we
|
|
|
|
* want the handle or real name instead.
|
2001-11-12 21:42:17 +00:00
|
|
|
*/
|
2002-06-26 20:29:45 +00:00
|
|
|
temp = calloc(PATH_MAX, sizeof(char));
|
|
|
|
sprintf(temp, "%s/etc/users.data", getenv("MBSE_ROOT"));
|
|
|
|
if ((fp = fopen(temp,"rb")) != NULL) {
|
|
|
|
fread(&ushdr, sizeof(ushdr), 1, fp);
|
|
|
|
|
|
|
|
while (fread(&us, ushdr.recsize, 1, fp) == 1) {
|
2003-02-07 22:51:07 +00:00
|
|
|
if (strcmp(fullname, us.Name) == 0) {
|
2002-06-26 20:29:45 +00:00
|
|
|
if ((strcasecmp(OpData, "/H") == 0) && strlen(us.sHandle)) {
|
|
|
|
free(fullname);
|
|
|
|
fullname = xstrcpy(us.sHandle);
|
2003-02-07 22:51:07 +00:00
|
|
|
} else if (strlen(OpData) == 0) {
|
2002-06-26 20:29:45 +00:00
|
|
|
free(fullname);
|
2003-02-07 22:51:07 +00:00
|
|
|
fullname = xstrcpy(us.sUserName);
|
2002-06-26 20:29:45 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(fp);
|
2001-11-12 21:42:17 +00:00
|
|
|
}
|
2002-06-26 20:29:45 +00:00
|
|
|
free(temp);
|
2001-11-12 21:42:17 +00:00
|
|
|
}
|
2002-06-26 20:29:45 +00:00
|
|
|
colour(LIGHTCYAN, BLACK);
|
|
|
|
printf("%-30s", fullname);
|
|
|
|
free(fullname);
|
|
|
|
|
|
|
|
colour(LIGHTBLUE, BLACK);
|
|
|
|
printf("%-9s", device);
|
|
|
|
free(device);
|
|
|
|
strtok(NULL, ",");
|
|
|
|
location = xstrcpy(strtok(NULL, ","));
|
|
|
|
isdoing = xstrcpy(strtok(NULL, ","));
|
|
|
|
|
|
|
|
colour(WHITE, BLACK);
|
|
|
|
if (strstr(isdoing, "Browsing"))
|
|
|
|
/* Browseng */
|
|
|
|
printf("%-15s", (char *) Language(418));
|
|
|
|
else if (strstr(isdoing, "Downloading"))
|
|
|
|
/* Downloading */
|
|
|
|
printf("%-15s", (char *) Language(419));
|
|
|
|
else if (strstr(isdoing, "Uploading"))
|
|
|
|
/* Uploading */
|
|
|
|
printf("%-15s", (char *) Language(420));
|
|
|
|
else if (strstr(isdoing, "Read"))
|
|
|
|
/* Msg Section */
|
|
|
|
printf("%-15s", (char *) Language(421));
|
|
|
|
else if (strstr(isdoing, "External"))
|
|
|
|
/* External Door */
|
|
|
|
printf("%-15s", (char *) Language(422));
|
|
|
|
else if (strstr(isdoing, "Chat"))
|
|
|
|
/* Chatting */
|
|
|
|
printf("%-15s", (char *) Language(423));
|
|
|
|
else if (strstr(isdoing, "Files"))
|
|
|
|
/* Listing Files */
|
|
|
|
printf("%-15s", (char *) Language(424));
|
|
|
|
else if (strstr(isdoing, "Time"))
|
|
|
|
/* Banking Door */
|
|
|
|
printf("%-15s", (char *) Language(426));
|
|
|
|
else if (strstr(isdoing, "Safe"))
|
|
|
|
/* Safe Door */
|
|
|
|
printf("%-15s", (char *) Language(427));
|
|
|
|
else if (strstr(isdoing, "Whoson"))
|
|
|
|
/* WhosOn List */
|
|
|
|
printf("%-15s", (char *) Language(428));
|
|
|
|
else if (strstr(isdoing, "Offline"))
|
2002-11-11 14:52:13 +00:00
|
|
|
/* Offline Reader */
|
2002-06-26 20:29:45 +00:00
|
|
|
printf("%-15s", (char *) Language(429));
|
|
|
|
else
|
2002-11-11 14:52:13 +00:00
|
|
|
/* Browsing */ /* This is default when nothing matches */
|
|
|
|
printf("%-15s", (char *) Language(418));
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
colour(LIGHTRED, BLACK);
|
|
|
|
printf("%-25s\n", location);
|
|
|
|
free(location);
|
|
|
|
free(isdoing);
|
2001-11-12 21:42:17 +00:00
|
|
|
}
|
|
|
|
}
|
2002-06-26 20:29:45 +00:00
|
|
|
}
|
2001-11-12 21:42:17 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
colour(GREEN, BLACK);
|
|
|
|
fLine(79);
|
2001-11-10 17:14:16 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
free(Underline);
|
|
|
|
free(Heading);
|
2001-11-10 17:14:16 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
printf("\n");
|
2001-11-10 17:14:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function will update users file and and update exitinfo.iStatus
|
|
|
|
*/
|
|
|
|
void WhosDoingWhat(int iStatus)
|
|
|
|
{
|
2002-06-26 20:29:45 +00:00
|
|
|
char *temp;
|
2001-11-10 17:14:16 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
temp = calloc(PATH_MAX, sizeof(char));
|
2001-11-10 17:14:16 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
ReadExitinfo();
|
|
|
|
exitinfo.iStatus = iStatus;
|
|
|
|
WriteExitinfo();
|
2001-11-10 17:14:16 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
switch(iStatus) {
|
|
|
|
case BROWSING: strcpy(temp, "Browsing Menus");
|
2001-11-10 17:14:16 +00:00
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case DOWNLOAD: strcpy(temp, "Downloading");
|
2001-11-10 17:14:16 +00:00
|
|
|
LC_Download = TRUE;
|
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case UPLOAD: strcpy(temp, "Uploading");
|
2001-11-10 17:14:16 +00:00
|
|
|
LC_Upload = TRUE;
|
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case READ_POST: strcpy(temp, "Read/post Messages");
|
2001-11-10 17:14:16 +00:00
|
|
|
LC_Read = TRUE;
|
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case DOOR: strcpy(temp, "External Door");
|
2001-11-10 17:14:16 +00:00
|
|
|
LC_Door = TRUE;
|
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case SYSOPCHAT: strcpy(temp, "Sysop Chat");
|
2001-11-10 17:14:16 +00:00
|
|
|
LC_Chat = TRUE;
|
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case FILELIST: strcpy(temp, "List Files");
|
2001-11-10 17:14:16 +00:00
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case WHOSON: strcpy(temp, "View Whoson List");
|
2001-11-10 17:14:16 +00:00
|
|
|
break;
|
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
case OLR: strcpy(temp, "Offline Reader");
|
2001-11-10 17:14:16 +00:00
|
|
|
LC_Olr = TRUE;
|
|
|
|
break;
|
2002-06-26 20:29:45 +00:00
|
|
|
}
|
|
|
|
IsDoing(temp);
|
|
|
|
free(temp);
|
2001-11-10 17:14:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function will allow a user to send a on-line message to another user
|
|
|
|
* It will prompt the user for the username. The message is sent thru
|
2002-06-26 20:29:45 +00:00
|
|
|
* mbtask, from the response message we can see if we succeeded.
|
|
|
|
* Optional data /H and /U for handles and unix names is supported.
|
2001-11-10 17:14:16 +00:00
|
|
|
*/
|
|
|
|
void SendOnlineMsg(char *OpData)
|
|
|
|
{
|
2002-06-26 20:29:45 +00:00
|
|
|
static char buf[128];
|
|
|
|
char *User, *String, *temp;
|
|
|
|
FILE *fp;
|
|
|
|
struct userhdr ushdr;
|
|
|
|
struct userrec us;
|
|
|
|
|
|
|
|
User = calloc(36, sizeof(char));
|
|
|
|
String = calloc(77, sizeof(char));
|
|
|
|
WhosOn(OpData);
|
|
|
|
|
|
|
|
/* Please enter username to send message to: */
|
|
|
|
pout(CYAN, BLACK, (char *) Language(430));
|
|
|
|
colour(CFG.InputColourF, CFG.InputColourB);
|
|
|
|
fflush(stdout);
|
|
|
|
GetstrC(User, 35);
|
|
|
|
if (!strcmp(User, "")) {
|
|
|
|
free(User);
|
|
|
|
free(String);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-02-07 22:51:07 +00:00
|
|
|
* If we were displaying handles or real names, then lookup the
|
|
|
|
* users unix name to send to mbtask.
|
2002-06-26 20:29:45 +00:00
|
|
|
*/
|
2003-02-07 22:51:07 +00:00
|
|
|
if ((strcasecmp(OpData, "/H") == 0) || (strlen(OpData) == 0)) {
|
2002-06-26 20:29:45 +00:00
|
|
|
temp = calloc(PATH_MAX, sizeof(char));
|
|
|
|
sprintf(temp, "%s/etc/users.data", getenv("MBSE_ROOT"));
|
|
|
|
if ((fp = fopen(temp, "rb")) != NULL) {
|
|
|
|
fread(&ushdr, sizeof(ushdr), 1, fp);
|
|
|
|
Syslog('-', "Using translate");
|
|
|
|
|
|
|
|
while (fread(&us, ushdr.recsize, 1, fp) == 1) {
|
|
|
|
if ((strcasecmp(OpData, "/H") == 0) && strlen(us.sHandle) && (strcasecmp(User, us.sHandle) == 0)) {
|
2003-02-07 22:51:07 +00:00
|
|
|
sprintf(User, "%s", us.Name);
|
2002-06-26 20:29:45 +00:00
|
|
|
break;
|
2003-02-07 22:51:07 +00:00
|
|
|
} else if ((strlen(OpData) == 0) && (strcasecmp(User, us.sUserName) == 0)) {
|
|
|
|
sprintf(User, "%s", us.Name);
|
2002-06-26 20:29:45 +00:00
|
|
|
break;
|
2001-11-10 17:14:16 +00:00
|
|
|
}
|
2002-06-26 20:29:45 +00:00
|
|
|
}
|
|
|
|
fclose(fp);
|
2001-11-10 17:14:16 +00:00
|
|
|
}
|
2002-06-26 20:29:45 +00:00
|
|
|
free(temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Please enter message to send (Max 76 Characters) */
|
|
|
|
pout(LIGHTGREEN, BLACK, (char *)Language(433));
|
|
|
|
pout(LIGHTGREEN, BLACK, (char *)"\n> ");
|
|
|
|
colour(CFG.InputColourF, CFG.InputColourB);
|
|
|
|
fflush(stdout);
|
|
|
|
GetstrC(String, 76);
|
|
|
|
|
|
|
|
if ((strcmp(String, "")) != 0) {
|
|
|
|
buf[0] = '\0';
|
|
|
|
if ((strcasecmp(OpData, "/H") == 0) && strlen(exitinfo.sHandle))
|
2003-03-24 19:44:38 +00:00
|
|
|
sprintf(buf, "CSPM:3,%s,%s,%s;", exitinfo.sHandle, User, String);
|
2002-06-26 20:29:45 +00:00
|
|
|
else if (strcasecmp(OpData, "/U") == 0)
|
2003-03-24 19:44:38 +00:00
|
|
|
sprintf(buf, "CSPM:3,%s,%s,%s;", exitinfo.Name, User, String);
|
2002-06-26 20:29:45 +00:00
|
|
|
else
|
2003-03-24 19:44:38 +00:00
|
|
|
sprintf(buf, "CSPM:3,%s,%s,%s;", exitinfo.sUserName, User, String);
|
2002-06-26 20:29:45 +00:00
|
|
|
|
|
|
|
if (socket_send(buf) == 0) {
|
|
|
|
strcpy(buf, socket_receive());
|
|
|
|
|
|
|
|
if (strncmp(buf, "100:1,3;", 8) == 0) {
|
|
|
|
/* Sorry, there is no user on */
|
|
|
|
printf("\n%s %s\n\n", (char *) Language(431), User);
|
|
|
|
}
|
|
|
|
if (strncmp(buf, "100:1,2;", 8) == 0) {
|
|
|
|
printf("\nNo more room in users message buffer\n\n");
|
|
|
|
}
|
|
|
|
if (strncmp(buf, "100:1,1;", 8) == 0) {
|
|
|
|
colour(LIGHTRED, BLACK);
|
|
|
|
/* doesn't wish to be disturbed */
|
|
|
|
printf("\n%s %s\n", User, (char *) Language(432));
|
|
|
|
}
|
|
|
|
if (strncmp(buf, "100:0;", 6) == 0) {
|
|
|
|
printf("Message Sent!\n");
|
|
|
|
Syslog('+', "Online msg to %s: \"%s\"", User, String);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-11-10 17:14:16 +00:00
|
|
|
|
2002-06-26 20:29:45 +00:00
|
|
|
free(User);
|
|
|
|
free(String);
|
|
|
|
Pause();
|
2001-11-10 17:14:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|