forked from ricardoelices/TGBotLazarus
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtgsynapsehttpclientbroker.pas
More file actions
421 lines (373 loc) · 12 KB
/
tgsynapsehttpclientbroker.pas
File metadata and controls
421 lines (373 loc) · 12 KB
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
unit tgsynapsehttpclientbroker;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, tgbasehttpclient, httpsend;
type
{ TSynapseHTTPClient }
TSynapseHTTPClient = class(TBaseHTTPClient)
private
FHTTPClient: THTTPSend;
FRequestBody: TStream;
FRequestHeaders: TStrings;
FResponseHeaders: TStrings;
protected
procedure BeforeRequest;
function GetAllowRedirect: Boolean; override;
function GetCookies: TStrings; override;
function GetHTTPProxyHost: String; override;
function GetHTTPProxyPassword: String; override;
function GetHTTPProxyPort: Word; override;
function GetHTTPProxyUsername: String; override;
function GetInternalHTTPClient: TObject; override;
function GetIOTimeout: Integer; override;
function GetRequestBody: TStream; override;
function GetRequestHeaders: TStrings; override;
function GetResponseHeaders: TStrings; override;
function GetResponseStatusCode: Integer; override;
function GetResponseStatusText: String; override;
procedure SetAllowRedirect({%H-}AValue: Boolean); override;
procedure SetCookies(AValue: TStrings); override;
procedure SetHTTPProxyHost(AValue: String); override;
procedure SetHTTPProxyPassword(AValue: String); override;
procedure SetHTTPProxyPort(AValue: Word); override;
procedure SetHTTPProxyUsername(AValue: String); override;
procedure SetIOTimeout(AValue: Integer); override;
procedure SetRequestBody(AValue: TStream); override;
procedure SetRequestHeaders(AValue: TStrings); override;
function HttpPostFile(const URL: string; FormData: TStrings; const AFieldName, AFileName: String;
InputFileData: TStream; Response: TStream): Boolean;
public
procedure AddHeader(const AHeader, AValue: String); override;
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
class function EncodeUrlElement(S: String): String; override;
procedure FileFormPost(const AURL: string; FormData: TStrings; AFieldName, AFileName: string;
const Response: TStream); override;
function FilesFormPost(const AURL: string; FormData: TStrings; const AFiles: TStrings): String; override;
function FormPost(const URL: string; FormData: TStrings): String; override;
function Get(const AUrl: String): String; override;
function Post(const URL: string): String; override;
procedure StreamFormPost(const AURL: string; FormData: TStrings; const AFieldName,
AFileName: string; const AStream: TStream; const Response: TStream); override;
end;
implementation
uses
synacode, synautil, ssl_openssl, blcksock
;
{ TSynapseHTTPClient }
procedure TSynapseHTTPClient.AddHeader(const AHeader, AValue: String);
begin
FRequestHeaders.Add(AHeader+': '+AValue);
end;
constructor TSynapseHTTPClient.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FHTTPClient:=THTTPSend.Create;
FRequestHeaders:=TStringList.Create;
FRequestHeaders.NameValueSeparator:=':';
FResponseHeaders:=TStringList.Create;
FResponseHeaders.NameValueSeparator:=':';
end;
destructor TSynapseHTTPClient.Destroy;
begin
FreeAndNil(FResponseHeaders);
FreeAndNil(FRequestHeaders);
FreeAndNil(FHTTPClient);
inherited Destroy;
end;
class function TSynapseHTTPClient.EncodeUrlElement(S: String): String;
begin
Result:=synacode.EncodeURLElement(S);
end;
procedure TSynapseHTTPClient.FileFormPost(const AURL: string; FormData: TStrings; AFieldName,
AFileName: string; const Response: TStream);
var
F: TFileStream;
begin
F:=TFileStream.Create(AFileName,fmOpenRead or fmShareDenyWrite);
try
StreamFormPost(AURL, FormData, AFieldName, ExtractFileName(AFileName), F, Response);
finally
F.Free;
end;
end;
function TSynapseHTTPClient.FilesFormPost(const AURL: string; FormData: TStrings; const AFiles: TStrings): String;
var
Bound, N, V, S, aFieldName, aFileName: string;
I: Integer;
SS: TStringStream;
F: TFileStream;
begin
BeforeRequest;
Bound := IntToHex(Random(MaxInt), 8) + '_Synapse_boundary';
SS:=TStringStream.Create('');
try
if (FormData<>Nil) then
for I:=0 to FormData.Count -1 do
begin
FormData.GetNameValue(I,N,V);
S :='--'+Bound+CRLF;
S:=S+Format('Content-Disposition: form-data; name="%s"'+CRLF+CRLF+'%s'+CRLF,[N, V]);
SS.WriteBuffer(S[1],Length(S));
end;
if (AFiles<>Nil) then
for I:=0 to AFiles.Count-1 do
begin
AFiles.GetNameValue(I,aFieldName,aFileName);
S:='--'+Bound+CRLF;
s:=s+Format('Content-Disposition: form-data; name="%s"; filename="%s"'+CRLF,
[aFieldName,ExtractFileName(aFileName)]);
s:=s+'Content-Type: application/octet-string'+CRLF+CRLF;
SS.WriteBuffer(S[1],Length(S));
F:=TFileStream.Create(aFileName,fmOpenRead or fmShareDenyWrite);
try
F.Seek(0, soFromBeginning);
SS.CopyFrom(F,F.Size);
S:=CRLF;
SS.WriteBuffer(S[1],Length(S));
finally
F.Free;
end;
end;
S:='--'+Bound+'--'+CRLF;
SS.WriteBuffer(S[1],Length(S));
FHTTPClient.Document.LoadFromStream(SS);
SS.Clear;
FHTTPClient.MimeType := 'multipart/form-data; boundary=' + Bound;
if FHTTPClient.HTTPMethod('POST', AURL) then
begin
FHTTPClient.Document.SaveToStream(SS);
Result:=SS.DataString;
FResponseHeaders.AddStrings(FHTTPClient.Headers, True);
{$IFDEF DEBUG}FResponseHeaders.SaveToFile('~ResponseHeaders.txt');{$ENDIF}
end
else
raise EHTTPClient.Create('HTTP client. '+FHTTPClient.ResultCode.ToString+' '+
FHTTPClient.ResultString);
finally
SS.Free;
end;
end;
function TSynapseHTTPClient.FormPost(const URL: string; FormData: TStrings
): String;
var
Response: TStringList;
begin
BeforeRequest;
FormData.SaveToStream(FHTTPClient.Document);
if FHTTPClient.HTTPMethod('POST', URL) then
begin
Response:=TStringList.Create;
try
Response.LoadFromStream(FHTTPClient.Document);
FResponseHeaders.AddStrings(FHTTPClient.Headers, True);
Result:=Response.Text;
{$IFDEF DEBUG}FResponseHeaders.SaveToFile('~ResponseHeaders.txt');{$ENDIF}
finally
Response.Free;
end
end
else begin
Result:=EmptyStr;
raise EHTTPClient.Create('HTTP client. '+FHTTPClient.ResultCode.ToString+' '+
FHTTPClient.ResultString);
end;
end;
function TSynapseHTTPClient.Get(const AUrl: String): String;
var
Response: TStringList;
begin
BeforeRequest;
if FHTTPClient.HTTPMethod('GET', AUrl) then
begin
Response:=TStringList.Create;
try
Response.LoadFromStream(FHTTPClient.Document);
FResponseHeaders.AddStrings(FHTTPClient.Headers, True);
Result:=Response.Text;
{$IFDEF DEBUG}FResponseHeaders.SaveToFile('~ResponseHeaders.txt');{$ENDIF}
finally
Response.Free;
end
end
else begin
Result:=EmptyStr;
raise EHTTPClient.Create('HTTP client. '+FHTTPClient.ResultCode.ToString+' '+
FHTTPClient.ResultString);
end;
end;
function TSynapseHTTPClient.Post(const URL: string): String;
var
Response: TStringList;
begin
BeforeRequest;
if Assigned(RequestBody) then
FHTTPClient.Document.LoadFromStream(RequestBody);
if FHTTPClient.HTTPMethod('POST', URL) then
begin
Response:=TStringList.Create;
try
Response.LoadFromStream(FHTTPClient.Document);
FResponseHeaders.AddStrings(FHTTPClient.Headers, True);
Result:=Response.Text;
{$IFDEF DEBUG}FResponseHeaders.SaveToFile('~ResponseHeaders.txt');{$ENDIF}
finally
Response.Free;
end
end
else begin
Result:=EmptyStr;
raise EHTTPClient.Create('HTTP client. '+FHTTPClient.ResultCode.ToString+' '+
FHTTPClient.ResultString);
end;
end;
procedure TSynapseHTTPClient.StreamFormPost(const AURL: string; FormData: TStrings;
const AFieldName, AFileName: string; const AStream: TStream; const Response: TStream);
begin
HttpPostFile(AURL, FormData, AFieldName, AFileName, AStream, Response);
end;
procedure TSynapseHTTPClient.BeforeRequest;
begin
FHTTPClient.Document.Clear;
FHTTPClient.Headers.AddStrings(FRequestHeaders, True);
FResponseHeaders.Clear;
FHTTPClient.Sock.SSL.SSLType:=LT_TLSv1_2;
end;
function TSynapseHTTPClient.{%H-}GetAllowRedirect: Boolean;
begin
{ todo }
end;
function TSynapseHTTPClient.GetCookies: TStrings;
begin
Result:=FHTTPClient.Cookies;
end;
function TSynapseHTTPClient.GetHTTPProxyHost: String;
begin
Result:=FHTTPClient.ProxyHost;
end;
function TSynapseHTTPClient.GetHTTPProxyPassword: String;
begin
Result:=FHTTPClient.ProxyPass;
end;
function TSynapseHTTPClient.GetHTTPProxyPort: Word;
begin
Result:=StrToInt(FHTTPClient.ProxyPort);
end;
function TSynapseHTTPClient.GetHTTPProxyUsername: String;
begin
Result:=FHTTPClient.ProxyUser;
end;
function TSynapseHTTPClient.GetInternalHTTPClient: TObject;
begin
Result:=FHTTPClient;
end;
function TSynapseHTTPClient.{%H-}GetIOTimeout: Integer;
begin
Result:=FHTTPClient.Timeout;
end;
function TSynapseHTTPClient.GetRequestBody: TStream;
begin
Result:=FRequestBody;
end;
function TSynapseHTTPClient.GetRequestHeaders: TStrings;
begin
Result:=FRequestHeaders;
end;
function TSynapseHTTPClient.GetResponseHeaders: TStrings;
begin
Result:=FResponseHeaders;
end;
function TSynapseHTTPClient.GetResponseStatusCode: Integer;
begin
Result:=FHTTPClient.ResultCode;
end;
function TSynapseHTTPClient.GetResponseStatusText: String;
begin
Result:=FHTTPClient.ResultString;
end;
procedure TSynapseHTTPClient.SetAllowRedirect(AValue: Boolean);
begin
{ todo }
end;
procedure TSynapseHTTPClient.SetCookies(AValue: TStrings);
begin
FHTTPClient.Cookies.Clear;
FHTTPClient.Cookies.AddStrings(AValue);
end;
procedure TSynapseHTTPClient.SetHTTPProxyHost(AValue: String);
begin
FHTTPClient.ProxyHost:=AValue;
end;
procedure TSynapseHTTPClient.SetHTTPProxyPassword(AValue: String);
begin
FHTTPClient.ProxyPass:=AValue;
end;
procedure TSynapseHTTPClient.SetHTTPProxyPort(AValue: Word);
begin
FHTTPClient.ProxyPort:=IntToStr(AValue);
end;
procedure TSynapseHTTPClient.SetHTTPProxyUsername(AValue: String);
begin
FHTTPClient.ProxyUser:=AValue;
end;
procedure TSynapseHTTPClient.SetIOTimeout(AValue: Integer);
begin
FHTTPClient.Timeout:=AValue;
end;
procedure TSynapseHTTPClient.SetRequestBody(AValue: TStream);
begin
FRequestBody:=AValue;
end;
procedure TSynapseHTTPClient.SetRequestHeaders(AValue: TStrings);
begin
FRequestHeaders.Assign(AValue);
end;
function TSynapseHTTPClient.HttpPostFile(const URL: string; FormData: TStrings; const AFieldName,
AFileName: String; InputFileData: TStream; Response: TStream): Boolean;
var
Bound, N, V, S: string;
I: Integer;
SS: TStringStream;
begin
BeforeRequest;
Bound := IntToHex(Random(MaxInt), 8) + '_Synapse_boundary';
SS:=TStringStream.Create('');
try
if (FormData<>Nil) then
for I:=0 to FormData.Count -1 do
begin
FormData.GetNameValue(I,N,V);
S :='--'+Bound+CRLF;
S:=S+Format('Content-Disposition: form-data; name="%s"'+CRLF+CRLF+'%s'+CRLF,[N, V]);
SS.WriteBuffer(S[1],Length(S));
end;
S:='--'+Bound+CRLF;
s:=s+Format('Content-Disposition: form-data; name="%s"; filename="%s"'+CRLF,[AFieldName,ExtractFileName(AFileName)]);
s:=s+'Content-Type: application/octet-string'+CRLF+CRLF;
SS.WriteBuffer(S[1],Length(S));
InputFileData.Seek(0, soFromBeginning);
SS.CopyFrom(InputFileData, InputFileData.Size);
S:=CRLF+'--'+Bound+'--'+CRLF;
SS.WriteBuffer(S[1],Length(S));
SS.Position:=0;
FHTTPClient.Document.LoadFromStream(SS);
FHTTPClient.MimeType := 'multipart/form-data; boundary=' + Bound;
Result := FHTTPClient.HTTPMethod('POST', URL);
if Result then
begin
FHTTPClient.Document.SaveToStream(Response);
FResponseHeaders.AddStrings(FHTTPClient.Headers, True);
{$IFDEF DEBUG}FResponseHeaders.SaveToFile('~ResponseHeaders.txt');{$ENDIF}
end
else
raise EHTTPClient.Create('HTTP client. '+FHTTPClient.ResultCode.ToString+' '+
FHTTPClient.ResultString);
finally
SS.Free;
end;
end;
initialization
TSynapseHTTPClient.UnregisterClientClass;
TSynapseHTTPClient.RegisterClientClass;
end.