/ALHttpClient.pas

http://wot-stat-utility.googlecode.com/ · Pascal · 329 lines · 255 code · 36 blank · 38 comment · 3 complexity · 1d17ce986df2660ba4cd019da7a206da MD5 · raw file

  1. unit ALHttpClient;
  2. interface
  3. uses SysUtils, Classes, ALHttpCommon;
  4. type
  5. {---------------------------------------}
  6. EALHTTPClientException = class(Exception)
  7. private
  8. FStatusCode: Integer;
  9. public
  10. constructor Create(const Msg: string; SCode: Integer = 0);
  11. constructor CreateFmt(const Msg: string; const Args: array of const; SCode: Integer = 0);
  12. property StatusCode: Integer read FStatusCode write FStatusCode;
  13. end;
  14. {-------------------------------------------}
  15. TALHTTPClientProxyParams = Class(TPersistent)
  16. Private
  17. FProxyBypass: String;
  18. FproxyServer: String;
  19. FProxyUserName: String;
  20. FProxyPassword: String;
  21. FproxyPort: integer;
  22. FOnChange: TALHTTPPropertyChangeEvent;
  23. procedure SetProxyBypass(const Value: String);
  24. procedure SetProxyPassword(const Value: String);
  25. procedure SetProxyPort(const Value: integer);
  26. procedure SetProxyServer(const Value: String);
  27. procedure SetProxyUserName(const Value: String);
  28. Procedure DoChange(propertyIndex: Integer);
  29. protected
  30. procedure AssignTo(Dest: TPersistent); override;
  31. public
  32. constructor Create; virtual;
  33. procedure Clear;
  34. published
  35. Property ProxyBypass: String read FProxyBypass write SetProxyBypass; //index 0
  36. property ProxyServer: String read FProxyServer write SetProxyServer; //index 1
  37. property ProxyPort: integer read FProxyPort write SetProxyPort default 0; //index 2
  38. property ProxyUserName: String read FProxyUserName write SetProxyUserName; //index 3
  39. property ProxyPassword: String read FProxyPassword write SetProxyPassword; //index 4
  40. property OnChange: TALHTTPPropertyChangeEvent read FOnChange write FOnChange;
  41. end;
  42. {----------------------------------------------------------------------------------------------}
  43. TAlHTTPClientRedirectEvent = procedure(sender: Tobject; const NewURL: String) of object;
  44. TALHTTPClientUploadProgressEvent = procedure(sender: Tobject; Sent: Integer; Total: Integer) of object;
  45. TALHTTPClientDownloadProgressEvent = procedure(sender: Tobject; Read: Integer; Total: Integer) of object;
  46. {-------------------------------}
  47. TALHTTPClient = class(TComponent)
  48. private
  49. FProxyParams: TALHTTPClientProxyParams;
  50. FRequestHeader: TALHTTPRequestHeader;
  51. FProtocolVersion: TALHTTPProtocolVersion;
  52. FRequestMethod: TALHTTPRequestMethod;
  53. FURL: string;
  54. FUserName: string;
  55. FPassword: string;
  56. FConnectTimeout: Integer;
  57. FSendTimeout: Integer;
  58. FReceiveTimeout: Integer;
  59. FOnUploadProgress: TALHTTPClientUploadProgressEvent;
  60. FOnDownloadProgress: TALHTTPClientDownloadProgressEvent;
  61. FOnRedirect: TAlHTTPClientRedirectEvent;
  62. FUploadBufferSize: Integer;
  63. protected
  64. procedure SetURL(const Value: string); virtual;
  65. procedure SetUsername(const NameValue: string); virtual;
  66. procedure SetPassword(const PasswordValue: string); virtual;
  67. procedure OnProxyParamsChange(sender: Tobject; Const PropertyIndex: Integer); virtual;
  68. procedure OnRequestHeaderChange(sender: Tobject; Const PropertyIndex: Integer); virtual;
  69. procedure SetUploadBufferSize(const Value: Integer); virtual;
  70. public
  71. constructor Create(Owner: TComponent); override;
  72. destructor Destroy; override;
  73. procedure Execute(const aRequestDataStream: TStream; aResponseContentStream: TStream; aResponseContentHeader: TALHTTPResponseHeader); virtual;
  74. Procedure Get(aUrl:String; aResponseContentStream: TStream; aResponseContentHeader: TALHTTPResponseHeader); overload;
  75. Function Get(aUrl:String): String; overload;
  76. published
  77. property URL: string read FURL write SetURL;
  78. property ConnectTimeout: Integer read FConnectTimeout write FConnectTimeout default 0;
  79. property SendTimeout: Integer read FSendTimeout write FSendTimeout default 0;
  80. property ReceiveTimeout: Integer read FReceiveTimeout write FReceiveTimeout default 0;
  81. property UploadBufferSize: Integer read FUploadBufferSize write SetUploadBufferSize default $8000;
  82. property ProxyParams: TALHTTPClientProxyParams read FProxyParams;
  83. property RequestHeader: TALHTTPRequestHeader read FRequestHeader;
  84. Property ProtocolVersion: TALHTTPProtocolVersion read FProtocolVersion write FProtocolVersion default HTTPpv_1_1;
  85. Property RequestMethod: TALHTTPRequestMethod read FRequestMethod write fRequestMethod default HTTPrm_get;
  86. property UserName: string read FUserName write SetUserName;
  87. property Password: string read FPassword write SetPassword;
  88. property OnUploadProgress: TALHTTPClientUploadProgressEvent read FOnUploadProgress write FOnUploadProgress;
  89. property OnDownloadProgress: TALHTTPClientDownloadProgressEvent read FonDownloadProgress write FonDownloadProgress;
  90. property OnRedirect: TAlHTTPClientRedirectEvent read FOnRedirect write FOnRedirect;
  91. end;
  92. ResourceString
  93. CALHTTPCLient_MsgInvalidURL = 'Invalid url ''%s'' - only supports ''http'' and ''https'' schemes';
  94. CALHTTPCLient_MsgInvalidHTTPRequest = 'Invalid HTTP Request: Length is 0';
  95. CALHTTPCLient_MsgEmptyURL = 'Empty URL';
  96. implementation
  97. ////////////////////////////////////////////////////////////////////////////////
  98. ////////// EALHTTPClientException //////////////////////////////////////////////
  99. ////////////////////////////////////////////////////////////////////////////////
  100. {*******************************************************************************}
  101. constructor EALHTTPClientException.Create(const Msg: string; SCode: Integer = 0);
  102. begin
  103. inherited Create(Msg);
  104. FStatusCode := SCode;
  105. end;
  106. {**************************************************************************************************************}
  107. constructor EALHTTPClientException.CreateFmt(const Msg: string; const Args: array of const; SCode: Integer = 0);
  108. begin
  109. inherited CreateFmt(Msg, Args);
  110. FStatusCode := SCode;
  111. end;
  112. ////////////////////////////////////////////////////////////////////////////////
  113. ////////// TALWinInetHTTPClient ////////////////////////////////////////////////
  114. ////////////////////////////////////////////////////////////////////////////////
  115. {**************************************************}
  116. constructor TALHTTPClient.Create(Owner: TComponent);
  117. begin
  118. inherited;
  119. FUploadBufferSize := $8000;
  120. FConnectTimeout := 0;
  121. FSendTimeout := 0;
  122. FReceiveTimeout := 0;
  123. FURL:= '';
  124. FUserName := '';
  125. FPassword := '';
  126. FOnUploadProgress := nil;
  127. FOnDownloadProgress := nil;
  128. FOnRedirect := nil;
  129. FProxyParams := TALHTTPClientProxyParams.Create;
  130. FRequestHeader := TALHTTPRequestHeader.Create(self);
  131. FRequestHeader.UserAgent := 'Mozilla/3.0 (compatible; TALHTTPClient)';
  132. FProtocolVersion := HTTPpv_1_1;
  133. FRequestMethod := HTTPrm_get;
  134. FrequestHeader.OnChange := OnRequestHeaderChange;
  135. FProxyParams.OnChange := OnProxyParamsChange;
  136. end;
  137. {*******************************}
  138. destructor TALHTTPClient.Destroy;
  139. begin
  140. FProxyParams.free;
  141. FRequestHeader.free;
  142. inherited;
  143. end;
  144. {**************************************************}
  145. procedure TALHTTPClient.SetURL(const Value: string);
  146. begin
  147. Furl := Value;
  148. end;
  149. {***********************************************************}
  150. procedure TALHTTPClient.SetUsername(const NameValue: string);
  151. begin
  152. FUserName := NameValue;
  153. end;
  154. {***************************************************************}
  155. procedure TALHTTPClient.SetPassword(const PasswordValue: string);
  156. begin
  157. FPassword := PasswordValue;
  158. end;
  159. {****************************************************************}
  160. procedure TALHTTPClient.Execute(const aRequestDataStream: TStream;
  161. aResponseContentStream: TStream;
  162. aResponseContentHeader: TALHTTPResponseHeader);
  163. begin
  164. // virtual;
  165. end;
  166. {***************************************}
  167. procedure TALHTTPClient.Get(aUrl: String;
  168. aResponseContentStream: TStream;
  169. aResponseContentHeader: TALHTTPResponseHeader);
  170. begin
  171. Url := aURL;
  172. RequestMethod := HTTPrm_get;
  173. Execute(
  174. nil,
  175. aResponseContentStream,
  176. aResponseContentHeader
  177. );
  178. end;
  179. {***********************************************}
  180. function TALHTTPClient.Get(aUrl: String): String;
  181. var aResponseContentStream: TStringStream;
  182. begin
  183. aResponseContentStream := TstringStream.Create('');
  184. try
  185. Get(
  186. aUrl,
  187. aResponseContentStream,
  188. nil
  189. );
  190. result := aResponseContentStream.DataString;
  191. finally
  192. aResponseContentStream.Free;
  193. end;
  194. end;
  195. {*****************************************************************************************}
  196. procedure TALHTTPClient.OnProxyParamsChange(sender: Tobject; Const PropertyIndex: Integer);
  197. begin
  198. //virtual
  199. end;
  200. {*******************************************************************************************}
  201. procedure TALHTTPClient.OnRequestHeaderChange(sender: Tobject; Const PropertyIndex: Integer);
  202. begin
  203. //virtual
  204. end;
  205. {****************************************************************}
  206. procedure TALHTTPClient.SetUploadBufferSize(const Value: Integer);
  207. begin
  208. If Value >= 0 then FUploadBufferSize := Value;
  209. end;
  210. ///////////////////////////////////////////////////////////////////////////////////////
  211. ////////// TALHTTPClientProxyParams ///////////////////////////////////////////////////
  212. ///////////////////////////////////////////////////////////////////////////////////////
  213. {*************************************************************}
  214. procedure TALHTTPClientProxyParams.AssignTo(Dest: TPersistent);
  215. begin
  216. if Dest is TALHTTPClientProxyParams then begin
  217. with Dest as TALHTTPClientProxyParams do begin
  218. FProxyBypass := self.FProxyBypass;
  219. FproxyServer := self.FproxyServer;
  220. FProxyUserName := self.FProxyUserName;
  221. FProxyPassword := self.FProxyPassword;
  222. FproxyPort := self.FproxyPort;
  223. end;
  224. end
  225. else inherited AssignTo(Dest);
  226. end;
  227. {***************************************}
  228. procedure TALHTTPClientProxyParams.Clear;
  229. begin
  230. FProxyBypass := '';
  231. FproxyServer := '';
  232. FProxyUserName := '';
  233. FProxyPassword := '';
  234. FproxyPort := 0;
  235. DoChange(-1);
  236. end;
  237. {******************************************}
  238. constructor TALHTTPClientProxyParams.Create;
  239. Begin
  240. inherited create;
  241. FProxyBypass := '';
  242. FproxyServer := '';
  243. FProxyUserName := '';
  244. FProxyPassword := '';
  245. FproxyPort := 0;
  246. FOnchange := nil;
  247. end;
  248. {******************************************************************}
  249. procedure TALHTTPClientProxyParams.DoChange(propertyIndex: Integer);
  250. begin
  251. if assigned(FonChange) then FonChange(Self,propertyIndex);
  252. end;
  253. {*********************************************************************}
  254. procedure TALHTTPClientProxyParams.SetProxyBypass(const Value: String);
  255. begin
  256. If (Value <> FProxyBypass) then begin
  257. FProxyBypass := Value;
  258. DoChange(0);
  259. end;
  260. end;
  261. {***********************************************************************}
  262. procedure TALHTTPClientProxyParams.SetProxyPassword(const Value: String);
  263. begin
  264. If (Value <> FProxyPassword) then begin
  265. FProxyPassword := Value;
  266. DoChange(4);
  267. end;
  268. end;
  269. {********************************************************************}
  270. procedure TALHTTPClientProxyParams.SetProxyPort(const Value: integer);
  271. begin
  272. If (Value <> FProxyPort) then begin
  273. FProxyPort := Value;
  274. DoChange(2);
  275. end;
  276. end;
  277. {*********************************************************************}
  278. procedure TALHTTPClientProxyParams.SetProxyServer(const Value: String);
  279. begin
  280. If (Value <> FProxyServer) then begin
  281. FProxyServer := Value;
  282. DoChange(1);
  283. end;
  284. end;
  285. {***********************************************************************}
  286. procedure TALHTTPClientProxyParams.SetProxyUserName(const Value: String);
  287. begin
  288. If (Value <> FProxyUserName) then begin
  289. FProxyUserName := Value;
  290. DoChange(3);
  291. end;
  292. end;
  293. end.