mysticbbs/mystic/bbs_common.pas

360 lines
9.9 KiB
ObjectPascal
Raw Normal View History

2012-02-13 16:50:48 -08:00
Unit bbs_Common;
{$I M_OPS.PAS}
Interface
Uses
{$IFDEF WINDOWS}
m_io_Base,
m_io_Sockets,
{$ENDIF}
2012-02-13 16:50:48 -08:00
{$IFDEF UNIX}
Unix,
{$ENDIF}
m_Types,
m_Strings,
m_Output,
m_Input,
m_DateTime,
m_FileIO;
2012-02-13 16:50:48 -08:00
{$I RECORDS.PAS}
// This unit is very old (like 1994) and its functions need to be phased out
// This is the stuff that hasn't been worked into a class somewhere or
// replace with MDL/FP RTL functions
Const
WinConsoleTitle = mysSoftwareID + ' Node ';
2013-03-13 20:56:42 -07:00
CopyID = 'Copyright (C) ' + mysCopyYear + ' By James Coyle';
DateTypeStr : Array[1..4] of String[8] = ('MM/DD/YY', 'DD/MM/YY', 'YY/DD/MM', 'Ask ');
2012-02-13 16:50:48 -08:00
Var
Screen : TOutput;
Input : TInput;
2012-02-13 16:50:48 -08:00
CurRoom : Byte;
ConfigFile : File of RecConfig;
ChatFile : File of ChatRec;
RoomFile : File of RoomRec;
Chat : ChatRec;
Room : RoomRec;
LastOnFile : File of RecLastOn;
LastOn : RecLastOn;
2012-02-13 16:50:48 -08:00
Config : RecConfig;
StatusPtr : Byte = 1;
2013-03-13 20:56:42 -07:00
Function DrawAccessFlags (Var Flags: AccessFlagType) : String;
Procedure KillRecord (Var dFile; RecNum: LongInt; RecSize: Word);
Procedure AddRecord (var dFile; RecNum: LongInt; RecSize: Word);
Function Bool_Search (Mask: String; Str: String) : Boolean;
Function strAddr2Str (Addr: RecEchoMailAddr) : String;
Function strStr2Addr (S : String; Var Addr: RecEchoMailAddr) : Boolean;
Function ShellDOS (ExecPath: String; Command: String) : LongInt;
2012-02-13 16:50:48 -08:00
{$IFNDEF UNIX}
Procedure UpdateStatusLine (Mode: Byte; Str: String);
Procedure ProcessSysopCommand (Cmd: Char);
2012-02-13 16:50:48 -08:00
{$ENDIF}
Implementation
Uses
DOS,
bbs_Core,
{$IFNDEF UNIX}
bbs_SysOpChat,
{$ENDIF}
bbs_cfg_UserEdit,
bbs_General,
MPL_Execute;
2013-03-13 20:56:42 -07:00
Function DrawAccessFlags (Var Flags: AccessFlagType) : String;
Var
Ch : Char;
Begin
Result := '';
For Ch := 'A' to 'Z' Do
If Ord(Ch) - 64 in Flags Then
Result := Result + Ch
Else
Result := Result + '-';
End;
2012-02-13 16:50:48 -08:00
Procedure AddRecord (var dFile; RecNum: LongInt; RecSize: Word);
Var
F : File Absolute dFile;
A : LongInt;
Buffer : Pointer;
Begin
If (RecNum < 1) or (RecNum > FileSize(F) + 1) Then Exit;
GetMem (Buffer, RecSize);
Dec (RecNum);
For A := FileSize(F) - 1 DownTo RecNum Do Begin
Seek (F, A);
BlockRead (F, Buffer^, 1);
BlockWrite (F, Buffer^, 1);
End;
Seek (F, RecNum);
FreeMem (Buffer, RecSize);
End;
Procedure KillRecord (var dFile; RecNum: LongInt; RecSize: Word);
Var
F : File Absolute dFile;
Count : LongInt;
Buffer : Pointer;
Begin
If (RecNum < 1) or (RecNum > FileSize(F)) Then Exit;
GetMem (Buffer, RecSize);
Dec (RecNum);
For Count := RecNum to FileSize(F) - 2 Do Begin
Seek (F, Count + 1);
BlockRead (F, Buffer^, 1);
Seek (F, Count);
BlockWrite (F, Buffer^, 1);
End;
Seek (F, FileSize(F) - 1);
Truncate (F);
FreeMem (Buffer, RecSize);
End;
Function Bool_Search (Mask: String; Str: String) : Boolean;
{ place holder for this functionality someday... need to pass in a buffer }
{ to search }
Begin
Bool_Search := True;
2012-06-30 17:23:39 -07:00
2012-02-13 16:50:48 -08:00
If Mask = '' Then Exit;
2012-06-30 17:23:39 -07:00
2012-02-13 16:50:48 -08:00
Bool_Search := Pos(strUpper(Mask), strUpper(Str)) > 0;
End;
Function strStr2Addr (S : String; Var Addr: RecEchoMailAddr) : Boolean;
{ converts address string to type. returns false is invalid string }
Var
A : Byte;
B : Byte;
C : Byte;
Point : Boolean;
Begin
Result := False;
Point := True;
A := Pos(':', S);
B := Pos('/', S);
C := Pos('.', S);
2013-03-04 20:49:02 -08:00
If (A = 0) or (B <= A) Then Exit;
2012-02-13 16:50:48 -08:00
If C = 0 Then Begin
Point := False;
C := Length(S) + 1;
Addr.Point := 0;
End;
Addr.Zone := strS2I(Copy(S, 1, A - 1));
Addr.Net := strS2I(Copy(S, A + 1, B - 1 - A));
Addr.Node := strS2I(Copy(S, B + 1, C - 1 - B));
If Point Then Addr.Point := strS2I(Copy(S, C + 1, Length(S)));
Result := True;
End;
Function strAddr2Str (Addr : RecEchoMailAddr) : String;
Var
Temp : String[20];
Begin
Temp := strI2S(Addr.Zone) + ':' + strI2S(Addr.Net) + '/' +
strI2S(Addr.Node);
If Addr.Point <> 0 Then Temp := Temp + '.' + strI2S(Addr.Point);
Result := Temp;
End;
Function ShellDOS (ExecPath: String; Command: String) : LongInt;
Begin
2013-05-06 10:19:01 -07:00
Session.SystemLog('DEBUG: In ShellOS for: (' + ExecPath + ') ' + Command);
2012-08-05 22:53:52 -07:00
Session.io.BufFlush;
2012-02-13 16:50:48 -08:00
{$IFDEF WINDOWS}
2012-06-30 17:23:39 -07:00
ExecInheritsHandles := True;
2012-02-13 16:50:48 -08:00
{$ENDIF}
If Session.User.UserNum <> -1 Then Begin
Reset (Session.User.UserFile);
Seek (Session.User.UserFile, Session.User.UserNum - 1);
Write (Session.User.UserFile, Session.User.ThisUser);
Close (Session.User.UserFile);
End;
{$IFNDEF UNIX}
2012-06-30 17:23:39 -07:00
Screen.SetWindow (1, 1, 80, 25, False);
Screen.TextAttr := 7;
Screen.ClearScreen;
2012-02-13 16:50:48 -08:00
{$ENDIF}
{$IFDEF UNIX}
Screen.SetRawMode(False);
{$ENDIF}
2013-05-06 10:19:01 -07:00
If ExecPath <> '' Then Begin
Session.SystemLog('DEBUG: ShellOS changing DIR to: ' + ExecPath);
DirChange(ExecPath);
End;
2012-02-13 16:50:48 -08:00
{$IFDEF UNIX}
Result := Shell (Command);
2012-02-13 16:50:48 -08:00
{$ENDIF}
{$IFDEF WINDOWS}
If Command <> '' Then Command := '/C' + Command;
2013-05-06 10:19:01 -07:00
Session.SystemLog('DEBUG: ShellOS EXEC' + GetEnv('COMSPEC') + ' ' + Command);
2012-02-13 16:50:48 -08:00
Exec (GetEnv('COMSPEC'), Command);
Result := DosExitCode;
2013-05-06 10:19:01 -07:00
Session.SystemLog('DEBUG: ShellOS returned: ' + strI2S(Result));
2012-02-13 16:50:48 -08:00
{$ENDIF}
{$IFDEF UNIX}
Screen.SetRawMode(True);
{$ENDIF}
2012-02-22 02:51:16 -08:00
{$IFDEF WINDOWS}
2012-02-13 16:50:48 -08:00
Screen.SetWindowTitle (WinConsoleTitle + strI2S(Session.NodeNum));
{$ENDIF}
2012-02-24 06:04:34 -08:00
DirChange(Config.SystemPath);
2012-02-13 16:50:48 -08:00
If Session.User.UserNum <> -1 Then Begin
Reset (Session.User.UserFile);
Seek (Session.User.UserFile, Session.User.UserNum - 1);
Read (Session.User.UserFile, Session.User.ThisUser);
Close (Session.User.UserFile);
End;
Reset (Session.PromptFile);
{$IFNDEF UNIX}
If Screen.Active Then
Session.io.LocalScreenEnable
Else
Session.io.LocalScreenDisable;
2012-02-13 16:50:48 -08:00
{$ENDIF}
2012-06-30 17:23:39 -07:00
Session.TimeOut := TimerSeconds;
2012-02-13 16:50:48 -08:00
End;
{$IFNDEF UNIX}
Procedure UpdateStatusLine (Mode: Byte; Str: String);
2012-02-13 16:50:48 -08:00
Begin
If Not Config.UseStatusBar Then Exit;
Screen.SetWindow (1, 1, 80, 25, False);
Case Mode of
2013-03-13 20:56:42 -07:00
0 : Screen.WriteXY (1, 25, Config.StatusColor3, strPadC(Str, 80, ' '));
2012-02-13 16:50:48 -08:00
1 : Begin
2013-03-13 20:56:42 -07:00
Screen.WriteXY ( 1, 25, Config.StatusColor1, ' Alias ' + strRep(' ', 35) + 'Age SecLevel TimeLeft ');
Screen.WriteXY ( 8, 25, Config.StatusColor2, Session.User.ThisUser.Handle);
Screen.WriteXY (47, 25, Config.StatusColor2, Session.User.ThisUser.Gender + '/' + strI2S(DaysAgo(Session.User.ThisUser.Birthday, 1) DIV 365));
Screen.WriteXY (62, 25, Config.StatusColor2, strI2S(Session.User.ThisUser.Security));
Screen.WriteXY (76, 25, Config.StatusColor2, strI2S(Session.TimeLeft));
2012-02-13 16:50:48 -08:00
End;
2 : Begin
2013-03-13 20:56:42 -07:00
Screen.WriteXY ( 1, 25, Config.StatusColor1, ' Email ' + strRep(' ', 35) + ' Location ' + strRep(' ', 27) + ' ');
Screen.WriteXY ( 8, 25, Config.StatusColor2, strPadR(Session.User.ThisUser.Email, 36, ' '));
Screen.WriteXY (53, 25, Config.StatusColor2, strPadR(Session.User.ThisUser.City, 27, ' '));
2012-02-13 16:50:48 -08:00
End;
3 : Begin
2013-03-13 20:56:42 -07:00
Screen.WriteXY ( 1, 25, Config.StatusColor1, ' IP ' + strRep(' ', 19) + ' Host ' + strRep(' ', 49) + ' ');
Screen.WriteXY ( 5, 25, Config.StatusColor2, Session.UserIPInfo);
Screen.WriteXY (31, 25, Config.StatusColor2, strPadR(Session.UserHostInfo, 49, ' '));
2012-02-13 16:50:48 -08:00
End;
4 : Begin
2013-03-13 20:56:42 -07:00
Screen.WriteXY ( 1, 25, Config.StatusColor1, ' Flags 1 ' + strRep(' ', 35) + ' Flags 2 ');
Screen.WriteXY (10, 25, Config.StatusColor2, DrawAccessFlags(Session.User.ThisUser.AF1));
Screen.WriteXY (54, 25, Config.StatusColor2, DrawAccessFlags(Session.User.ThisUser.AF2));
2012-02-13 16:50:48 -08:00
End;
2013-03-13 20:56:42 -07:00
5 : Screen.WriteXY (1, 25, Config.StatusColor3, ' ALTS/C Chat ALTE Edit ALTH Hangup ALT+/- Time ALTB Info ALTT Bar ALTV Screen ');
2012-02-13 16:50:48 -08:00
End;
Screen.SetWindow (1, 1, 80, 24, False);
End;
Procedure ProcessSysopCommand (Cmd: Char);
2012-02-13 16:50:48 -08:00
Begin
If Not Screen.Active And (Cmd <> #47) Then Exit;
Case Cmd of
2012-03-17 11:11:50 -07:00
{E} #18 : If (Not Session.InUserEdit) and (Session.User.UserNum <> -1) Then
Configuration_LocalUserEdit;
2012-02-13 16:50:48 -08:00
{T} #20 : Begin
Config.UseStatusBar := Not Config.UseStatusBar;
If Not Config.UseStatusBar Then Begin
Screen.WriteXY (1, 25, 0, strRep(' ', 80));
Screen.SetWindow (1, 1, 80, 25, False);
End Else
UpdateStatusLine (StatusPtr, '');
2012-02-13 16:50:48 -08:00
End;
{S} #31 : If Not Session.User.InChat Then OpenChat(True);
{H} #35 : Begin
Session.SystemLog('SysOp hungup on user.');
Halt(0);
End;
{C} #46 : If Not Session.User.InChat Then OpenChat(False);
{V} #47 : If Screen.Active Then
Session.io.LocalScreenDisable
Else
Session.io.LocalScreenEnable;
{B} #48 : Begin
2013-03-13 20:56:42 -07:00
If StatusPtr < 5 Then
2012-02-13 16:50:48 -08:00
Inc (StatusPtr)
Else
StatusPtr := 1;
UpdateStatusLine (StatusPtr, '');
2012-02-13 16:50:48 -08:00
End;
#59..
#62 : Begin
Session.io.InMacroStr := Config.SysopMacro[Ord(Cmd) - 58];
If Session.io.InMacroStr[1] = '!' Then
ExecuteMPL (NIL, Copy(Session.io.InMacroStr, 2, 255))
Else Begin
Session.io.InMacroPos := 1;
Session.io.InMacro := Session.io.InMacroStr <> '';
End;
End;
{+} #130: If Session.TimeLeft > 1 Then Begin
Session.SetTimeLeft(Session.TimeLeft-1);
UpdateStatusLine(StatusPtr, '');
2012-02-13 16:50:48 -08:00
End;
{-} #131: If Session.TimeLeft < 999 Then Begin
Session.SetTimeLeft(Session.TimeLeft+1);
UpdateStatusLine(StatusPtr, '');
2012-02-13 16:50:48 -08:00
End;
End;
End;
{$ENDIF}
End.