📄 httptst1.pas
字号:
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Author: Fran鏾is PIETTE
Creation: November 23, 1997
Version: 1.15
Description: Sample program to demonstrate some of the THttpCli features.
EMail: http://www.overbyte.be http://www.rtfm.be/fpiette
francois.piette@overbyte.be francois.piette@rtfm.be
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) 1997-2005 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.
Updates:
Jan 16, 1998 V1.00 Adapted for reviced HTTP component.
Apr 13, 1998 V1.01 Call HttpCli1DocEnd when to request failed, to close the
document file in the case it is already opened.
Jul 09, 1998 V1.02 Adapted for Delphi 4
Sep 15, 1998 V1.03 Added some code to check for file creation errors (those
errors mostly comes from document names not suitable as file
names).
Added code to save form size and position and to resize it
correctly.
Sep 25, 1999 V1.04 Added display proxy setting
Aug 18, 2001 V1.05 Checked for document name before trying to display.
Wrapped document file access to a try/finally.
Checked ContentType to change document name extension according
to some content type.
Added display of copyright notice and version informations.
May 01, 2003 V1.06 Display Header checkbox added
May 09, 2003 V1.07 Implemented PUT
Jan 10, 2004 V1.08 Added code for HTTP 1.1 (Started months ago but forgot
to add it in the history).
Aug 08, 2004 V1.09 Make use of IcsUrl unit.
Sep 04, 2004 V1.10 Added option "Disable Basic Auth"
Sep 12, 2004 V1.11 Added Proxyuser and ProxyPass UI
Sep 13, 2004 V1.12 Added option "Disable NTLM Auth"
Sep 20, 2004 V1.13 Display header from OnLocationChange event
Nov 11, 2004 V1.14 Added option "Don't follow relocation"
Nov 20, 2004 V1.15 Added a cookie edit box
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
unit HttpTst1;
{$I ICSDEFS.INC}
interface
uses
WinTypes, WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms,
HttpProt, IcsUrl, WinSock, WSocket, StdCtrls, ExtCtrls, IniFiles;
const
HttpTstVersion = 115;
CopyRight : String = 'HttpTst (c) 1997-2005 Francois Piette V1.15 ';
type
THttpTestForm = class(TForm)
Panel1: TPanel;
HttpCli1: THttpCli;
URLEdit: TEdit;
DisplayMemo: TMemo;
Label1: TLabel;
Label2: TLabel;
ProxyHostEdit: TEdit;
ProxyPortEdit: TEdit;
DataEdit: TEdit;
Label3: TLabel;
DateTimeEdit: TEdit;
DocumentMemo: TMemo;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
HttpVersionComboBox: TComboBox;
Label8: TLabel;
Panel2: TPanel;
GetButton: TButton;
HeadButton: TButton;
PostButton: TButton;
AbortButton: TButton;
ParseButton: TButton;
PutButton: TButton;
CloseButton: TButton;
ClearButton: TButton;
DisplayHeaderCheckBox: TCheckBox;
Label9: TLabel;
Label10: TLabel;
PostContentTypeEdit: TEdit;
NoBasicAuthCheckBox: TCheckBox;
Label11: TLabel;
Label12: TLabel;
ProxyUserEdit: TEdit;
Label13: TLabel;
Label14: TLabel;
Label15: TLabel;
Label16: TLabel;
ProxyPassEdit: TEdit;
NoNTLMAuthCheckBox: TCheckBox;
NoRelocCheckBox: TCheckBox;
Label17: TLabel;
CookieEdit: TEdit;
Button1: TButton;
procedure GetButtonClick(Sender: TObject);
procedure HttpCli1Command(Sender: TObject; var S: String);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure FormShow(Sender: TObject);
procedure HttpCli1DocBegin(Sender: TObject);
procedure HttpCli1DocEnd(Sender: TObject);
procedure PostButtonClick(Sender: TObject);
procedure HeadButtonClick(Sender: TObject);
procedure HttpCli1RequestDone(Sender: TObject; RqType: THttpRequest;
ErrCode: Word);
procedure AbortButtonClick(Sender: TObject);
procedure Panel1Resize(Sender: TObject);
procedure ParseButtonClick(Sender: TObject);
procedure HttpCli1HeaderData(Sender: TObject);
procedure HttpCli1Cookie(Sender: TObject; const Data: String;
var Accept: Boolean);
procedure HttpCli1LocationChange(Sender: TObject);
procedure CloseButtonClick(Sender: TObject);
procedure ClearButtonClick(Sender: TObject);
procedure PutButtonClick(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
Initialized : Boolean;
DocFileName : String;
procedure SetButtonState(State : Boolean);
procedure Display(const Msg : String);
procedure PostOrPut(Request: THttpRequest);
end;
var
HttpTestForm: THttpTestForm;
implementation
{$R *.DFM}
const
IniFileName = 'httptest.ini';
SectionWindow = 'WindowMain';
KeyTop = 'Top';
KeyLeft = 'Left';
KeyWidth = 'Width';
KeyHeight = 'Height';
SectionData = 'Data';
KeyUrl = 'URL';
KeyProxyHost = 'ProxyHost';
KeyProxyPort = 'ProxyPort';
KeyProxyUser = 'ProxyUser';
KeyProxyPass = 'ProxyPass';
KeyData = 'Data';
KeyDateTime = 'DateTime';
KeyHttpVer = 'HttpVer';
KeyPostType = 'PostContentType';
KeyCookie = 'CookieToSend';
KeyDisplayHdr = 'DisplayHeader';
KeyNoBasicAuth = 'DisableBasicAuth';
KeyNoNTLMAuth = 'DisableNTLMAuth';
KeyNoReloc = 'DoNotFollowRelocation';
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
{$IFDEF VER80} { Missing functions in Delphi 1 }
function TrimRight(Str : String) : String;
var
i : Integer;
begin
i := Length(Str);
while (i > 0) and (Str[i] in [' ', #9]) 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 THttpTestForm.FormShow(Sender: TObject);
var
IniFile : TIniFile;
wsi : TWSADATA;
begin
if not Initialized then begin
Initialized := TRUE;
IniFile := TIniFile.Create(IniFileName);
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);
URLEdit.Text := IniFile.ReadString(SectionData, KeyURL, '');
ProxyHostEdit.Text := IniFile.ReadString(SectionData, KeyProxyHost, '');
ProxyPortEdit.Text := IniFile.ReadString(SectionData, KeyProxyPort, '80');
ProxyUserEdit.Text := IniFile.ReadString(SectionData, KeyProxyUser, '');
ProxyPassEdit.Text := IniFile.ReadString(SectionData, KeyProxyPass, '');
DataEdit.Text := IniFile.ReadString(SectionData, KeyData, '');
DateTimeEdit.Text := IniFile.ReadString(SectionData, KeyDateTime, '');
PostContentTypeEdit.Text := IniFile.ReadString(SectionData, KeyPostType, 'text/plain');
CookieEdit.Text := IniFile.ReadString(SectionData, KeyCookie, '');
HttpVersionComboBox.ItemIndex := IniFile.ReadInteger(SectionData, KeyHttpVer, 0);
DisplayHeaderCheckBox.Checked := Boolean(IniFile.ReadInteger(SectionData, KeyDisplayHdr, 0));
NoBasicAuthCheckBox.Checked := Boolean(IniFile.ReadInteger(SectionData, KeyNoBasicAuth, 0));
NoNTLMAuthCheckBox.Checked := Boolean(IniFile.ReadInteger(SectionData, KeyNoNTLMAuth, 0));
NoRelocCheckBox.Checked := Boolean(IniFile.ReadInteger(SectionData, KeyNoReloc, 0));
IniFile.Free;
Panel2.BevelOuter := bvNone;
{ Display version info for program and used components }
wsi := WinsockInfo;
DisplayMemo.Clear;
Display(CopyRight);
Display('Using:');
Display(' ' + WSocket.CopyRight);
Display(' ' + HttpProt.CopyRight);
Display(' Winsock:');
Display(' Version ' +
Format('%d.%d', [WinsockInfo.wHighVersion shr 8,
WinsockInfo.wHighVersion and 15]));
Display(' ' + StrPas(@wsi.szDescription));
Display(' ' + StrPas(@wsi.szSystemStatus));
{$IFNDEF VER100}
{ A bug in Delphi 3 makes lpVendorInfo invalid }
if wsi.lpVendorInfo <> nil then
Display(' ' + StrPas(wsi.lpVendorInfo));
{$ENDIF}
end;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure THttpTestForm.FormClose(Sender: TObject;
var Action: TCloseAction);
var
IniFile : TIniFile;
begin
IniFile := TIniFile.Create(IniFileName);
IniFile.WriteInteger(SectionWindow, KeyTop, Top);
IniFile.WriteInteger(SectionWindow, KeyLeft, Left);
IniFile.WriteInteger(SectionWindow, KeyWidth, Width);
IniFile.WriteInteger(SectionWindow, KeyHeight, Height);
IniFile.WriteString(SectionData, KeyURL, URLEdit.Text);
IniFile.WriteString(SectionData, KeyProxyHost, ProxyHostEdit.Text);
IniFile.WriteString(SectionData, KeyProxyPort, ProxyPortEdit.Text);
IniFile.WriteString(SectionData, KeyProxyUser, ProxyUserEdit.Text);
IniFile.WriteString(SectionData, KeyProxyPass, ProxyPassEdit.Text);
IniFile.WriteString(SectionData, KeyData, DataEdit.Text);
IniFile.WriteString(SectionData, KeyDateTime, DateTimeEdit.Text);
IniFile.WriteInteger(SectionData, KeyHttpVer, HttpVersionComboBox.ItemIndex);
IniFile.WriteString(SectionData, KeyPostType, PostContentTypeEdit.Text);
IniFile.WriteString(SectionData, KeyCookie, CookieEdit.Text);
IniFile.WriteInteger(SectionData, KeyDisplayHdr, Ord(DisplayHeaderCheckBox.Checked));
IniFile.WriteInteger(SectionData, KeyNoBasicAuth, Ord(NoBasicAuthCheckBox.Checked));
IniFile.WriteInteger(SectionData, KeyNoNTLMAuth, Ord(NoNTLMAuthCheckBox.Checked));
IniFile.WriteInteger(SectionData, KeyNoReloc, Ord(NoRelocCheckBox.Checked));
IniFile.Free;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
{ Display a message in display memo box, making sure we don't overflow it. }
procedure THttpTestForm.Display(const Msg : String);
begin
DisplayMemo.Lines.BeginUpdate;
try
if DisplayMemo.Lines.Count > 200 then begin
{ We preserve only 200 lines }
while DisplayMemo.Lines.Count > 200 do
DisplayMemo.Lines.Delete(0);
end;
DisplayMemo.Lines.Add(Msg);
finally
DisplayMemo.Lines.EndUpdate;
{ Makes last line visible }
{$IFNDEF VER80}
SendMessage(DisplayMemo.Handle, EM_SCROLLCARET, 0, 0);
{$ENDIF}
end;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure THttpTestForm.HeadButtonClick(Sender: TObject);
var
I : Integer;
begin
DisplayMemo.Clear;
DocumentMemo.Clear;
SetButtonState(FALSE);
try
if NoBasicAuthCheckBox.Checked then
HttpCli1.Options := HttpCli1.Options + [httpoNoBasicAuth]
else
HttpCli1.Options := HttpCli1.Options - [httpoNoBasicAuth];
if NoNTLMAuthCheckBox.Checked then
HttpCli1.Options := HttpCli1.Options + [httpoNoNTLMAuth]
else
HttpCli1.Options := HttpCli1.Options - [httpoNoNTLMAuth];
HttpCli1.FollowRelocation := not NoRelocCheckbox.Checked;
HttpCli1.URL := URLEdit.Text;
HttpCli1.Proxy := ProxyHostEdit.Text;
HttpCli1.ProxyPort := ProxyPortEdit.Text;
HttpCli1.Connection := 'Keep-Alive';
HttpCli1.RequestVer := '1.' +
IntToStr(HttpVersionComboBox.ItemIndex);
HttpCli1.RcvdStream := nil;
HttpCli1.Cookie := CookieEdit.Text;
if DateTimeEdit.Text <> '' then
HttpCli1.ModifiedSince := StrToDateTime(DateTimeEdit.Text)
else
HttpCli1.ModifiedSince := 0;
if HttpCli1.Proxy <> '' then
Display('Using proxy ''' + HttpCli1.Proxy + ':' +
HttpCli1.ProxyPort + '''')
else
Display('Not using proxy');
try
HttpCli1.Head;
except
Display('HEAD Failed !');
Display('StatusCode = ' + IntToStr(HttpCli1.StatusCode));
Display('ReasonPhrase = ' + HttpCli1.ReasonPhrase);
Exit;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -