299 lines
8.5 KiB
ObjectPascal
299 lines
8.5 KiB
ObjectPascal
Unit bbs_Common;
|
|
|
|
{$I M_OPS.PAS}
|
|
|
|
Interface
|
|
|
|
Uses
|
|
{$IFDEF WINDOWS}
|
|
m_io_Base,
|
|
m_io_Sockets,
|
|
{$ENDIF}
|
|
{$IFDEF UNIX}
|
|
Unix,
|
|
{$ENDIF}
|
|
m_Types,
|
|
m_Strings,
|
|
m_Output,
|
|
m_Input,
|
|
m_DateTime,
|
|
m_FileIO,
|
|
BBS_Records;
|
|
|
|
// 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 ';
|
|
DateTypeStr : Array[1..4] of String[8] = ('MM/DD/YY', 'DD/MM/YY', 'YY/DD/MM', 'Ask ');
|
|
|
|
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 ShellDOS (ExecPath: String; Command: String) : LongInt;
|
|
|
|
{$IFNDEF UNIX}
|
|
Procedure UpdateStatusLine (Mode: Byte; Str: String);
|
|
Procedure ProcessSysopCommand (Cmd: Char);
|
|
{$ENDIF}
|
|
|
|
Implementation
|
|
|
|
Uses
|
|
DOS,
|
|
bbs_Core,
|
|
BBS_DataBase,
|
|
{$IFNDEF UNIX}
|
|
bbs_SysOpChat,
|
|
{$ENDIF}
|
|
bbs_cfg_UserEdit,
|
|
bbs_General,
|
|
MPL_Execute;
|
|
|
|
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;
|
|
|
|
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;
|
|
|
|
If Mask = '' Then Exit;
|
|
|
|
Bool_Search := Pos(strUpper(Mask), strUpper(Str)) > 0;
|
|
End;
|
|
|
|
Function ShellDOS (ExecPath: String; Command: String) : LongInt;
|
|
Begin
|
|
Session.SystemLog('DEBUG: In ShellOS for: (' + ExecPath + ') ' + Command);
|
|
|
|
Session.io.BufFlush;
|
|
|
|
{$IFDEF WINDOWS}
|
|
ExecInheritsHandles := True;
|
|
{$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}
|
|
Console.SetWindow (1, 1, 80, 25, False);
|
|
Console.TextAttr := 7;
|
|
Console.ClearScreen;
|
|
{$ENDIF}
|
|
|
|
{$IFDEF UNIX}
|
|
Console.SetRawMode(False);
|
|
{$ENDIF}
|
|
|
|
If ExecPath <> '' Then Begin
|
|
Session.SystemLog('DEBUG: ShellOS changing DIR to: ' + ExecPath);
|
|
|
|
DirChange(ExecPath);
|
|
End;
|
|
|
|
{$IFDEF UNIX}
|
|
Result := Shell (Command);
|
|
{$ENDIF}
|
|
|
|
{$IFDEF WINDOWS}
|
|
If Command <> '' Then Command := '/C' + Command;
|
|
|
|
Session.SystemLog('DEBUG: ShellOS EXEC' + GetEnv('COMSPEC') + ' ' + Command);
|
|
|
|
Exec (GetEnv('COMSPEC'), Command);
|
|
Result := DosExitCode;
|
|
|
|
Session.SystemLog('DEBUG: ShellOS returned: ' + strI2S(Result));
|
|
{$ENDIF}
|
|
|
|
{$IFDEF UNIX}
|
|
Console.SetRawMode(True);
|
|
{$ENDIF}
|
|
|
|
{$IFDEF WINDOWS}
|
|
Console.SetWindowTitle (WinConsoleTitle + strI2S(Session.NodeNum));
|
|
{$ENDIF}
|
|
|
|
DirChange(bbsCfg.SystemPath);
|
|
|
|
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 Console.Active Then
|
|
Session.io.LocalScreenEnable
|
|
Else
|
|
Session.io.LocalScreenDisable;
|
|
{$ENDIF}
|
|
|
|
Session.TimeOut := TimerSeconds;
|
|
End;
|
|
|
|
{$IFNDEF UNIX}
|
|
Procedure UpdateStatusLine (Mode: Byte; Str: String);
|
|
Begin
|
|
If Not bbsCfg.UseStatusBar Then Exit;
|
|
|
|
Console.SetWindow (1, 1, 80, 25, False);
|
|
|
|
Case Mode of
|
|
0 : Console.WriteXY (1, 25, bbsCfg.StatusColor3, strPadC(Str, 80, ' '));
|
|
1 : Begin
|
|
Console.WriteXY ( 1, 25, bbsCfg.StatusColor1, ' Alias ' + strRep(' ', 35) + 'Age SecLevel TimeLeft ');
|
|
Console.WriteXY ( 8, 25, bbsCfg.StatusColor2, Session.User.ThisUser.Handle + ' #' + strI2S(Session.User.ThisUser.PermIdx));
|
|
Console.WriteXY (47, 25, bbsCfg.StatusColor2, Session.User.ThisUser.Gender + '/' + strI2S(DaysAgo(Session.User.ThisUser.Birthday, 1) DIV 365));
|
|
Console.WriteXY (62, 25, bbsCfg.StatusColor2, strI2S(Session.User.ThisUser.Security));
|
|
Console.WriteXY (76, 25, bbsCfg.StatusColor2, strI2S(Session.TimeLeft));
|
|
End;
|
|
2 : Begin
|
|
Console.WriteXY ( 1, 25, bbsCfg.StatusColor1, ' Email ' + strRep(' ', 35) + ' Location ' + strRep(' ', 27) + ' ');
|
|
Console.WriteXY ( 8, 25, bbsCfg.StatusColor2, strPadR(Session.User.ThisUser.Email, 36, ' '));
|
|
Console.WriteXY (53, 25, bbsCfg.StatusColor2, strPadR(Session.User.ThisUser.City, 27, ' '));
|
|
End;
|
|
3 : Begin
|
|
Console.WriteXY ( 1, 25, bbsCfg.StatusColor1, ' IP ' + strRep(' ', 19) + ' Host ' + strRep(' ', 49) + ' ');
|
|
Console.WriteXY ( 5, 25, bbsCfg.StatusColor2, Session.UserIPInfo);
|
|
Console.WriteXY (31, 25, bbsCfg.StatusColor2, strPadR(Session.UserHostInfo, 49, ' '));
|
|
End;
|
|
4 : Begin
|
|
Console.WriteXY ( 1, 25, bbsCfg.StatusColor1, ' Flags 1 ' + strRep(' ', 35) + ' Flags 2 ');
|
|
Console.WriteXY (10, 25, bbsCfg.StatusColor2, DrawAccessFlags(Session.User.ThisUser.AF1));
|
|
Console.WriteXY (54, 25, bbsCfg.StatusColor2, DrawAccessFlags(Session.User.ThisUser.AF2));
|
|
End;
|
|
5 : Console.WriteXY (1, 25, bbsCfg.StatusColor3, ' ALTS/C Chat ALTE Edit ALTH Hangup ALT+/- Time ALTB Info ALTT Bar ALTV Screen ');
|
|
End;
|
|
|
|
Console.SetWindow (1, 1, 80, 24, False);
|
|
End;
|
|
|
|
Procedure ProcessSysopCommand (Cmd: Char);
|
|
Begin
|
|
If Not Console.Active And (Cmd <> #47) Then Exit;
|
|
|
|
Case Cmd of
|
|
{E} #18 : If (Not Session.InUserEdit) and (Session.User.UserNum <> -1) Then
|
|
Configuration_LocalUserEdit;
|
|
{T} #20 : Begin
|
|
bbsCfg.UseStatusBar := Not bbsCfg.UseStatusBar;
|
|
|
|
If Not bbsCfg.UseStatusBar Then Begin
|
|
Console.WriteXY (1, 25, 0, strRep(' ', 80));
|
|
Console.SetWindow (1, 1, 80, 25, False);
|
|
End Else
|
|
UpdateStatusLine (Session.StatusPtr, '');
|
|
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 Console.Active Then
|
|
Session.io.LocalScreenDisable
|
|
Else
|
|
Session.io.LocalScreenEnable;
|
|
{B} #48 : Begin
|
|
If Session.StatusPtr < 5 Then
|
|
Inc (Session.StatusPtr)
|
|
Else
|
|
Session.StatusPtr := 1;
|
|
|
|
UpdateStatusLine (Session.StatusPtr, '');
|
|
End;
|
|
#59..
|
|
#62 : Begin
|
|
Session.io.InMacroStr := bbsCfg.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(Session.StatusPtr, '');
|
|
End;
|
|
{-} #131: If Session.TimeLeft < 999 Then Begin
|
|
Session.SetTimeLeft(Session.TimeLeft+1);
|
|
UpdateStatusLine(Session.StatusPtr, '');
|
|
End;
|
|
End;
|
|
End;
|
|
{$ENDIF}
|
|
|
|
End.
|