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/mbfido/notify.c

172 lines
4.5 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
2002-01-07 19:16:03 +00:00
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: Write notify messages.
*
*****************************************************************************
2005-08-19 20:48:54 +00:00
* Copyright (C) 1997-2005
2001-08-17 05:46:24 +00:00
*
2002-01-07 19:16:03 +00:00
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
2001-08-17 05:46:24 +00:00
* 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-08-17 05:46:24 +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"
2002-01-07 19:16:03 +00:00
#include "../lib/users.h"
2001-08-17 05:46:24 +00:00
#include "../lib/msg.h"
#include "../lib/msgtext.h"
2004-02-21 17:22:00 +00:00
#include "../lib/mbsedb.h"
2001-08-17 05:46:24 +00:00
#include "filemgr.h"
#include "areamgr.h"
#include "sendmail.h"
#include "mgrutil.h"
2001-08-17 05:46:24 +00:00
#include "notify.h"
extern int do_quiet; /* Quiet flag */
int notify = 0; /* Nr of notify messages */
/*
* Write AreaMgr and FileMgr notify messages.
*/
int Notify(char *Options)
{
short Zones = -1, Nets = -1, Nodes = -1, Points = -1;
short Lzone, Lnet;
FILE *np;
char *temp, Opt[44];
int i;
2002-06-17 20:36:06 +00:00
faddr *Tmp;
2001-08-17 05:46:24 +00:00
Syslog('+', "Notify \"%s\"", Options);
if (!do_quiet) {
2005-08-19 20:48:54 +00:00
mbse_colour(LIGHTBLUE, BLACK);
2001-08-17 05:46:24 +00:00
printf("Writing notify messages\n");
2005-08-19 20:48:54 +00:00
mbse_colour(CYAN, BLACK);
2001-08-17 05:46:24 +00:00
}
if (strlen(Options)) {
2005-08-28 14:10:06 +00:00
snprintf(Opt, 44, "%s~", Options);
2001-08-17 05:46:24 +00:00
if (strchr(Opt, '.') != NULL) {
temp = strdup(strtok(Opt, ":"));
if (atoi(temp))
Zones = atoi(temp);
temp = strdup(strtok(NULL, "/"));
if (strncmp(temp, "*", 1))
Nets = atoi(temp);
temp = strdup(strtok(NULL, "."));
if (strncmp(temp, "*", 1))
Nodes = atoi(temp);
temp = strdup(strtok(NULL, "~"));
if (strncmp(temp, "*", 1))
Points = atoi(temp);
else
Points = -1;
} else if (strchr(Opt, '/') != NULL) {
temp = strdup(strtok(Opt, ":"));
if (atoi(temp))
Zones = atoi(temp);
temp = strdup(strtok(NULL, "/"));
if (strncmp(temp, "*", 1))
Nets = atoi(temp);
temp = strdup(strtok(NULL, "~"));
if (strncmp(temp, "*", 1)) {
Nodes = atoi(temp);
Points = 0;
}
} else if (strchr(Opt, ':') != NULL) {
temp = strdup(strtok(Opt, ":"));
if (atoi(temp))
Zones = atoi(temp);
temp = strdup(strtok(NULL, "~"));
if (strncmp(temp, "*", 1))
Nets = atoi(temp);
} else {
temp = strdup(strtok(Opt, "~"));
if (atoi(temp))
Zones = atoi(temp);
}
}
Syslog('m', "Parsing nodes %d:%d/%d.%d", Zones, Nets, Nodes, Points);
2005-08-28 12:35:18 +00:00
temp = calloc(PATH_MAX, sizeof(char));
2005-08-28 14:10:06 +00:00
snprintf(temp, PATH_MAX, "%s/etc/nodes.data", getenv("MBSE_ROOT"));
2001-08-17 05:46:24 +00:00
if ((np = fopen(temp, "r")) == NULL) {
WriteError("$Can't open %s", temp);
return FALSE;
}
fread(&nodeshdr, sizeof(nodeshdr), 1, np);
while (fread(&nodes, nodeshdr.recsize, 1, np) == 1) {
Lzone = Lnet = 0;
for (i = 0; i < 20; i++) {
if ((((Zones == -1) && nodes.Notify) || (Zones == nodes.Aka[i].zone)) &&
(((Nets == -1) && nodes.Notify) || (Nets == nodes.Aka[i].net)) &&
(((Nodes == -1) && nodes.Notify) || (Nodes == nodes.Aka[i].node)) &&
(((Points == -1) && nodes.Notify) || (Points == nodes.Aka[i].point)) &&
(nodes.Aka[i].zone) &&
((Lzone != nodes.Aka[i].zone) ||
(Lnet != nodes.Aka[i].net))) {
Lzone = nodes.Aka[i].zone;
Lnet = nodes.Aka[i].net;
Syslog('m', "Notify to %s", aka2str(nodes.Aka[i]));
if (!do_quiet) {
printf("\rNotify %-24s", aka2str(nodes.Aka[i]));
fflush(stdout);
}
2002-06-17 20:36:06 +00:00
Tmp = fido2faddr(nodes.Aka[i]);
2001-08-17 05:46:24 +00:00
if (i == 0) {
2002-06-17 20:36:06 +00:00
F_Status(Tmp, NULL);
A_Status(Tmp, NULL);
2001-08-17 05:46:24 +00:00
}
F_List(Tmp, NULL, LIST_NOTIFY);
A_List(Tmp, NULL, LIST_NOTIFY);
2002-06-17 20:36:06 +00:00
A_Flow(Tmp, NULL, TRUE);
tidy_faddr(Tmp);
2001-08-17 05:46:24 +00:00
notify++;
}
}
fseek(np, nodeshdr.filegrp + nodeshdr.mailgrp, SEEK_CUR);
}
fclose(np);
free(temp);
if (!do_quiet) {
printf("\r \r");
fflush(stdout);
}
if (notify)
return TRUE;
else
return FALSE;
}