-
Notifications
You must be signed in to change notification settings - Fork 33
/
HGM.Common.Download.pas
469 lines (431 loc) · 12.2 KB
/
HGM.Common.Download.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
unit HGM.Common.Download;
interface
uses
System.SysUtils, System.Classes, System.Net.HttpClient, System.JSON;
type
TDownload = class;
TOnReceive = procedure(const Sender: TObject; AContentLength: Int64; AReadCount: Int64; var Abort: Boolean) of object;
TOnFinish = procedure(const Sender: TDownload; ResponseCode: Integer) of object;
TOnReceiveRef = reference to procedure(const Sender: TDownload; AContentLength: Int64; AReadCount: Int64; var Abort: Boolean);
TOnFinishRef = reference to procedure(const Sender: TDownload; ResponseCode: Integer);
TOnFinishRefStream = reference to procedure(const Sender: TDownload; Stream: TMemoryStream; ResponseCode: Integer);
TDownload = class(TThread)
private
FHTTP: THTTPClient;
FOnReceive: TOnReceiveRef;
FOnFinish: TOnFinishRef;
FResponseCode: Integer;
FURL: string;
FFileName: string;
FLength: Integer;
FCount: Integer;
FOnFinishStream: TOnFinishRefStream;
procedure InternalOnReceive(const Sender: TObject; AContentLength: Int64; AReadCount: Int64; var Abort: Boolean);
procedure DoNotifyFinish;
procedure DoNotifyFinishStream(Stream: TMemoryStream);
procedure SetOnFinishStream(const Value: TOnFinishRefStream);
protected
procedure Execute; override;
public
constructor Create(CreateSuspended: Boolean = True); overload;
constructor CreateAndStart(const AUrl, AFileName: string; OnReceiveProc: TOnReceiveRef = nil; OnFinishProc: TOnFinishRef = nil); overload;
constructor CreateAndStart(const AUrl: string; OnReceiveProc: TOnReceiveRef = nil; OnFinishProc: TOnFinishRefStream = nil); overload;
destructor Destroy; override;
property URL: string read FURL write FURL;
property FileName: string read FFileName write FFileName;
property Length: Integer read FLength;
property Count: Integer read FCount;
property OnReceive: TOnReceiveRef read FOnReceive write FOnReceive;
property OnFinish: TOnFinishRef read FOnFinish write FOnFinish;
property OnFinishStream: TOnFinishRefStream read FOnFinishStream write SetOnFinishStream;
class function GetRequest(const URL: string): Boolean; overload;
class function Get(const URL: string; Response: TStream): Boolean; overload;
class function Get(const URL, FileName: string): Boolean; overload;
class function Get(const URL: string): TMemoryStream; overload;
class function GetText(const URL: string; var Response: string): Boolean; overload;
class function GetText(const URL: string): string; overload;
class function Post(const URL: string; Stream: TStream; Response: TStream = nil): Boolean; overload;
class function PostJson(const URL, Json: string; var Response: string): Boolean; overload;
class function PostJson(const URL, Json: string; Response: TStream): Boolean; overload;
class function PostJson(const URL: string; Json: TJsonValue; var Response: string): Boolean; overload;
class function PostJson(const URL: string; Json: TJsonValue; Response: TStream): Boolean; overload;
class function PostFile(const URL: string; const Field, FileName: TArray<string>; Stream: TArray<TStream>; Response: TStream = nil): Boolean; overload; static;
class function PostFile(const URL: string; const Field, FileName: TArray<string>; Response: TStream = nil): Boolean; overload; static;
class function PostFile(const URL: string; const FileName: string; Response: TStream = nil): Boolean; overload; static;
end;
implementation
uses
System.Net.Mime, System.Net.URLClient, System.NetConsts;
{ TDownThread }
constructor TDownload.Create(CreateSuspended: Boolean);
begin
inherited Create(CreateSuspended);
FHTTP := THTTPClient.Create;
FHTTP.OnReceiveData := InternalOnReceive;
end;
constructor TDownload.CreateAndStart(const AUrl, AFileName: string; OnReceiveProc: TOnReceiveRef; OnFinishProc: TOnFinishRef);
begin
inherited Create(False);
FreeOnTerminate := True;
FHTTP := THTTPClient.Create;
FHTTP.OnReceiveData := InternalOnReceive;
FHTTP.HandleRedirects := True;
URL := AUrl;
FileName := AFileName;
FOnFinish := OnFinishProc;
FOnReceive := OnReceiveProc;
end;
class function TDownload.Get(const URL: string; Response: TStream): Boolean;
var
HTTP: THTTPClient;
begin
Result := False;
Response.Size := 0;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
HTTP.HandleRedirects := True;
try
try
Result := (HTTP.Get(URL, Response).StatusCode = 200) and (Response.Size > 0);
Response.Position := 0;
finally
HTTP.Free;
end;
except
Result := False;
end;
end;
class function TDownload.GetRequest(const URL: string): Boolean;
var
HTTP: THTTPClient;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
HTTP.HandleRedirects := True;
try
try
Result := HTTP.Get(URL).StatusCode = 200;
finally
HTTP.Free;
end;
except
Result := False;
end;
end;
class function TDownload.GetText(const URL: string): string;
var
Stream: TStringStream;
begin
Stream := TStringStream.Create;
try
if Get(URL, Stream) then
Result := Stream.DataString;
finally
Stream.Free;
end;
end;
class function TDownload.Post(const URL: string; Stream, Response: TStream): Boolean;
var
HTTP: THTTPClient;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
try
HTTP.HandleRedirects := True;
try
if Assigned(Response) then
Result := HTTP.Post(URL, Stream, Response).StatusCode = 200
else
Result := HTTP.Post(URL, Stream).StatusCode = 200;
finally
HTTP.Free;
end;
except
Result := False;
end;
end;
class function TDownload.PostFile(const URL: string; const Field, FileName: TArray<string>; Stream: TArray<TStream>; Response: TStream): Boolean;
var
HTTP: THTTPClient;
Form: TMultipartFormData;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
Form := TMultipartFormData.Create;
try
HTTP.HandleRedirects := True;
for var i := Low(Field) to High(Field) do
Form.AddStream(Field[i], Stream[i], FileName[i]);
try
if Assigned(Response) then
Result := HTTP.Post(URL, Form, Response).StatusCode = 200
else
Result := HTTP.Post(URL, Form).StatusCode = 200;
finally
Form.Free;
HTTP.Free;
end;
except
Result := False;
end;
end;
class function TDownload.PostFile(const URL: string; const Field, FileName: TArray<string>; Response: TStream): Boolean;
var
HTTP: THTTPClient;
Form: TMultipartFormData;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
Form := TMultipartFormData.Create;
try
HTTP.HandleRedirects := True;
for var i := Low(Field) to High(Field) do
Form.AddFile(Field[i], FileName[i]);
try
if Assigned(Response) then
Result := HTTP.Post(URL, Form, Response).StatusCode = 200
else
Result := HTTP.Post(URL, Form).StatusCode = 200;
finally
Form.Free;
HTTP.Free;
end;
except
Result := False;
end;
end;
class function TDownload.PostJson(const URL: string; Json: TJsonValue; Response: TStream): Boolean;
begin
Result := PostJson(URL, Json.ToJSON, Response);
end;
class function TDownload.PostJson(const URL: string; Json: TJsonValue; var Response: string): Boolean;
begin
Result := PostJson(URL, Json.ToJSON, Response);
end;
class function TDownload.GetText(const URL: string; var Response: string): Boolean;
var
Stream: TStringStream;
begin
Result := False;
Stream := TStringStream.Create;
try
if Get(URL, Stream) then
begin
Response := Stream.DataString;
Result := True;
end;
finally
Stream.Free;
end;
end;
class function TDownload.PostJson(const URL, Json: string; Response: TStream): Boolean;
var
HTTP: THTTPClient;
Body: TStringStream;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
Body := TStringStream.Create;
try
HTTP.HandleRedirects := True;
HTTP.ContentType := 'application/json';
try
Body.WriteString(Json);
Body.Position := 0;
Result := HTTP.Post(URL, Body, Response).StatusCode = 200;
except
Result := False;
end;
finally
Body.Free;
HTTP.Free;
end;
end;
class function TDownload.PostFile(const URL, FileName: string; Response: TStream): Boolean;
var
HTTP: THTTPClient;
Body: TFileStream;
LKind: TMimeTypes.TKind;
LType: string;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
Body := TFileStream.Create(FileName, fmShareDenyWrite);
try
HTTP.HandleRedirects := True;
TMimeTypes.Default.GetFileInfo(FileName, LType, LKind);
HTTP.ContentType := LType;
try
Body.Position := 0;
Result := HTTP.Post(URL, Body, Response).StatusCode = 200;
except
Result := False;
end;
finally
Body.Free;
HTTP.Free;
end;
end;
class function TDownload.PostJson(const URL, Json: string; var Response: string): Boolean;
var
Stream: TStringStream;
begin
Stream := TStringStream.Create;
try
Result := PostJson(URL, Json, Stream);
if Result then
Response := Stream.DataString;
finally
Stream.Free;
end;
end;
class function TDownload.Get(const URL: string): TMemoryStream;
var
HTTP: THTTPClient;
begin
Result := TMemoryStream.Create;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
HTTP.HandleRedirects := True;
try
try
if (HTTP.Get(URL, Result).StatusCode = 200) and (Result.Size > 0) then
Result.Position := 0;
finally
HTTP.Free;
end;
except
//
end;
end;
class function TDownload.Get(const URL, FileName: string): Boolean;
var
HTTP: THTTPClient;
FS: TFileStream;
begin
Result := False;
if URL.IsEmpty then
Exit;
HTTP := THTTPClient.Create;
HTTP.HandleRedirects := True;
try
FS := TFileStream.Create(FileName, fmCreate or fmShareDenyNone);
try
Result := (HTTP.Get(URL, FS).StatusCode = 200) and (FS.Size > 0);
except
Result := False;
end;
FS.Free;
finally
HTTP.Free;
end;
end;
constructor TDownload.CreateAndStart(const AUrl: string; OnReceiveProc: TOnReceiveRef; OnFinishProc: TOnFinishRefStream);
begin
inherited Create(False);
FreeOnTerminate := True;
FHTTP := THTTPClient.Create;
FHTTP.OnReceiveData := InternalOnReceive;
FHTTP.HandleRedirects := True;
URL := AUrl;
FileName := '';
FOnFinishStream := OnFinishProc;
FOnReceive := OnReceiveProc;
end;
destructor TDownload.Destroy;
begin
FHTTP.Free;
inherited Destroy;
end;
procedure TDownload.Execute;
var
FS: TFileStream;
Mem: TMemoryStream;
begin
FResponseCode := -1;
if not FURL.IsEmpty then
begin
if not FileName.IsEmpty then
begin
if not FURL.IsEmpty then
begin
try
FS := TFileStream.Create(FileName, fmCreate or fmShareDenyNone);
try
FResponseCode := FHTTP.Get(FURL, FS).StatusCode;
finally
FS.Free;
end;
except
end;
end;
Synchronize(DoNotifyFinish);
end
else
begin
if not FURL.IsEmpty then
begin
try
Mem := TMemoryStream.Create;
try
FResponseCode := FHTTP.Get(FURL, Mem).StatusCode;
Mem.Position := 0;
finally
end;
except
Mem.Free;
end;
end;
TThread.Synchronize(nil,
procedure
begin
DoNotifyFinishStream(Mem);
end);
if Assigned(Mem) then
Mem.Free;
end;
end;
end;
procedure TDownload.DoNotifyFinish;
begin
if Assigned(FOnFinish) then
FOnFinish(Self, FResponseCode);
end;
procedure TDownload.DoNotifyFinishStream(Stream: TMemoryStream);
begin
if Assigned(FOnFinishStream) then
FOnFinishStream(Self, Stream, FResponseCode);
end;
procedure TDownload.InternalOnReceive(const Sender: TObject; AContentLength: Int64; AReadCount: Int64; var Abort: Boolean);
var
Cancel: Boolean;
begin
FLength := AContentLength;
FCount := AReadCount;
TThread.Synchronize(nil,
procedure
begin
if Assigned(FOnReceive) then
FOnReceive(Self, AContentLength, AReadCount, Cancel);
end);
Abort := Cancel;
end;
procedure TDownload.SetOnFinishStream(const Value: TOnFinishRefStream);
begin
FOnFinishStream := Value;
end;
end.