-
Notifications
You must be signed in to change notification settings - Fork 182
/
HttpConnectionIndy.pas
446 lines (390 loc) · 11.7 KB
/
HttpConnectionIndy.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
unit HttpConnectionIndy;
interface
{$I DelphiRest.inc}
uses IdHTTP, HttpConnection, Classes, RestUtils, IdCompressorZLib, SysUtils,
IdSSLOpenSSL, IdStack, RestException;
type
TIdHTTP = class(idHTTP.TIdHTTP)
public
procedure Delete(AURL: string);
procedure Patch(AURL: string; ASource, AResponseContent: TStream);
end;
THttpConnectionIndy = class(TInterfacedObject, IHttpConnection)
private
FIdHttp: TIdHTTP;
FEnabledCompression: Boolean;
FVerifyCert: boolean;
procedure CancelRequest;
///
/// Delphi 2007
///
{$IFNDEF DELPHI_10TOKYO_UP}
function IdSSLIOHandlerSocketOpenSSL1VerifyPeer(Certificate: TIdX509; AOk: Boolean): Boolean;overload;
///
/// Delphi 2010 and XE
///
function IdSSLIOHandlerSocketOpenSSL1VerifyPeer(Certificate: TIdX509; AOk: Boolean; ADepth: Integer): Boolean;overload;
{$ENDIF}
///
/// Delphi XE2 and newer
///
function IdSSLIOHandlerSocketOpenSSL1VerifyPeer(Certificate: TIdX509; AOk: Boolean; ADepth, AError: Integer): Boolean;overload;
public
OnConnectionLost: THTTPConnectionLostEvent;
constructor Create;
destructor Destroy; override;
function SetAcceptTypes(AAcceptTypes: string): IHttpConnection;
function SetAcceptedLanguages(AAcceptedLanguages: string): IHttpConnection;
function SetContentTypes(AContentTypes: string): IHttpConnection;
function SetHeaders(AHeaders: TStrings): IHttpConnection;
procedure Get(AUrl: string; AResponse: TStream);
procedure Post(AUrl: string; AContent: TStream; AResponse: TStream);
procedure Put(AUrl: string; AContent: TStream; AResponse: TStream);
procedure Patch(AUrl: string; AContent: TStream; AResponse: TStream);
procedure Delete(AUrl: string; AContent: TStream; AResponse: TStream);
function GetResponseCode: Integer;
function GetResponseHeader(const Header: string): string;
function GetEnabledCompression: Boolean;
procedure SetEnabledCompression(const Value: Boolean);
procedure SetVerifyCert(const Value: boolean);
function GetVerifyCert: boolean;
function SetAsync(const Value: Boolean): IHttpConnection;
function GetOnConnectionLost: THTTPConnectionLostEvent;
procedure SetOnConnectionLost(AConnectionLostEvent: THTTPConnectionLostEvent);
function ConfigureTimeout(const ATimeOut: TTimeOut): IHttpConnection;
function ConfigureProxyCredentials(AProxyCredentials: TProxyCredentials): IHttpConnection;
function SetOnAsyncRequestProcess(const Value: TAsyncRequestProcessEvent): IHttpConnection;
end;
implementation
uses
ProxyUtils;
{ THttpConnectionIndy }
procedure THttpConnectionIndy.CancelRequest;
begin
end;
function THttpConnectionIndy.ConfigureProxyCredentials(
AProxyCredentials: TProxyCredentials): IHttpConnection;
begin
if assigned(AProxyCredentials) then
if AProxyCredentials.Informed and ProxyActive then
begin
FIdHttp.ProxyParams.BasicAuthentication := True;
FIdHttp.ProxyParams.ProxyUsername := AProxyCredentials.UserName;
FIdHttp.ProxyParams.ProxyPassword := AProxyCredentials.Password;
end;
Result := Self;
end;
function THttpConnectionIndy.ConfigureTimeout(const ATimeOut: TTimeOut): IHttpConnection;
begin
FIdHttp.ConnectTimeout := ATimeOut.ConnectTimeout;
FIdHttp.ReadTimeout := ATimeOut.ReceiveTimeout;
Result := Self;
end;
constructor THttpConnectionIndy.Create;
var
ssl: TIdSSLIOHandlerSocketOpenSSL;
ProxyServerIP: string;
begin
FIdHttp := TIdHTTP.Create(nil);
ssl := TIdSSLIOHandlerSocketOpenSSL.Create(FIdHttp);
ssl.OnVerifyPeer := IdSSLIOHandlerSocketOpenSSL1VerifyPeer;
{$if defined(DELPHI_7) or defined(DELPHI_2007) or
defined(DELPHI_2009) or defined(DELPHI_2010)}
ssl.SSLOptions.Method := sslvTLSv1;
{$ifend}
{$if defined(DELPHI_XE) or defined(DELPHI_XE2)}
ssl.SSLOptions.SSLVersions := [sslvTLSv1];
{$ifend}
{$IFDEF DELPHI_XE3_UP}
ssl.SSLOptions.SSLVersions := [sslvTLSv1,sslvTLSv1_1,sslvTLSv1_2];
{$ENDIF}
FIdHttp.IOHandler := ssl;
FIdHttp.HandleRedirects := True;
FIdHttp.Request.CustomHeaders.FoldLines := false;
if ProxyActive then
begin
ProxyServerIP := GetProxyServerIP;
if ProxyServerIP <> '' then
begin
FIdHttp.ProxyParams.ProxyServer := ProxyServerIP;
FIdHttp.ProxyParams.ProxyPort := GetProxyServerPort;
end;
end;
end;
procedure THttpConnectionIndy.Delete(AUrl: string; AContent, AResponse: TStream);
var
retryMode: THTTPRetryMode;
temp: TStringStream;
begin
try
FIdHttp.Request.Source := AContent;
FIdHttp.Delete(AUrl);
except
on E: EIdHTTPProtocolException do
begin
if Length(E.ErrorMessage) > 0 then
begin
temp := TStringStream.Create(E.ErrorMessage);
AResponse.CopyFrom(temp, temp.Size);
temp.Free;
end;
end;
on E: EIdSocketError do
begin
FIdHttp.Disconnect(false);
retryMode := hrmRaise;
if assigned(OnConnectionLost) then
OnConnectionLost(e, retryMode);
if retryMode = hrmRaise then
raise
else if retryMode = hrmRetry then
Delete(AUrl, AContent, AResponse);
end;
end;
end;
destructor THttpConnectionIndy.Destroy;
begin
FIdHttp.Free;
inherited;
end;
procedure THttpConnectionIndy.Get(AUrl: string; AResponse: TStream);
var
retryMode: THTTPRetryMode;
temp: TStringStream;
begin
try
FIdHttp.Get(AUrl, AResponse);
except
on E: EIdHTTPProtocolException do
begin
if Length(E.ErrorMessage) > 0 then
begin
temp := TStringStream.Create(E.ErrorMessage);
AResponse.CopyFrom(temp, temp.Size);
temp.Free;
end;
end;
on E: EIdSocketError do
begin
FIdHttp.Disconnect(false);
retryMode := hrmRaise;
if assigned(OnConnectionLost) then
OnConnectionLost(e, retryMode);
if retryMode = hrmRaise then
raise
else if retryMode = hrmRetry then
Get(AUrl, AResponse);
end;
end;
end;
function THttpConnectionIndy.GetEnabledCompression: Boolean;
begin
Result := FEnabledCompression;
end;
function THttpConnectionIndy.GetOnConnectionLost: THTTPConnectionLostEvent;
begin
result := OnConnectionLost;
end;
function THttpConnectionIndy.GetResponseCode: Integer;
begin
Result := FIdHttp.ResponseCode;
end;
function THttpConnectionIndy.GetResponseHeader(const Header: string): string;
begin
raise ENotSupportedException.Create('');
end;
function THttpConnectionIndy.GetVerifyCert: boolean;
begin
result := FVerifyCert;
end;
{$IFNDEF DELPHI_10TOKYO_UP}
function THttpConnectionIndy.IdSSLIOHandlerSocketOpenSSL1VerifyPeer(Certificate: TIdX509; AOk: Boolean): Boolean;
begin
Result := IdSSLIOHandlerSocketOpenSSL1VerifyPeer(Certificate, AOk, -1);
end;
function THttpConnectionIndy.IdSSLIOHandlerSocketOpenSSL1VerifyPeer(
Certificate: TIdX509; AOk: Boolean; ADepth: Integer): Boolean;
begin
Result := IdSSLIOHandlerSocketOpenSSL1VerifyPeer(Certificate, AOk, ADepth, -1);
end;
{$ENDIF}
function THttpConnectionIndy.IdSSLIOHandlerSocketOpenSSL1VerifyPeer(
Certificate: TIdX509; AOk: Boolean; ADepth, AError: Integer): Boolean;
begin
result := AOk;
if not FVerifyCert then
begin
result := True;
end;
end;
procedure THttpConnectionIndy.Patch(AUrl: string; AContent, AResponse: TStream);
var
retryMode: THTTPRetryMode;
temp: TStringStream;
begin
try
FIdHttp.Patch(AUrl, AContent, AResponse);
except
on E: EIdHTTPProtocolException do
begin
if Length(E.ErrorMessage) > 0 then
begin
temp := TStringStream.Create(E.ErrorMessage);
AResponse.CopyFrom(temp, temp.Size);
temp.Free;
end;
end;
on E: EIdSocketError do
begin
FIdHttp.Disconnect(false);
retryMode := hrmRaise;
if assigned(OnConnectionLost) then
OnConnectionLost(e, retryMode);
if retryMode = hrmRaise then
raise
else if retryMode = hrmRetry then
Patch(AUrl, AContent, AResponse);
end;
end;
end;
procedure THttpConnectionIndy.Post(AUrl: string; AContent, AResponse: TStream);
var
retryMode: THTTPRetryMode;
temp: TStringStream;
begin
try
FIdHttp.Post(AUrl, AContent, AResponse);
except
on E: EIdHTTPProtocolException do
begin
if Length(E.ErrorMessage) > 0 then
begin
temp := TStringStream.Create(E.ErrorMessage);
AResponse.CopyFrom(temp, temp.Size);
temp.Free;
end;
end;
on E: EIdSocketError do
begin
FIdHttp.Disconnect(false);
retryMode := hrmRaise;
if assigned(OnConnectionLost) then
OnConnectionLost(e, retryMode);
if retryMode = hrmRaise then
raise
else if retryMode = hrmRetry then
Post(AUrl, AContent, AResponse);
end;
end;
end;
procedure THttpConnectionIndy.Put(AUrl: string; AContent, AResponse: TStream);
var
retryMode: THTTPRetryMode;
temp: TStringStream;
begin
try
FIdHttp.Put(AUrl, AContent, AResponse);
except
on E: EIdHTTPProtocolException do
begin
if Length(E.ErrorMessage) > 0 then
begin
temp := TStringStream.Create(E.ErrorMessage);
AResponse.CopyFrom(temp, temp.Size);
temp.Free;
end;
end;
on E: EIdSocketError do
begin
FIdHttp.Disconnect(false);
retryMode := hrmRaise;
if assigned(OnConnectionLost) then
OnConnectionLost(e, retryMode);
if retryMode = hrmRaise then
raise
else if retryMode = hrmRetry then
Put(AUrl, AContent, AResponse);
end;
end;
end;
function THttpConnectionIndy.SetAcceptedLanguages(AAcceptedLanguages: string): IHttpConnection;
begin
FIdHttp.Request.AcceptLanguage := AAcceptedLanguages;
Result := Self;
end;
function THttpConnectionIndy.SetAcceptTypes(AAcceptTypes: string): IHttpConnection;
begin
FIdHttp.Request.Accept := AAcceptTypes;
Result := Self;
end;
function THttpConnectionIndy.SetAsync(const Value: Boolean): IHttpConnection;
begin
if Value then
raise ENotImplemented.Create('Async requests not implemented for Indy.');
Result := Self;
end;
function THttpConnectionIndy.SetContentTypes(AContentTypes: string): IHttpConnection;
begin
FIdHttp.Request.ContentType := AContentTypes;
Result := Self;
end;
procedure THttpConnectionIndy.SetEnabledCompression(const Value: Boolean);
begin
if (FEnabledCompression <> Value) then
begin
FEnabledCompression := Value;
if FEnabledCompression then
begin
{$IFDEF DELPHI_XE2}
{$Message Warn 'TIdCompressorZLib does not work properly in Delphi XE2. Access violation occurs.'}
{$ENDIF}
FIdHttp.Compressor := TIdCompressorZLib.Create(FIdHttp);
end
else
begin
FIdHttp.Compressor.Free;
FIdHttp.Compressor := nil;
end;
end;
end;
function THttpConnectionIndy.SetHeaders(AHeaders: TStrings): IHttpConnection;
var
i: Integer;
begin
FIdHttp.Request.Authentication.Free;
FIdHttp.Request.Authentication := nil;
FIdHttp.Request.CustomHeaders.Clear;
for i := 0 to AHeaders.Count-1 do
begin
FIdHttp.Request.CustomHeaders.AddValue(AHeaders.Names[i], AHeaders.ValueFromIndex[i]);
end;
Result := Self;
end;
function THttpConnectionIndy.SetOnAsyncRequestProcess(const Value: TAsyncRequestProcessEvent): IHttpConnection;
begin
Result := Self;
end;
procedure THttpConnectionIndy.SetOnConnectionLost(
AConnectionLostEvent: THTTPConnectionLostEvent);
begin
OnConnectionLost := AConnectionLostEvent;
end;
procedure THttpConnectionIndy.SetVerifyCert(const Value: boolean);
begin
FVerifyCert := Value;
end;
{ TIdHTTP }
procedure TIdHTTP.Delete(AURL: string);
begin
try
DoRequest(Id_HTTPMethodDelete, AURL, Request.Source, nil, []);
except
on E: EIdHTTPProtocolException do
raise EHTTPError.Create(e.Message, e.ErrorMessage, e.ErrorCode);
end;
end;
procedure TIdHTTP.Patch(AURL: string; ASource, AResponseContent: TStream);
begin
DoRequest('PATCH', AURL, ASource, AResponseContent, []);
end;
end.