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/mbsebbs/change.c

1048 lines
24 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: Change user settings
*
*****************************************************************************
* Copyright (C) 1997-2005
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.
*
* 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"
2001-08-17 05:46:24 +00:00
#include "../lib/mbse.h"
2002-01-07 19:16:03 +00:00
#include "../lib/users.h"
2001-08-17 05:46:24 +00:00
#include "change.h"
#include "dispfile.h"
2001-08-17 05:46:24 +00:00
#include "funcs.h"
#include "input.h"
2001-08-17 05:46:24 +00:00
#include "language.h"
#include "misc.h"
#include "timeout.h"
#include "exitinfo.h"
#include "bye.h"
#include "term.h"
2004-11-03 20:48:45 +00:00
#include "ttyio.h"
2001-08-17 05:46:24 +00:00
extern int cols;
extern int rows;
2001-08-17 05:46:24 +00:00
int Chg_Language(int NewMode)
{
2004-11-03 20:48:45 +00:00
FILE *pLang;
int iLang, iFoundLang = FALSE;
char *temp;
temp = calloc(PATH_MAX, sizeof(char));
if (!NewMode)
ReadExitinfo();
while(TRUE) {
2005-08-29 12:59:00 +00:00
snprintf(temp, PATH_MAX, "%s/etc/language.data", getenv("MBSE_ROOT"));
2004-11-03 20:48:45 +00:00
if(( pLang = fopen(temp, "r")) == NULL) {
WriteError("$Can't open %s", temp);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "\nFATAL: Can't open language file\n\n");
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
Pause();
free(temp);
return 0;
}
fread(&langhdr, sizeof(langhdr), 1, pLang);
colour(CFG.HiliteF, CFG.HiliteB);
/* Select your preferred language */
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "\r\n%s\r\n\r\n", (char *) Language(378));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
iLang = 6;
2005-08-20 12:27:08 +00:00
colour(LIGHTBLUE, BLACK);
2004-11-03 20:48:45 +00:00
while (fread(&lang, langhdr.recsize, 1, pLang) == 1)
if (lang.Available) {
2005-08-20 12:27:08 +00:00
colour(LIGHTMAGENTA, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "(%s)", lang.LangKey);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
2005-08-20 12:27:08 +00:00
colour(DARKGRAY, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, " %c ", 46);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
2005-08-20 12:27:08 +00:00
colour(CYAN, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "%-29s ", lang.Name);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
iLang++;
if ((iLang % 2) == 0) {
PUTCHAR('\r');
PUTCHAR('\n');
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
}
Enter(1);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
colour(CFG.HiliteF, CFG.HiliteB);
/* Select language: */
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "\n%s", (char *) Language(379));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
alarm_on();
iLang = toupper(Readkey());
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
PUTCHAR(iLang);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
fseek(pLang, langhdr.hdrsize, 0);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while (fread(&lang, langhdr.recsize, 1, pLang) == 1) {
strcpy(lang.LangKey,tu(lang.LangKey));
if ((lang.LangKey[0] == iLang) && (lang.Available)) {
strcpy(CFG.current_language, lang.Filename);
iFoundLang = TRUE;
break;
}
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
fclose(pLang);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if(!iFoundLang) {
Enter(2);
/* Invalid selection, please try again! */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(265));
2004-11-03 20:48:45 +00:00
Enter(2);
} else {
exitinfo.iLanguage = iLang;
strcpy(CFG.current_language, lang.Filename);
Free_Language();
InitLanguage();
2005-08-20 12:27:08 +00:00
colour(LIGHTGREEN, BLACK);
2004-11-03 20:48:45 +00:00
/* Language now set to" */
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "\r\n\r\n%s%s\r\n\r\n", (char *) Language(380), lang.Name);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
if (!NewMode) {
Syslog('+', "Changed language to %s", lang.Name);
WriteExitinfo();
Pause();
}
break;
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
free(temp);
Enter(1);
return iLang;
2001-08-17 05:46:24 +00:00
}
void Chg_Password()
{
2004-03-02 20:47:23 +00:00
char *temp1, *temp2, *args[16];
temp1 = calloc(PATH_MAX, sizeof(char));
temp2 = calloc(PATH_MAX, sizeof(char));
ReadExitinfo();
DisplayFile((char *)"password");
Enter(1);
/* Old password: */
2005-08-20 12:27:08 +00:00
language(WHITE, BLACK, 120);
2004-03-02 20:47:23 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
Getpass(temp1);
if (!strcmp(exitinfo.Password, temp1)) {
while (TRUE) {
Enter(1);
/* New password: */
2005-08-20 12:27:08 +00:00
language(LIGHTBLUE, BLACK, 121);
2004-03-02 20:47:23 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
Getpass(temp1);
if((strlen(temp1)) >= CFG.password_length) {
Enter(1);
/* Confirm new password: */
2005-08-20 12:27:08 +00:00
language(LIGHTBLUE, BLACK, 122);
2004-03-02 20:47:23 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
Getpass(temp2);
if(( strcmp(temp1,temp2)) != 0) {
/* Passwords do not match! */
Enter(2);
2005-08-20 12:27:08 +00:00
language(LIGHTRED, BLACK, 123);
2004-03-02 20:47:23 +00:00
Enter(1);
2001-08-17 05:46:24 +00:00
} else {
2004-03-02 20:47:23 +00:00
break;
2001-08-17 05:46:24 +00:00
}
2004-03-02 20:47:23 +00:00
} else {
2005-08-20 12:27:08 +00:00
colour(LIGHTRED, BLACK);
2004-03-02 20:47:23 +00:00
/* Your password must contain at least %d characters! Try again.*/
2005-08-29 12:59:00 +00:00
snprintf(temp2, PATH_MAX, "\r\n%s%d %s\r\n\r\n", (char *) Language(42), CFG.password_length, (char *) Language(43));
2004-11-03 20:48:45 +00:00
PUTSTR(temp2);
2004-03-02 20:47:23 +00:00
}
2001-08-17 05:46:24 +00:00
}
2005-08-27 12:06:48 +00:00
Syslog('+', "%s/bin/mbpasswd %s ******", getenv("MBSE_ROOT"), exitinfo.Name);
2005-08-29 12:59:00 +00:00
snprintf(temp1, PATH_MAX, "%s/bin/mbpasswd", getenv("MBSE_ROOT"));
2004-03-02 20:47:23 +00:00
memset(args, 0, sizeof(args));
args[0] = temp1;
2005-08-27 12:06:48 +00:00
args[1] = exitinfo.Name;
args[2] = temp2;
args[3] = NULL;
2004-03-02 20:47:23 +00:00
if (execute(args, (char *)"/dev/null", (char *)"/dev/null", (char *)"/dev/null") != 0) {
WriteError("Failed to set new Unix password");
} else {
memset(&exitinfo.Password, 0, sizeof(exitinfo.Password));
strcpy(exitinfo.Password, temp2);
exitinfo.tLastPwdChange = time(NULL);
Enter(1);
/* Password Change Successful */
2005-08-20 12:27:08 +00:00
language(LIGHTGREEN, BLACK, 124);
2004-03-02 20:47:23 +00:00
Syslog('+', "User changed his password");
WriteExitinfo();
}
} else {
Enter(1);
/* Old password incorrect! */
2005-08-20 12:27:08 +00:00
language(LIGHTRED, BLACK, 125);
2004-03-02 20:47:23 +00:00
}
free(temp1);
free(temp2);
Enter(2);
Pause();
2001-08-17 05:46:24 +00:00
}
2001-11-12 21:42:17 +00:00
/*
* Function to check if User Handle exists and returns a 0 or 1
*/
int CheckHandle(char *);
int CheckHandle(char *Name)
{
2002-07-28 12:31:28 +00:00
FILE *fp;
int Status = FALSE;
struct userhdr uhdr;
struct userrec u;
char *temp;
temp = calloc(PATH_MAX, sizeof(char));
2005-08-29 12:59:00 +00:00
snprintf(temp, PATH_MAX, "%s/etc/users.data", getenv("MBSE_ROOT"));
2002-07-28 12:31:28 +00:00
if ((fp = fopen(temp,"rb")) != NULL) {
fread(&uhdr, sizeof(uhdr), 1, fp);
while (fread(&u, uhdr.recsize, 1, fp) == 1) {
if ((strcasecmp(u.sHandle, Name)) == 0) {
Status = TRUE;
break;
}
2001-11-12 21:42:17 +00:00
}
2002-07-28 12:31:28 +00:00
fclose(fp);
}
2001-11-12 21:42:17 +00:00
2002-07-28 12:31:28 +00:00
free(temp);
return Status;
2001-11-12 21:42:17 +00:00
}
2001-08-17 05:46:24 +00:00
/*
* Function will allow a user to change his handle
*/
void Chg_Handle()
{
2002-07-28 12:31:28 +00:00
char *Handle, *temp;
2001-08-17 05:46:24 +00:00
2002-07-28 12:31:28 +00:00
Handle = calloc(81, sizeof(char));
temp = calloc(81, sizeof(char));
2001-08-17 05:46:24 +00:00
2002-07-28 12:31:28 +00:00
ReadExitinfo();
Syslog('+', "Old handle \"%s\"", exitinfo.sHandle);
2001-08-17 05:46:24 +00:00
2002-07-28 12:31:28 +00:00
while (TRUE) {
Enter(1);
/* Enter a handle (Enter to Quit): */
2005-08-20 12:27:08 +00:00
pout(LIGHTBLUE, BLACK, (char *) Language(412));
2002-07-28 12:31:28 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
2004-11-03 20:48:45 +00:00
GetstrC(temp, 34);
2001-08-17 05:46:24 +00:00
2002-07-28 12:31:28 +00:00
if ((strcmp(temp, "")) == 0) {
free(Handle);
free(temp);
return;
2001-08-17 05:46:24 +00:00
}
2002-07-28 12:31:28 +00:00
strcpy(Handle, tlcap(temp));
if (CheckHandle(Handle) || CheckUnixNames(Handle)) {
2005-08-20 12:27:08 +00:00
pout(LIGHTRED, BLACK, (char *)"\r\nThat handle is already been used\r\n");
2002-07-28 12:31:28 +00:00
} else if (CheckName(Handle)) {
2005-08-20 12:27:08 +00:00
pout(LIGHTRED, BLACK, (char *)"\r\nThat name is already been used\r\n");
2004-11-03 20:48:45 +00:00
} else if((strcasecmp(Handle, "sysop")) == 0) {
2005-08-20 12:27:08 +00:00
pout(LIGHTRED, BLACK, (char *)"\r\nYou cannot use Sysop as a handle\r\n");
2002-07-28 12:31:28 +00:00
} else if(strcmp(temp, "") != 0) {
Setup(exitinfo.sHandle, temp);
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *)"\r\nHandle Changed!\r\n\r\n");
2002-07-28 12:31:28 +00:00
Syslog('+', "New handle \"%s\"", exitinfo.sHandle);
break;
}
}
2001-08-17 05:46:24 +00:00
2002-07-28 12:31:28 +00:00
WriteExitinfo();
free(temp);
free(Handle);
2001-08-17 05:46:24 +00:00
}
/*
* Toggle hotkeys
*/
void Chg_Hotkeys()
{
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (exitinfo.HotKeys) {
exitinfo.HotKeys = FALSE;
/* Hotkeys are now OFF */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(146));
2004-11-03 20:48:45 +00:00
} else {
exitinfo.HotKeys = TRUE;
/* Hotkeys are now ON */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(145));
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Enter(2);
sleep(2);
Syslog('+', "Hotkeys changed to %s", exitinfo.HotKeys?"True":"False");
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
/*
* Toggle Mail Check
*/
void Chg_MailCheck()
{
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (exitinfo.MailScan) {
exitinfo.MailScan = FALSE;
/* New Mail check is now OFF */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(367));
2004-11-03 20:48:45 +00:00
} else {
exitinfo.MailScan = TRUE;
/* New Mail check is now ON */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(366));
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Enter(2);
sleep(2);
Syslog('+', "New Mail Check changed to %s", exitinfo.MailScan ?"True":"False");
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
/*
* Toggle New Files Check
*/
void Chg_FileCheck()
{
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (exitinfo.ieFILE) {
exitinfo.ieFILE = FALSE;
/* New Files check is now OFF */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(371));
2004-11-03 20:48:45 +00:00
} else {
exitinfo.ieFILE = TRUE;
/* New Files check is now ON */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(370));
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Enter(2);
sleep(2);
Syslog('+', "Check New Files changed to %s", exitinfo.ieFILE ?"True":"False");
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
/*
* Choose Message Editor
2001-08-17 05:46:24 +00:00
*/
void Chg_FsMsged()
{
int z;
2004-11-03 20:48:45 +00:00
char temp[81];
2001-08-17 05:46:24 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
/* Now using the */
pout(LIGHTMAGENTA, BLACK, (char *)Language(372));
/* Line/Fullscreen/External */
colour(LIGHTCYAN, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, " %s ", Language(387 + (exitinfo.MsgEditor & 3)));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
/* Editor */
pout(LIGHTMAGENTA, BLACK, (char *)Language(390));
Enter(1);
2002-03-12 22:09:05 +00:00
if (strlen(CFG.externaleditor))
/* Select: 1) Line editor, 2) Fullscreen editor, 3) External editor */
pout(WHITE, BLACK, (char *)Language(373));
else
/* Select: 1) Line editor, 2) Fullscreen editor */
pout(WHITE, BLACK, (char *)Language(438));
alarm_on();
2004-11-03 20:48:45 +00:00
z = toupper(Readkey());
if (z == Keystroke(373, 0)) {
exitinfo.MsgEditor = LINEEDIT;
Syslog('+', "User selected line editor");
} else if (z == Keystroke(373, 1)) {
exitinfo.MsgEditor = FSEDIT;
Syslog('+', "User selected fullscreen editor");
2002-03-12 22:09:05 +00:00
} else if ((z == Keystroke(373, 2) && strlen(CFG.externaleditor))) {
exitinfo.MsgEditor = EXTEDIT;
Syslog('+', "User selected external editor");
}
Enter(2);
/* Now using the */
pout(LIGHTMAGENTA, BLACK, (char *)Language(372));
/* Line/Fullscreen/External */
colour(LIGHTCYAN, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, " %s ", Language(387 + (exitinfo.MsgEditor & 3)));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
/* Editor */
pout(LIGHTMAGENTA, BLACK, (char *)Language(390));
Enter(2);
sleep(2);
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
/*
* Toggle Fullscreen Editor Shotcut keys
*/
void Chg_FsMsgedKeys()
{
ReadExitinfo();
Enter(2);
if (exitinfo.FSemacs) {
exitinfo.FSemacs = FALSE;
/* Fullscreen Editor shortcut keys set to Wordstar */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(473));
} else {
exitinfo.FSemacs = TRUE;
/* Fullscreen Editor shortcut keys set to Emacs */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(472));
}
Enter(2);
sleep(2);
Syslog('+', "FS editor shortcut keys changed to %s", exitinfo.FSemacs?"Emacs":"Wordstar");
WriteExitinfo();
}
2001-08-17 05:46:24 +00:00
/*
* Function to toggle DoNotDisturb Flag
*/
void Chg_Disturb()
{
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if(exitinfo.DoNotDisturb) {
exitinfo.DoNotDisturb = FALSE;
/* Do not disturb turned OFF */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(416));
2004-11-03 20:48:45 +00:00
} else {
exitinfo.DoNotDisturb = TRUE;
/* Do not disturb turned ON */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(417));
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Enter(2);
Syslog('+', "Do not disturb now %s", exitinfo.DoNotDisturb?"True":"False");
UserSilent(exitinfo.DoNotDisturb);
sleep(2);
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
void Chg_Location()
{
2004-11-03 20:48:45 +00:00
char temp[81];
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Syslog('+', "Old location \"%s\"", exitinfo.sLocation);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while (TRUE) {
/* Old Location: */
Enter(1);
/* Old location: */
2005-08-20 12:27:08 +00:00
pout(WHITE, BLACK, (char *) Language(73));
2004-11-03 20:48:45 +00:00
pout(9, 0, exitinfo.sLocation);
Enter(2);
/* Please enter your location: */
2005-08-20 12:27:08 +00:00
pout(YELLOW, BLACK, (char *) Language(49));
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
if (CFG.iCapLocation) {
GetnameNE(temp, 24);
} else {
GetstrC(temp, 80);
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if((strcmp(temp, "")) == 0)
break;
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if(( strlen(temp)) < CFG.CityLen) {
Enter(1);
/* Please enter a longer location (min */
2005-08-20 12:27:08 +00:00
colour(LIGHTRED, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "%s%d)", (char *) Language(74), CFG.CityLen);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
Enter(1);
} else {
Setup(exitinfo.sLocation,temp);
break;
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Syslog('+', "New location \"%s\"", exitinfo.sLocation);
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
void Chg_Address()
{
int i;
char temp[41];
ReadExitinfo();
Syslog('+', "Old address \"%s\"", exitinfo.address[0]);
Syslog('+', " \"%s\"", exitinfo.address[1]);
Syslog('+', " \"%s\"", exitinfo.address[2]);
while (TRUE) {
Enter(1);
/* Old address: */
pout(WHITE, BLACK, (char *) Language(476));
Enter(1);
colour(LIGHTBLUE, BLACK);
2004-11-03 20:48:45 +00:00
PUTSTR(exitinfo.address[0]);
Enter(1);
2004-11-03 20:48:45 +00:00
PUTSTR(exitinfo.address[1]);
Enter(1);
PUTSTR(exitinfo.address[2]);
Enter(2);
/* Your address, maximum 3 lines (only visible for the sysop): */
pout(YELLOW, BLACK, (char *) Language(474));
Enter(1);
for (i = 0; i < 3; i++ ) {
colour(YELLOW, BLACK);
printf("%d: ", i+1);
colour(CFG.InputColourF, CFG.InputColourB);
alarm_on();
GetstrC(temp, 40);
if (strcmp(temp, ""))
Setup(exitinfo.address[i], temp);
}
if (strlen(exitinfo.address[0]) || strlen(exitinfo.address[1]) || strlen(exitinfo.address[2]))
break;
Enter(1);
/* You need to enter your address here */
pout(LIGHTRED, BLACK, (char *)Language(475));
Enter(1);
}
Syslog('+', "New address \"%s\"", exitinfo.address[0]);
Syslog('+', " \"%s\"", exitinfo.address[1]);
Syslog('+', " \"%s\"", exitinfo.address[2]);
WriteExitinfo();
}
2001-08-17 05:46:24 +00:00
/*
* Toggle Graphics
*/
void Chg_Graphics()
{
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (exitinfo.GraphMode) {
exitinfo.GraphMode = FALSE;
/* Ansi Mode turned OFF */
2005-08-20 12:27:08 +00:00
pout(WHITE, BLACK, (char *) Language(76));
2004-11-03 20:48:45 +00:00
} else {
exitinfo.GraphMode = TRUE;
/* Ansi Mode turned ON */
2005-08-20 12:27:08 +00:00
pout(WHITE, BLACK, (char *) Language(75));
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Syslog('+', "Graphics mode now %s", exitinfo.GraphMode?"On":"Off");
Enter(2);
TermInit(exitinfo.GraphMode);
2004-11-03 20:48:45 +00:00
WriteExitinfo();
sleep(2);
2001-08-17 05:46:24 +00:00
}
void Chg_VoicePhone()
{
2004-11-03 20:48:45 +00:00
char temp[81];
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Syslog('+', "Old voice phone \"%s\"", exitinfo.sVoicePhone);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while (TRUE) {
Enter(1);
/* Please enter you Voice Number */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(45));
2004-11-03 20:48:45 +00:00
Enter(1);
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *)": ");
2004-11-03 20:48:45 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
GetPhone(temp, 16);
if (strlen(temp) < 6) {
Enter(1);
/* Please enter a proper phone number */
2005-08-20 12:27:08 +00:00
pout(LIGHTRED, BLACK, (char *) Language(47));
2004-11-03 20:48:45 +00:00
Enter(1);
} else {
strcpy(exitinfo.sVoicePhone, temp);
break;
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Syslog('+', "New voice phone \"%s\"", exitinfo.sVoicePhone);
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
void Chg_DataPhone()
{
2004-11-03 20:48:45 +00:00
char temp[81];
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Syslog('+', "Old data phone \"%s\"", exitinfo.sDataPhone);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while (1) {
Enter(1);
/* Please enter you Data Number */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(48));
2004-11-03 20:48:45 +00:00
Enter(1);
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *)": ");
2004-11-03 20:48:45 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
GetPhone(temp, 16);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if( strlen(temp) < 6) {
Enter(1);
/* Please enter a proper phone number */
2005-08-20 12:27:08 +00:00
pout(LIGHTRED, BLACK, (char *) Language(47));
2004-11-03 20:48:45 +00:00
Enter(1);
} else {
strcpy(exitinfo.sDataPhone, temp);
break;
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Syslog('+', "New data phone \"%s\"", exitinfo.sDataPhone);
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
void Chg_News()
{
2004-11-03 20:48:45 +00:00
ReadExitinfo();
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (exitinfo.ieNEWS) {
exitinfo.ieNEWS = FALSE;
/* News bulletins turned OFF */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(79));
2004-11-03 20:48:45 +00:00
} else {
exitinfo.ieNEWS = TRUE;
/* News bulletins turned ON */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(78));
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Enter(2);
Syslog('+', "News bullentins now %s", exitinfo.ieNEWS?"True":"False");
sleep(2);
WriteExitinfo();
2001-08-17 05:46:24 +00:00
}
/*
* Check users Date of Birth, if it is ok, we calculate his age.
*/
int Test_DOB(char *DOB)
{
2004-11-03 20:48:45 +00:00
int tyear, year, month, day;
char temp[40], temp1[40];
/*
* If Ask Date of Birth is off, assume users age is
* zero, and this check is ok.
*/
if (!CFG.iDOB) {
UserAge = 0;
return TRUE;
}
2004-11-03 20:48:45 +00:00
/*
* First check length of string
*/
if (strlen(DOB) != 10) {
Syslog('!', "Date format length %d characters", strlen(DOB));
/* Please enter the correct date format */
2005-08-20 12:27:08 +00:00
language(YELLOW, BLACK, 83);
2004-11-03 20:48:45 +00:00
return FALSE;
}
/*
* Split the date into pieces
*/
strcpy(temp1, DOB);
strcpy(temp, strtok(temp1, "-"));
day = atoi(temp);
strcpy(temp, strtok(NULL, "-"));
month = atoi(temp);
strcpy(temp, strtok(NULL, ""));
year = atoi(temp);
tyear = l_date->tm_year + 1900;
if (((tyear - year) < 10) || ((tyear - year) > 95)) {
Syslog('!', "DOB: Year error: %d", tyear - year);
return FALSE;
}
if ((month < 1) || (month > 12)) {
Syslog('!', "DOB: Month error: %d", month);
return FALSE;
}
if ((day < 1) || (day > 31)) {
Syslog('!', "DOB: Day error: %d", day);
return FALSE;
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
UserAge = tyear - year;
if ((l_date->tm_mon + 1) < month)
UserAge--;
if (((l_date->tm_mon + 1) == month) && (l_date->tm_mday < day))
UserAge--;
Syslog('B', "DOB: Users age %d year", UserAge);
return TRUE;
2001-08-17 05:46:24 +00:00
}
void Chg_DOB()
{
2004-11-03 20:48:45 +00:00
char *temp;
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (!CFG.iDOB)
return;
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
temp = calloc(81, sizeof(char));
ReadExitinfo();
Syslog('+', "Old DOB %s", exitinfo.sDateOfBirth);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while (TRUE) {
Enter(1);
/* Please enter your Date of Birth DD-MM-YYYY: */
2005-08-20 12:27:08 +00:00
pout(CYAN, BLACK, (char *) Language(56));
2004-11-03 20:48:45 +00:00
colour(CFG.InputColourF, CFG.InputColourB);
GetDate(temp, 10);
if (Test_DOB(temp)) {
Setup(exitinfo.sDateOfBirth, temp);
break;
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
Syslog('+', "New DOB %s", exitinfo.sDateOfBirth);
WriteExitinfo();
free(temp);
2001-08-17 05:46:24 +00:00
}
/*
* Change default protocol.
*/
void Chg_Protocol()
{
2004-11-03 20:48:45 +00:00
FILE *pProtConfig;
int iProt, iFoundProt = FALSE, precno = 0;
char *temp, Prot[2];
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
temp = calloc(PATH_MAX, sizeof(char));
ReadExitinfo();
2004-11-28 16:15:35 +00:00
Set_Protocol(exitinfo.sProtocol);
2004-11-03 20:48:45 +00:00
Syslog('+', "Old protocol %s", sProtName);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while(TRUE) {
2005-08-29 12:59:00 +00:00
snprintf(temp, PATH_MAX, "%s/etc/protocol.data", getenv("MBSE_ROOT"));
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if ((pProtConfig = fopen(temp, "r")) == NULL) {
WriteError("$Can't open %s", temp);
/* Protocol: Can't open protocol file. */
Enter(1);
PUTSTR((char *) Language(262));
Enter(2);
Pause();
free(temp);
fclose(pProtConfig);
return;
}
fread(&PROThdr, sizeof(PROThdr), 1, pProtConfig);
Enter(1);
/* Select your preferred protocol */
pout(CFG.HiliteF, CFG.HiliteB, (char *) Language(263));
Enter(2);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
while (fread(&PROT, PROThdr.recsize, 1, pProtConfig) == 1) {
if (PROT.Available && Access(exitinfo.Security, PROT.Level)) {
2004-11-27 13:18:20 +00:00
colour(LIGHTBLUE, BLACK);
PUTCHAR('(');
colour(WHITE, BLACK);
PUTSTR(PROT.ProtKey);
colour(LIGHTBLUE, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, ") %-20s Efficiency %3d %%\r\n", PROT.ProtName, PROT.Efficiency);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
}
2001-08-17 05:46:24 +00:00
}
2004-11-03 20:48:45 +00:00
Enter(1);
pout(CFG.HiliteF, CFG.HiliteB, (char *) Language(264));
alarm_on();
iProt = toupper(Readkey());
PUTCHAR(iProt);
2005-08-29 12:59:00 +00:00
snprintf(Prot, 2, "%c", iProt);
2004-11-03 20:48:45 +00:00
fseek(pProtConfig, PROThdr.hdrsize, 0);
while (fread(&PROT, PROThdr.recsize, 1, pProtConfig) == 1) {
if ((strncmp(PROT.ProtKey, Prot, 1) == 0) && PROT.Available && Access(exitinfo.Security, PROT.Level)) {
strcpy(sProtName, PROT.ProtName);
strcpy(sProtUp, PROT.ProtUp);
strcpy(sProtDn, PROT.ProtDn);
strcpy(sProtAdvice, PROT.Advice);
uProtInternal = PROT.Internal;
2004-11-03 20:48:45 +00:00
iProtEfficiency = PROT.Efficiency;
iFoundProt = TRUE;
} else
precno++;
}
fclose(pProtConfig);
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
if (iProt == 13) {
free(temp);
return;
} else {
if (!iFoundProt) {
Enter(2);
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(265));
2004-11-03 20:48:45 +00:00
Enter(2);
/* Loop for new attempt */
} else {
Setup(exitinfo.sProtocol, sProtName);
Enter(1);
/* Protocol now set to: */
2005-08-20 12:27:08 +00:00
pout(LIGHTGREEN, BLACK, (char *) Language(266));
2004-11-03 20:48:45 +00:00
PUTSTR(sProtName);
Enter(2);
Pause();
break;
}
}
}
Syslog('+', "New protocol %s", sProtName);
WriteExitinfo();
free(temp);
2001-08-17 05:46:24 +00:00
}
void Set_Protocol(char *Protocol)
{
2004-11-03 20:48:45 +00:00
FILE *pProtConfig;
int precno = 0;
char *temp;
2001-08-17 05:46:24 +00:00
2004-11-28 16:15:35 +00:00
memset(&sProtName, 0, sizeof(sProtName));
2004-11-03 20:48:45 +00:00
temp = calloc(PATH_MAX, sizeof(char));
2001-08-17 05:46:24 +00:00
2005-08-29 12:59:00 +00:00
snprintf(temp, PATH_MAX, "%s/etc/protocol.data", getenv("MBSE_ROOT"));
2004-11-03 20:48:45 +00:00
2004-11-28 16:15:35 +00:00
if (( pProtConfig = fopen(temp, "rb")) == NULL) {
2004-11-03 20:48:45 +00:00
WriteError("$Can't open %s", temp);
Enter(1);
/* Protocol: Can't open protocol file. */
pout(LIGHTRED, BLACK, (char *) Language(262));
Enter(2);
Pause();
free(temp);
return;
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
fread(&PROThdr, sizeof(PROThdr), 1, pProtConfig);
while (fread(&PROT, PROThdr.recsize, 1, pProtConfig) == 1) {
2004-11-28 16:15:35 +00:00
if (((strcmp(PROT.ProtName, Protocol)) == 0) && PROT.Available) {
2004-11-03 20:48:45 +00:00
strcpy(sProtName, PROT.ProtName);
strcpy(sProtUp, PROT.ProtUp);
strcpy(sProtDn, PROT.ProtDn);
strcpy(sProtAdvice, PROT.Advice);
uProtInternal = PROT.Internal;
2004-11-03 20:48:45 +00:00
iProtEfficiency = PROT.Efficiency;
} else
precno++;
}
2001-08-17 05:46:24 +00:00
2004-11-03 20:48:45 +00:00
free(temp);
fclose(pProtConfig);
2001-08-17 05:46:24 +00:00
}
2003-03-02 13:29:33 +00:00
void Chg_OLR_ExtInfo()
{
ReadExitinfo();
2004-11-03 20:48:45 +00:00
Enter(2);
2003-03-02 13:29:33 +00:00
if (exitinfo.OL_ExtInfo) {
exitinfo.OL_ExtInfo = FALSE;
/* Offline Reader: Extended Info turned OFF */
2004-11-03 20:48:45 +00:00
pout(GREEN, BLACK, (char *) Language(16));
2003-03-02 13:29:33 +00:00
} else {
exitinfo.OL_ExtInfo = TRUE;
/* Offline Reader: Extended Info turned ON */
2004-11-03 20:48:45 +00:00
pout(GREEN, BLACK, (char *) Language(15));
2003-03-02 13:29:33 +00:00
}
2004-11-03 20:48:45 +00:00
Enter(2);
2003-03-02 13:29:33 +00:00
Syslog('+', "OLR Extended Info now %s", exitinfo.OL_ExtInfo?"True":"False");
sleep(2);
WriteExitinfo();
}
2004-02-24 22:09:27 +00:00
/*
* Change character set.
*/
void Chg_Charset()
{
int i;
char *temp;
temp = calloc(81, sizeof(char));
ReadExitinfo();
Syslog('+', "Old character set %s", getftnchrs(exitinfo.Charset));
2004-02-24 22:09:27 +00:00
while(TRUE) {
2004-11-03 20:48:45 +00:00
Enter(1);
2004-02-24 22:09:27 +00:00
/* Select your preferred character set */
2004-11-03 20:48:45 +00:00
pout(CFG.HiliteF, CFG.HiliteB, (char *) Language(23));
Enter(2);
2004-02-24 22:09:27 +00:00
colour(LIGHTBLUE, BLACK);
for (i = (FTNC_NONE + 1); i <= FTNC_MAXCHARS; i++) {
colour(LIGHTBLUE, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "%2d ", i);
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
2004-02-24 22:09:27 +00:00
colour(LIGHTCYAN, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "%-9s ", getftnchrs(i));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
2004-02-24 22:09:27 +00:00
colour(LIGHTMAGENTA, BLACK);
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "%s\r\n", getchrsdesc(i));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
2004-02-24 22:09:27 +00:00
}
2004-11-03 20:48:45 +00:00
Enter(1);
2004-02-24 22:09:27 +00:00
/* Select character set (Enter to Quit): */
2004-11-03 20:48:45 +00:00
pout(CFG.HiliteF, CFG.HiliteB, (char *) Language(24));
2004-02-24 22:09:27 +00:00
Getnum(temp, 2);
if (((strcmp(temp, "")) == 0) && (exitinfo.Charset != FTNC_NONE)) {
free(temp);
return;
}
i = atoi(temp);
if ((i > FTNC_NONE) && (i <= FTNC_MAXCHARS)) {
exitinfo.Charset = i;
Syslog('+', "New character set %s", getftnchrs(exitinfo.Charset));
2004-02-24 22:09:27 +00:00
WriteExitinfo();
2005-04-03 14:12:12 +00:00
setlocale(LC_CTYPE, getlocale(exitinfo.Charset));
Syslog('b', "setlocale(LC_CTYPE, NULL) returns \"%s\"", printable(setlocale(LC_CTYPE, NULL), 0));
2004-11-03 20:48:45 +00:00
Enter(2);
2004-02-24 22:09:27 +00:00
colour(LIGHTGREEN, BLACK);
/* Character set now set to: */
2005-08-29 12:59:00 +00:00
snprintf(temp, 81, "%s%s", (char *) Language(25), getftnchrs(i));
2004-11-03 20:48:45 +00:00
PUTSTR(temp);
free(temp);
Enter(2);
2004-02-24 22:09:27 +00:00
Pause();
return;
}
Enter(2);
/* Invalid selection, please try again! */
pout(LIGHTRED, BLACK, (char *) Language(265));
Enter(2);
}
}