📄 webserv1.pas
字号:
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Author: Fran鏾is PIETTE
Creation: Oct 10, 1999
Description: WebSrv1 show how to use THttpServer component to implement
a web server. WARNING: The code below is for demonstration
only. You need to add code to fit your needs about security.
The code below allows to get all files on the computer running
the demo. Add code in OnGetDocument, OnHeadDocument and
OnPostDocument to check for authorized access to files.
Version: 1.01
EMail: francois.piette@overbyte.be http://www.overbyte.be
francois.piette@rtfm.be http://www.rtfm.be/fpiette
francois.piette@pophost.eunet.be
Support: Use the mailing list twsocket@elists.org
Follow "support" link at http://www.overbyte.be for subscription.
Legal issues: Copyright (C) 1999-2002 by Fran鏾is PIETTE
Rue de Grady 24, 4053 Embourg, Belgium. Fax: +32-4-365.74.56
<francois.piette@overbyte.be>
This software is provided 'as-is', without any express or
implied warranty. In no event will the author be held liable
for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it
and redistribute it freely, subject to the following
restrictions:
1. The origin of this software must not be misrepresented,
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
4. You must register this software by sending a picture postcard
to the author. Use a nice stamp and mention your name, street
address, EMail address and any comment you like to say.
History:
May 21, 2000 V1.01 Worked around a bug with Delphi 3 and lpVendorInfo
Oct 07, 2001 V1.02 Added Logfile feature
Added display if time and IP Addr for GET command.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
unit WebServ1;
{$I+}
interface
uses
WinTypes, WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, IniFiles, StdCtrls, ExtCtrls, WinSock, WSocket, WSocketS, HttpSrv;
const
CopyRight : String = 'WebServ (c) 1999-2001 F. Piette V1.02 ';
type
{ This component is used for client connection instead of default one. }
{ This enables to add any data we need to handle our application. }
{ As this data is located in client component, each connected client has }
{ his own private data. }
TMyHttpConnection = class(THttpConnection)
protected
FPostedDataBuffer : PChar; { Will hold dynamically allocated buffer }
FPostedDataSize : Integer; { Databuffer size }
FDataLen : Integer; { Keep track of received byte count. }
public
destructor Destroy; override;
end;
{ This is the main form for our application. Any data here is global for }
{ all clients. Put provate data in TMyHttpConnection class (see above). }
TWebServForm = class(TForm)
ToolsPanel: TPanel;
DisplayMemo: TMemo;
HttpServer1: THttpServer;
Label1: TLabel;
DocDirEdit: TEdit;
Label2: TLabel;
DefaultDocEdit: TEdit;
StartButton: TButton;
StopButton: TButton;
Label3: TLabel;
PortEdit: TEdit;
ClientCountLabel: TLabel;
Label5: TLabel;
ClearButton: TButton;
DisplayHeaderCheckBox: TCheckBox;
WriteLogFileCheckBox: TCheckBox;
procedure FormShow(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure FormCreate(Sender: TObject);
procedure HttpServer1GetDocument(Sender, Client: TObject;
var Flags: THttpGetFlag);
procedure StartButtonClick(Sender: TObject);
procedure StopButtonClick(Sender: TObject);
procedure HttpServer1ClientConnect(Sender: TObject;
Client: TObject; Error: Word);
procedure HttpServer1ClientDisconnect(Sender: TObject;
Client: TObject; Error: Word);
procedure HttpServer1ServerStarted(Sender: TObject);
procedure HttpServer1ServerStopped(Sender: TObject);
procedure HttpServer1HeadDocument(Sender, Client: TObject;
var Flags: THttpGetFlag);
procedure HttpServer1PostedData(Sender: TObject;
Client: TObject; Error: Word);
procedure HttpServer1PostDocument(Sender, Client: TObject;
var Flags: THttpGetFlag);
procedure ClearButtonClick(Sender: TObject);
procedure WriteLogFileCheckBoxClick(Sender: TObject);
private
FIniFileName : String;
FInitialized : Boolean;
FCountRequests : Integer;
FLogFile : TextFile;
FLogFileName : String;
FLogFileOpened : Boolean;
procedure CreateVirtualDocument_time_htm(Sender : TObject;
Client : TObject;
var Flags : THttpGetFlag);
procedure DisplayHeader(Client : TMyHttpConnection);
procedure ProcessPostedData_CgiFrm1(Client : TMyHttpConnection);
procedure CloseLogFile;
procedure OpenLogFile;
public
procedure Display(Msg : String);
property IniFileName : String read FIniFileName write FIniFileName;
end;
var
WebServForm: TWebServForm;
implementation
{$R *.DFM}
const
{ IniFile layout for persistent data }
SectionWindow = 'WindowMain';
KeyTop = 'Top';
KeyLeft = 'Left';
KeyWidth = 'Width';
KeyHeight = 'Height';
SectionData = 'Data';
KeyDocDir = 'DocDir';
KeyDefaultDoc = 'DefaultDoc';
KeyPort = 'Port';
KeyDisplayHeader = 'DisplayHeader';
KeyLogToFile = 'LogToFile';
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
{$IFDEF VER80}
function TrimRight(Str : String) : String;
var
i : Integer;
begin
i := Length(Str);
while (i > 0) and (Str[i] = ' ') do
i := i - 1;
Result := Copy(Str, 1, i);
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
function TrimLeft(Str : String) : String;
var
i : Integer;
begin
if Str[1] <> ' ' then
Result := Str
else begin
i := 1;
while (i <= Length(Str)) and (Str[i] = ' ') do
i := i + 1;
Result := Copy(Str, i, Length(Str) - i + 1);
end;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
function Trim(Str : String) : String;
begin
Result := TrimLeft(TrimRight(Str));
end;
{$ENDIF}
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TWebServForm.FormCreate(Sender: TObject);
begin
{ Create IniFileName based on EXE file name; }
FIniFileName := LowerCase(ExtractFileName(Application.ExeName));
FIniFileName := Copy(FIniFileName, 1, Length(FIniFileName) - 3) + 'ini';
FLogFileName := Application.ExeName;
FLogFileName := Copy(FLogFileName, 1, Length(FLogFileName) - 3) + '.log'
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TWebServForm.FormShow(Sender: TObject);
var
IniFile : TIniFile;
wsi : TWSADATA;
begin
if not FInitialized then begin
FInitialized := TRUE;
{ Restore persistent data from INI file }
IniFile := TIniFile.Create(FIniFileName);
Width := IniFile.ReadInteger(SectionWindow, KeyWidth, Width);
Height := IniFile.ReadInteger(SectionWindow, KeyHeight, Height);
Top := IniFile.ReadInteger(SectionWindow, KeyTop,
(Screen.Height - Height) div 2);
Left := IniFile.ReadInteger(SectionWindow, KeyLeft,
(Screen.Width - Width) div 2);
DocDirEdit.Text := IniFile.ReadString(SectionData, KeyDocDir,
'c:\WwwRoot');
DefaultDocEdit.Text := IniFile.ReadString(SectionData, KeyDefaultDoc,
'index.html');
PortEdit.Text := IniFile.ReadString(SectionData, KeyPort,
'80');
DisplayHeaderCheckBox.Checked :=
Boolean(IniFile.ReadInteger(SectionData, KeyDisplayHeader, 0));
WriteLogFileCheckBox.Checked :=
Boolean(IniFile.ReadInteger(SectionData, KeyLogToFile, 0));
IniFile.Destroy;
{ Start log file }
if WriteLogFileCheckBox.Checked then begin
OpenLogFile;
WriteLogFileCheckBox.Checked := FLogFileOpened;
end;
{ Initialize client count caption }
ClientCountLabel.Caption := '0';
{ Display version info for program and used components }
wsi := WinsockInfo;
DisplayMemo.Clear;
Display(CopyRight);
Display('Using:');
Display(' ' + WSocket.CopyRight);
Display(' ' + WSocketS.CopyRight);
Display(' ' + HttpSrv.CopyRight);
Display(' Winsock:');
Display(' Version ' +
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -