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 ...............: Newfiles Setup
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
2004-02-01 17:04: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
|
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"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "screen.h"
|
|
|
|
#include "mutil.h"
|
|
|
|
#include "ledit.h"
|
|
|
|
#include "stlist.h"
|
|
|
|
#include "m_global.h"
|
|
|
|
#include "grlist.h"
|
|
|
|
#include "m_new.h"
|
|
|
|
#include "m_lang.h"
|
|
|
|
#include "m_marea.h"
|
|
|
|
#include "m_ngroup.h"
|
|
|
|
|
|
|
|
|
|
|
|
int NewUpdated = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Count nr of newfiles records in the database.
|
|
|
|
* Creates the database if it doesn't exist.
|
|
|
|
*/
|
|
|
|
int CountNewfiles(void)
|
|
|
|
{
|
|
|
|
FILE *fil;
|
2001-12-25 21:40:16 +00:00
|
|
|
char ffile[PATH_MAX], group[13];
|
|
|
|
int count, i;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
|
|
|
sprintf(ffile, "%s/etc/newfiles.data", getenv("MBSE_ROOT"));
|
|
|
|
if ((fil = fopen(ffile, "r")) == NULL) {
|
|
|
|
if ((fil = fopen(ffile, "a+")) != NULL) {
|
2001-10-19 21:10:43 +00:00
|
|
|
Syslog('+', "Created new %s", ffile);
|
2001-08-17 05:46:24 +00:00
|
|
|
newfileshdr.hdrsize = sizeof(newfileshdr);
|
|
|
|
newfileshdr.recsize = sizeof(newfiles);
|
|
|
|
newfileshdr.grpsize = CFG.new_groups * 13;
|
|
|
|
fwrite(&newfileshdr, sizeof(newfileshdr), 1, fil);
|
2001-12-25 21:40:16 +00:00
|
|
|
memset(&newfiles, 0, sizeof(newfiles));
|
|
|
|
|
|
|
|
sprintf(newfiles.Comment, "General newfiles announce");
|
|
|
|
sprintf(newfiles.Area, "%s/var/mail/local/users", getenv("MBSE_ROOT"));
|
|
|
|
sprintf(newfiles.Origin, "%s", CFG.origin);
|
|
|
|
sprintf(newfiles.From, "Sysop");
|
|
|
|
sprintf(newfiles.Too, "All");
|
|
|
|
sprintf(newfiles.Subject, "New files found");
|
|
|
|
newfiles.Language = 'E';
|
|
|
|
newfiles.Active = TRUE;
|
|
|
|
newfiles.HiAscii = TRUE;
|
|
|
|
fwrite(&newfiles, sizeof(newfiles), 1, fil);
|
|
|
|
sprintf(group, "LOCAL");
|
|
|
|
fwrite(&group, 13, 1, fil);
|
|
|
|
memset(&group, 0, sizeof(group));
|
|
|
|
for (i = 1; i < CFG.new_groups; i++)
|
|
|
|
fwrite(&group, 13, 1, fil);
|
2001-08-17 05:46:24 +00:00
|
|
|
fclose(fil);
|
2001-11-14 21:37:58 +00:00
|
|
|
chmod(ffile, 0640);
|
2001-12-25 21:40:16 +00:00
|
|
|
return 1;
|
2001-08-17 05:46:24 +00:00
|
|
|
} else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fread(&newfileshdr, sizeof(newfileshdr), 1, fil);
|
|
|
|
fseek(fil, 0, SEEK_END);
|
|
|
|
count = (ftell(fil) - newfileshdr.hdrsize) / (newfileshdr.recsize + newfileshdr.grpsize);
|
|
|
|
fclose(fil);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open database for editing. The datafile is copied, if the format
|
|
|
|
* is changed it will be converted on the fly. All editing must be
|
|
|
|
* done on the copied file.
|
|
|
|
*/
|
|
|
|
int OpenNewfiles(void)
|
|
|
|
{
|
|
|
|
FILE *fin, *fout;
|
2001-10-19 21:10:43 +00:00
|
|
|
char fnin[PATH_MAX], fnout[PATH_MAX];
|
2001-08-17 05:46:24 +00:00
|
|
|
long oldsize;
|
|
|
|
int i, old_groups;
|
|
|
|
long oldgroup;
|
|
|
|
char group[13];
|
|
|
|
|
|
|
|
sprintf(fnin, "%s/etc/newfiles.data", getenv("MBSE_ROOT"));
|
|
|
|
sprintf(fnout, "%s/etc/newfiles.temp", getenv("MBSE_ROOT"));
|
|
|
|
if ((fin = fopen(fnin, "r")) != NULL) {
|
|
|
|
if ((fout = fopen(fnout, "w")) != NULL) {
|
|
|
|
fread(&newfileshdr, sizeof(newfileshdr), 1, fin);
|
|
|
|
/*
|
|
|
|
* In case we are automatic upgrading the data format
|
|
|
|
* we save the old format. If it is changed, the
|
|
|
|
* database must always be updated.
|
|
|
|
*/
|
|
|
|
oldsize = newfileshdr.recsize;
|
|
|
|
oldgroup = newfileshdr.grpsize;
|
|
|
|
old_groups = oldgroup / 13;
|
|
|
|
if ((oldsize != sizeof(newfiles)) || (CFG.new_groups != old_groups))
|
|
|
|
NewUpdated = 1;
|
|
|
|
else
|
|
|
|
NewUpdated = 0;
|
2001-10-19 21:10:43 +00:00
|
|
|
if (oldsize != sizeof(newfiles))
|
|
|
|
Syslog('+', "Updated %s, format changed", fnin);
|
|
|
|
else if (CFG.new_groups != old_groups)
|
|
|
|
Syslog('+', "Updated %s, nr of groups now %d", fnin, CFG.new_groups);
|
|
|
|
|
2001-08-17 05:46:24 +00:00
|
|
|
newfileshdr.hdrsize = sizeof(newfileshdr);
|
|
|
|
newfileshdr.recsize = sizeof(newfiles);
|
|
|
|
newfileshdr.grpsize = CFG.new_groups * 13;
|
|
|
|
fwrite(&newfileshdr, sizeof(newfileshdr), 1, fout);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The datarecord is filled with zero's before each
|
|
|
|
* read, so if the format changed, the new fields
|
|
|
|
* will be empty.
|
|
|
|
*/
|
|
|
|
memset(&newfiles, 0, sizeof(newfiles));
|
|
|
|
while (fread(&newfiles, oldsize, 1, fin) == 1) {
|
2002-03-30 12:00:00 +00:00
|
|
|
if (!strlen(newfiles.Template)) {
|
|
|
|
sprintf(newfiles.Template, "newfiles");
|
|
|
|
NewUpdated = 1;
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
fwrite(&newfiles, sizeof(newfiles), 1, fout);
|
|
|
|
memset(&newfiles, 0, sizeof(newfiles));
|
|
|
|
/*
|
|
|
|
* Copy the existing groups
|
|
|
|
*/
|
|
|
|
for (i = 1; i <= old_groups; i++) {
|
|
|
|
fread(&group, 13, 1, fin);
|
|
|
|
if (i <= CFG.new_groups)
|
|
|
|
fwrite(&group, 13, 1, fout);
|
|
|
|
}
|
|
|
|
if (old_groups < CFG.new_groups) {
|
|
|
|
/*
|
|
|
|
* The size increased, fill with
|
|
|
|
* blank records.
|
|
|
|
*/
|
|
|
|
memset(&group, 0, 13);
|
|
|
|
for (i = (old_groups + 1); i <= CFG.new_groups; i++)
|
|
|
|
fwrite(&group, 13, 1, fout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(fin);
|
|
|
|
fclose(fout);
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-10-19 21:10:43 +00:00
|
|
|
void CloseNewfiles(int force)
|
2001-08-17 05:46:24 +00:00
|
|
|
{
|
2001-10-19 21:10:43 +00:00
|
|
|
char fin[PATH_MAX], fout[PATH_MAX], group[13];
|
2001-08-17 05:46:24 +00:00
|
|
|
FILE *fi, *fo;
|
|
|
|
st_list *new = NULL, *tmp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
sprintf(fin, "%s/etc/newfiles.data", getenv("MBSE_ROOT"));
|
|
|
|
sprintf(fout,"%s/etc/newfiles.temp", getenv("MBSE_ROOT"));
|
|
|
|
|
|
|
|
if (NewUpdated == 1) {
|
2001-10-19 21:10:43 +00:00
|
|
|
if (force || (yes_no((char *)"Database is changed, save changes") == 1)) {
|
2001-08-17 05:46:24 +00:00
|
|
|
working(1, 0, 0);
|
|
|
|
fi = fopen(fout, "r");
|
|
|
|
fo = fopen(fin, "w");
|
|
|
|
fread(&newfileshdr, newfileshdr.hdrsize, 1, fi);
|
|
|
|
fwrite(&newfileshdr, newfileshdr.hdrsize, 1, fo);
|
|
|
|
|
|
|
|
while (fread(&newfiles, newfileshdr.recsize, 1, fi) == 1) {
|
|
|
|
if (!newfiles.Deleted)
|
|
|
|
fill_stlist(&new, newfiles.Comment, ftell(fi) - newfileshdr.recsize);
|
|
|
|
fseek(fi, newfileshdr.grpsize, SEEK_CUR);
|
|
|
|
}
|
|
|
|
sort_stlist(&new);
|
|
|
|
|
|
|
|
for (tmp = new; tmp; tmp = tmp->next) {
|
|
|
|
fseek(fi, tmp->pos, SEEK_SET);
|
|
|
|
fread(&newfiles, newfileshdr.recsize, 1, fi);
|
|
|
|
fwrite(&newfiles, newfileshdr.recsize, 1, fo);
|
|
|
|
for (i = 0; i < (newfileshdr.grpsize / sizeof(group)); i++) {
|
|
|
|
fread(&group, sizeof(group), 1, fi);
|
|
|
|
fwrite(&group, sizeof(group), 1, fo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fi);
|
|
|
|
fclose(fo);
|
|
|
|
tidy_stlist(&new);
|
|
|
|
unlink(fout);
|
2001-11-14 21:37:58 +00:00
|
|
|
chmod(fin, 0640);
|
2001-08-17 05:46:24 +00:00
|
|
|
Syslog('+', "Updated \"newfiles.data\"");
|
2004-02-05 21:05:31 +00:00
|
|
|
if (!force)
|
|
|
|
working(6, 0, 0);
|
2001-08-17 05:46:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2002-01-25 20:21:50 +00:00
|
|
|
chmod(fin, 0640);
|
2001-08-17 05:46:24 +00:00
|
|
|
working(1, 0, 0);
|
|
|
|
unlink(fout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int AppendNewfiles(void)
|
|
|
|
{
|
|
|
|
FILE *fil;
|
2001-10-19 21:10:43 +00:00
|
|
|
char ffile[PATH_MAX], group[13];
|
2001-08-17 05:46:24 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
sprintf(ffile, "%s/etc/newfiles.temp", getenv("MBSE_ROOT"));
|
|
|
|
if ((fil = fopen(ffile, "a")) != NULL) {
|
|
|
|
memset(&newfiles, 0, sizeof(newfiles));
|
|
|
|
/*
|
|
|
|
* Fill in default values
|
|
|
|
*/
|
|
|
|
sprintf(newfiles.From, "%s", CFG.sysop_name);
|
2002-03-30 12:00:00 +00:00
|
|
|
newfiles.Language = 'E';
|
|
|
|
sprintf(newfiles.Template, "newfiles");
|
|
|
|
strncpy(newfiles.Origin, CFG.origin, 50);
|
2001-08-17 05:46:24 +00:00
|
|
|
fwrite(&newfiles, sizeof(newfiles), 1, fil);
|
|
|
|
memset(&group, 0, 13);
|
|
|
|
for (i = 1; i <= CFG.new_groups; i++)
|
|
|
|
fwrite(&group, 13, 1, fil);
|
|
|
|
fclose(fil);
|
|
|
|
NewUpdated = 1;
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void NewScreen(void)
|
|
|
|
{
|
|
|
|
clr_index();
|
|
|
|
set_color(WHITE, BLACK);
|
|
|
|
mvprintw( 5, 2, "12. EDIT NEW FILES REPORTS");
|
|
|
|
set_color(CYAN, BLACK);
|
|
|
|
mvprintw( 7, 2, "1. Comment");
|
|
|
|
mvprintw( 8, 2, "2. Msg area");
|
|
|
|
mvprintw( 9, 2, "3. Origin line");
|
|
|
|
mvprintw(10, 2, "4. From name");
|
|
|
|
mvprintw(11, 2, "5. To name");
|
|
|
|
mvprintw(12, 2, "6. Subject");
|
|
|
|
mvprintw(13, 2, "7. Language");
|
|
|
|
mvprintw(14, 2, "8. Template");
|
|
|
|
mvprintw(15, 2, "9. Aka to use");
|
|
|
|
mvprintw(16, 2, "10. Active");
|
|
|
|
mvprintw(17, 2, "11. Deleted");
|
|
|
|
mvprintw(16,42, "12. High ASCII");
|
|
|
|
mvprintw(17,42, "13. New groups");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Edit one record, return -1 if record doesn't exist, 0 if ok.
|
|
|
|
*/
|
|
|
|
int EditNewRec(int Area)
|
|
|
|
{
|
|
|
|
FILE *fil;
|
2001-10-19 21:10:43 +00:00
|
|
|
char mfile[PATH_MAX], temp1[2];
|
2001-08-17 05:46:24 +00:00
|
|
|
long offset;
|
|
|
|
unsigned long crc, crc1;
|
|
|
|
gr_list *fgr = NULL, *tmp;
|
|
|
|
char group[13];
|
|
|
|
int groups, i, j, GrpChanged = FALSE;
|
|
|
|
|
|
|
|
clr_index();
|
|
|
|
working(1, 0, 0);
|
|
|
|
IsDoing("Edit Newfiles");
|
|
|
|
|
|
|
|
sprintf(mfile, "%s/etc/ngroups.data", getenv("MBSE_ROOT"));
|
|
|
|
if ((fil = fopen(mfile, "r")) != NULL) {
|
|
|
|
fread(&ngrouphdr, sizeof(ngrouphdr), 1, fil);
|
|
|
|
|
|
|
|
while (fread(&ngroup, ngrouphdr.recsize, 1, fil) == 1)
|
|
|
|
fill_grlist(&fgr, ngroup.Name);
|
|
|
|
|
|
|
|
fclose(fil);
|
|
|
|
sort_grlist(&fgr);
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintf(mfile, "%s/etc/newfiles.temp", getenv("MBSE_ROOT"));
|
|
|
|
if ((fil = fopen(mfile, "r")) == NULL) {
|
|
|
|
working(2, 0, 0);
|
|
|
|
tidy_grlist(&fgr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fread(&newfileshdr, sizeof(newfileshdr), 1, fil);
|
|
|
|
offset = newfileshdr.hdrsize + ((Area -1) * (newfileshdr.recsize + newfileshdr.grpsize));
|
|
|
|
if (fseek(fil, offset, 0) != 0) {
|
|
|
|
working(2, 0, 0);
|
|
|
|
tidy_grlist(&fgr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fread(&newfiles, newfileshdr.recsize, 1, fil);
|
|
|
|
groups = newfileshdr.grpsize / 13;
|
|
|
|
|
|
|
|
for (i = 0; i < groups; i++) {
|
|
|
|
fread(&group, sizeof(group), 1, fil);
|
|
|
|
if (strlen(group)) {
|
|
|
|
for (tmp = fgr; tmp; tmp = tmp->next)
|
|
|
|
if (!strcmp(tmp->group, group))
|
|
|
|
tmp->tagged = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fil);
|
|
|
|
crc = 0xffffffff;
|
|
|
|
crc = upd_crc32((char *)&newfiles, crc, newfileshdr.recsize);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
NewScreen();
|
|
|
|
set_color(WHITE, BLACK);
|
|
|
|
show_str( 7,18,55, newfiles.Comment);
|
|
|
|
show_str( 8,18,50, newfiles.Area);
|
|
|
|
show_str( 9,18,50, newfiles.Origin);
|
|
|
|
show_str( 10,18,35, newfiles.From);
|
|
|
|
show_str( 11,18,35, newfiles.Too);
|
|
|
|
show_str( 12,18,60, newfiles.Subject);
|
|
|
|
sprintf(temp1, "%c", newfiles.Language);
|
|
|
|
show_str( 13,18,2, temp1);
|
|
|
|
show_str( 14,18,14, newfiles.Template);
|
|
|
|
show_str( 15,18,35, aka2str(newfiles.UseAka));
|
|
|
|
show_bool(16,18, newfiles.Active);
|
|
|
|
show_bool(17,18, newfiles.Deleted);
|
|
|
|
show_bool(16,58, newfiles.HiAscii);
|
|
|
|
i = 0;
|
|
|
|
for (tmp = fgr; tmp; tmp = tmp->next)
|
|
|
|
if (tmp->tagged)
|
|
|
|
i++;
|
|
|
|
show_int( 17,58, i);
|
|
|
|
|
|
|
|
switch(select_menu(13)) {
|
|
|
|
case 0:
|
|
|
|
crc1 = 0xffffffff;
|
|
|
|
crc1 = upd_crc32((char *)&newfiles, crc1, newfileshdr.recsize);
|
|
|
|
if ((crc != crc1) || GrpChanged) {
|
|
|
|
if (yes_no((char *)"Record is changed, save") == 1) {
|
|
|
|
working(1, 0, 0);
|
|
|
|
if ((fil = fopen(mfile, "r+")) == NULL) {
|
|
|
|
working(2, 0, 0);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fseek(fil, offset, 0);
|
|
|
|
fwrite(&newfiles, newfileshdr.recsize, 1, fil);
|
|
|
|
|
|
|
|
groups = newfileshdr.grpsize / 13;
|
|
|
|
i = 0;
|
|
|
|
for (tmp = fgr; tmp; tmp = tmp->next)
|
|
|
|
if (tmp->tagged) {
|
|
|
|
i++;
|
|
|
|
memset(&group, 0, 13);
|
|
|
|
sprintf(group, "%s", tmp->group);
|
|
|
|
fwrite(&group, 13, 1, fil);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&group, 0, 13);
|
|
|
|
for (j = i; j < groups; j++)
|
|
|
|
fwrite(&group, 13, 1, fil);
|
|
|
|
|
|
|
|
fclose(fil);
|
|
|
|
NewUpdated = 1;
|
2004-02-05 21:05:31 +00:00
|
|
|
working(6, 0, 0);
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
tidy_grlist(&fgr);
|
|
|
|
IsDoing("Browsing Menu");
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 1: E_STR( 7,18,55, newfiles.Comment, "The ^comment^ for this area")
|
|
|
|
case 2: strcpy(newfiles.Area, PickMsgarea((char *)"12.2"));
|
|
|
|
break;
|
|
|
|
case 3: E_STR( 9,18,50, newfiles.Origin, "The ^origin line^ to append, leave blank for random lines")
|
|
|
|
case 4: E_STR( 10,18,35, newfiles.From, "The ^From^ name to appear above the messages")
|
|
|
|
case 5: E_STR( 11,18,35, newfiles.Too, "The ^To^ name to appear above the messages")
|
|
|
|
case 6: E_STR( 12,18,60, newfiles.Subject, "The ^Subject^ of the messages")
|
|
|
|
case 7: newfiles.Language = PickLanguage((char *)"12.7");
|
|
|
|
break;
|
|
|
|
case 8: E_STR( 14,18,14, newfiles.Template, "The ^template^ file to use for the report")
|
|
|
|
case 9: i = PickAka((char *)"12.9", TRUE);
|
|
|
|
if (i != -1)
|
|
|
|
newfiles.UseAka = CFG.aka[i];
|
|
|
|
break;
|
|
|
|
case 10:E_BOOL(16,18, newfiles.Active, "If this report is ^active^")
|
|
|
|
case 11:E_BOOL(17,18, newfiles.Deleted, "Is this record ^deleted^")
|
|
|
|
case 12:E_BOOL(16,58, newfiles.HiAscii, "Allow ^High ASCII^ in this report")
|
2004-02-23 14:46:06 +00:00
|
|
|
case 13:if (E_Group(&fgr, (char *)"12.13 NEWFILE GROUPS"))
|
2001-08-17 05:46:24 +00:00
|
|
|
GrpChanged = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void EditNewfiles(void)
|
|
|
|
{
|
2003-01-31 21:49:29 +00:00
|
|
|
int records, i, o, x, y;
|
|
|
|
char pick[12], temp[PATH_MAX];
|
|
|
|
FILE *fil;
|
|
|
|
long offset;
|
|
|
|
|
|
|
|
clr_index();
|
|
|
|
working(1, 0, 0);
|
|
|
|
IsDoing("Browsing Menu");
|
|
|
|
if (config_read() == -1) {
|
|
|
|
working(2, 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
records = CountNewfiles();
|
|
|
|
if (records == -1) {
|
|
|
|
working(2, 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (OpenNewfiles() == -1) {
|
|
|
|
working(2, 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
o = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
2001-08-17 05:46:24 +00:00
|
|
|
clr_index();
|
2003-01-31 21:49:29 +00:00
|
|
|
set_color(WHITE, BLACK);
|
|
|
|
mvprintw( 5, 4, "12. NEWFILES REPORTS");
|
|
|
|
set_color(CYAN, BLACK);
|
|
|
|
if (records != 0) {
|
|
|
|
sprintf(temp, "%s/etc/newfiles.temp", getenv("MBSE_ROOT"));
|
|
|
|
working(1, 0, 0);
|
|
|
|
if ((fil = fopen(temp, "r")) != NULL) {
|
|
|
|
fread(&newfileshdr, sizeof(newfileshdr), 1, fil);
|
|
|
|
x = 2;
|
|
|
|
y = 7;
|
2001-08-17 05:46:24 +00:00
|
|
|
set_color(CYAN, BLACK);
|
2003-01-31 21:49:29 +00:00
|
|
|
for (i = 1; i <= 20; i++) {
|
|
|
|
if (i == 11) {
|
|
|
|
x = 42;
|
|
|
|
y = 7;
|
|
|
|
}
|
|
|
|
if ((o + i) <= records) {
|
|
|
|
offset = sizeof(newfileshdr) + (((o + i) - 1) * (newfileshdr.recsize + newfileshdr.grpsize));
|
|
|
|
fseek(fil, offset, 0);
|
|
|
|
fread(&newfiles, newfileshdr.recsize, 1, fil);
|
|
|
|
if (newfiles.Active)
|
|
|
|
set_color(CYAN, BLACK);
|
|
|
|
else
|
|
|
|
set_color(LIGHTBLUE, BLACK);
|
|
|
|
sprintf(temp, "%3d. %-32s", o + i, newfiles.Comment);
|
|
|
|
temp[37] = 0;
|
|
|
|
mvprintw(y, x, temp);
|
|
|
|
y++;
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2003-01-31 21:49:29 +00:00
|
|
|
fclose(fil);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
strcpy(pick, select_record(records, 20));
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2003-01-31 21:49:29 +00:00
|
|
|
if (strncmp(pick, "-", 1) == 0) {
|
|
|
|
CloseNewfiles(FALSE);
|
|
|
|
return;
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2003-01-31 21:49:29 +00:00
|
|
|
if (strncmp(pick, "A", 1) == 0) {
|
2003-01-31 22:00:18 +00:00
|
|
|
if (records < CFG.new_groups) {
|
2003-01-31 21:49:29 +00:00
|
|
|
working(1, 0, 0);
|
|
|
|
if (AppendNewfiles() == 0) {
|
|
|
|
records++;
|
|
|
|
working(1, 0, 0);
|
|
|
|
} else
|
|
|
|
working(2, 0, 0);
|
|
|
|
} else {
|
2003-02-02 21:26:46 +00:00
|
|
|
errmsg("Cannot add, change global setting in menu 1.14.3");
|
2003-01-31 21:49:29 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2003-01-31 21:49:29 +00:00
|
|
|
if (strncmp(pick, "N", 1) == 0)
|
|
|
|
if ((o + 20) < records)
|
|
|
|
o = o + 20;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2003-01-31 21:49:29 +00:00
|
|
|
if (strncmp(pick, "P", 1) == 0)
|
|
|
|
if ((o - 20) >= 0)
|
|
|
|
o = o - 20;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2003-01-31 21:49:29 +00:00
|
|
|
if ((atoi(pick) >= 1) && (atoi(pick) <= records)) {
|
|
|
|
EditNewRec(atoi(pick));
|
|
|
|
o = ((atoi(pick) - 1) / 20) * 20;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2003-01-31 21:49:29 +00:00
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-10-19 21:10:43 +00:00
|
|
|
void InitNewfiles(void)
|
|
|
|
{
|
|
|
|
CountNewfiles();
|
|
|
|
OpenNewfiles();
|
|
|
|
CloseNewfiles(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-08-17 05:46:24 +00:00
|
|
|
int new_doc(FILE *fp, FILE *toc, int page)
|
|
|
|
{
|
2004-03-28 19:36:30 +00:00
|
|
|
char temp[PATH_MAX], group[13];
|
|
|
|
FILE *wp, *ip, *no;
|
|
|
|
int groups, i, j, nr = 0;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
sprintf(temp, "%s/etc/newfiles.data", getenv("MBSE_ROOT"));
|
|
|
|
if ((no = fopen(temp, "r")) == NULL)
|
|
|
|
return page;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
page = newpage(fp, page);
|
|
|
|
addtoc(fp, toc, 12, 0, page, (char *)"Newfiles reports");
|
|
|
|
j = 0;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
fprintf(fp, "\n\n");
|
|
|
|
fread(&newfileshdr, sizeof(newfileshdr), 1, no);
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
ip = open_webdoc((char *)"newfiles.html", (char *)"Newfiles Reports", NULL);
|
|
|
|
fprintf(ip, "<A HREF=\"index.html\">Main</A>\n");
|
|
|
|
fprintf(ip, "<UL>\n");
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
while ((fread(&newfiles, newfileshdr.recsize, 1, no)) == 1) {
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
if (j == 3) {
|
|
|
|
page = newpage(fp, page);
|
|
|
|
fprintf(fp, "\n");
|
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
nr++;
|
|
|
|
sprintf(temp, "newfiles_%d.html", nr);
|
|
|
|
fprintf(ip, " <LI><A HREF=\"%s\">Report %d</A> %s</LI>\n", temp, nr, newfiles.Comment);
|
|
|
|
if ((wp = open_webdoc(temp, (char *)"Newfiles report", newfiles.Comment))) {
|
|
|
|
fprintf(wp, "<A HREF=\"index.html\">Main</A> <A HREF=\"newfiles.html\">Back</A>\n");
|
|
|
|
fprintf(wp, "<P>\n");
|
|
|
|
fprintf(wp, "<TABLE width='600' border='0' cellspacing='0' cellpadding='2'>\n");
|
|
|
|
fprintf(wp, "<COL width='30%%'><COL width='70%%'>\n");
|
|
|
|
fprintf(wp, "<TBODY>\n");
|
|
|
|
add_webtable(wp, (char *)"Area comment", newfiles.Comment);
|
|
|
|
add_webtable(wp, (char *)"Message area", newfiles.Area);
|
|
|
|
add_webtable(wp, (char *)"Origin line", newfiles.Origin);
|
|
|
|
add_webtable(wp, (char *)"From name", newfiles.From);
|
|
|
|
add_webtable(wp, (char *)"To name", newfiles.Too);
|
|
|
|
add_webtable(wp, (char *)"Subject", newfiles.Subject);
|
|
|
|
sprintf(temp, "%c", newfiles.Language);
|
|
|
|
add_webtable(wp, (char *)"Language", temp);
|
|
|
|
add_webtable(wp, (char *)"Aka to use", aka2str(newfiles.UseAka));
|
|
|
|
add_webtable(wp, (char *)"Active", getboolean(newfiles.Active));
|
|
|
|
add_webtable(wp, (char *)"Allow High ASCII", getboolean(newfiles.HiAscii));
|
|
|
|
fprintf(fp, " Area comment %s\n", newfiles.Comment);
|
|
|
|
fprintf(fp, " Message area %s\n", newfiles.Area);
|
|
|
|
fprintf(fp, " Origin line %s\n", newfiles.Origin);
|
|
|
|
fprintf(fp, " From name %s\n", newfiles.From);
|
|
|
|
fprintf(fp, " To name %s\n", newfiles.Too);
|
|
|
|
fprintf(fp, " Subject %s\n", newfiles.Subject);
|
|
|
|
fprintf(fp, " Language %c\n", newfiles.Language);
|
|
|
|
fprintf(fp, " Aka to use %s\n", aka2str(newfiles.UseAka));
|
|
|
|
fprintf(fp, " Active %s\n", getboolean(newfiles.Active));
|
|
|
|
fprintf(fp, " Allow High ASCII %s\n", getboolean(newfiles.HiAscii));
|
|
|
|
fprintf(fp, "\n File groups:\n ");
|
|
|
|
groups = newfileshdr.grpsize / sizeof(group);
|
|
|
|
for (i = 0; i < groups; i++) {
|
|
|
|
fread(&group, sizeof(group), 1, no);
|
|
|
|
if (strlen(group)) {
|
|
|
|
if (i)
|
2004-03-29 19:47:14 +00:00
|
|
|
fprintf(wp, "<TR><TH> </TH><TD><A HREF=\"newgroup.html\">%s</A></TD></TR>\n", group);
|
2004-03-28 19:36:30 +00:00
|
|
|
else
|
2004-03-29 19:47:14 +00:00
|
|
|
fprintf(wp, "<TR><TH align='left'>New groups</TH><TD><A HREF=\"newgroup.html\">%s</A></TD></TR>\n",
|
|
|
|
group);
|
2004-03-28 19:36:30 +00:00
|
|
|
fprintf(fp, "%-12s ", group);
|
|
|
|
if (((i+1) %5) == 0)
|
|
|
|
fprintf(fp, "\n ");
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2004-03-28 19:36:30 +00:00
|
|
|
}
|
|
|
|
if ((i+1) % 5)
|
|
|
|
fprintf(fp, "\n");
|
|
|
|
fprintf(fp, "\n\n\n");
|
|
|
|
j++;
|
|
|
|
fprintf(wp, "</TBODY>\n");
|
|
|
|
fprintf(wp, "</TABLE>\n");
|
|
|
|
close_webdoc(wp);
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2004-03-28 19:36:30 +00:00
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2004-03-28 19:36:30 +00:00
|
|
|
fprintf(ip, "</UL>\n");
|
|
|
|
close_webdoc(ip);
|
|
|
|
|
|
|
|
fclose(no);
|
|
|
|
return page;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|