-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRestRequest.pas
More file actions
518 lines (467 loc) · 14.3 KB
/
RestRequest.pas
File metadata and controls
518 lines (467 loc) · 14.3 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
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
{ ------------------------------------------------------------
SimpleRestRequest - A Simple, fluent interfaced REST client for
Delphi XE and up.
https://github.com/jamiei/SimpleRestClient
Licensed under the BSD-3 Open source license.
--------------------------------------------------------------}
/// <summary>
/// Contains TRestRequest - The simple, fluent wrapper around Indy's TIdHttp
/// to make writing RESTful clients easy.
/// </summary>
unit RestRequest;
interface
uses
SysUtils,
Classes,
IdHttp,
IdAuthentication,
IdMultipartFormData,
IdURI,
IdSSL,
IdSSLOpenSSL;
type
TBeforeRequest = procedure(Sender: TObject; var AHttpClient: TIdHttp) of Object;
THttpResponse = record
/// <summary>
/// The Http Response code returned
/// </summary>
ResponseCode: integer;
/// <summary>
/// The Body returned or an exception message.
/// </summary>
ResponseStr: string;
end;
TRestRequest = class(TObject)
private
FScheme: string;
FDomain: string;
FPaths: TStringList;
FParams: TStringList;
FFileParams: TStringList;
FHeaders: TStringList;
FUsername: string;
FPassword: string;
FResponse: THttpResponse;
FAccept: string;
FContentType: string;
FBeforeRequest: TBeforeRequest;
FSslHandler: TIdSSLIOHandlerSocketOpenSSL;
procedure doBeforeRequest(AHttpInst: TIdHttp);
function getHttpClientInstance: TIdHttp;
function getURLAsStr: string;
function urlEncode(str: string): string;
function doPost(aParams: TIdMultiPartFormDataStream): THttpResponse; overload;
function doPost(aParams: TStringStream): THttpResponse; overload;
function multipartRequired(aParams, aFileParams: TStringList): boolean;
function createMultiPartFormDataStreamFromStringList(strings: TStringList; aFileParams: TStringList): TIdMultiPartFormDataStream;
function createStringStreamFromStringList(strings: TStringList): TStringStream;
procedure httpAuthorisation(Sender: TObject; Authentication: TIdAuthentication; var Handled: Boolean);
function createSSLHandlerIfRequired(scheme: string; var httpClient: TIdHttp): boolean;
function getAccept: string;
procedure setAccept(const Value: string);
function getContentType: string;
procedure setContentType(const Value: string);
function GetBeforeRequest: TBeforeRequest;
procedure SetBeforeRequest(const Value: TBeforeRequest);
public
constructor Create(aIsSSL: boolean); overload;
constructor Create; overload;
destructor Destroy; override;
function Scheme(aScheme: string): TRestRequest;
function Domain(aDomain: string): TRestRequest;
function Path(aPath: string): TRestRequest;
function Param(aKey: string; aValue: string): TRestRequest;
function FileParam(aKey: string; aValue: string): TRestRequest;
function WithHeader(aName: string; aValue: string): TRestRequest;
function WithCredentials(username, password: string): TRestRequest;
property Response: THttpResponse read FResponse;
property FullUrl: string read getURLAsStr;
property Accept: string read getAccept write setAccept;
property ContentType: string read getContentType write setContentType;
property BeforeRequest: TBeforeRequest read GetBeforeRequest write SetBeforeRequest;
function Get: THttpResponse;
function Put(aParams: TStringList): THttpResponse;
function Post(aParams: TStringList): THttpResponse;
function Delete: THttpResponse;
function Options: THttpResponse;
end;
implementation
{ TRestRequest }
constructor TRestRequest.Create(aIsSSL: boolean);
const
DEFAULT_ACCEPT = 'application/json, application/xml';
DEFAULT_SCHEME = 'http';
begin
inherited Create;
Self.FPaths := TStringList.Create;
Self.FParams := TStringList.Create;
Self.FFileParams := TStringList.Create;
Self.FHeaders := TStringList.Create;
Self.FAccept := DEFAULT_ACCEPT;
Self.FScheme := DEFAULT_SCHEME;
end;
constructor TRestRequest.Create;
begin
Create(false);
end;
function TRestRequest.createMultiPartFormDataStreamFromStringList(strings: TStringList; aFileParams: TStringList): TIdMultiPartFormDataStream;
var
i: integer;
key, value: string;
begin
Result := TIdMultiPartFormDataStream.Create;
for i := 0 to strings.Count - 1 do
begin
key := strings.Names[i];
value := strings.ValueFromIndex[i];
Result.AddFormField(key, value);
end;
for i := 0 to aFileParams.Count - 1 do
begin
key := aFileParams.Names[i];
value := aFileParams.ValueFromIndex[i];
Result.AddFile(key, value);
end;
end;
function TRestRequest.createSSLHandlerIfRequired(scheme: string; var httpClient: TIdHttp): boolean;
begin
if scheme = 'https' then Self.FSslHandler := TIdSSLIOHandlerSocketOpenSSL.Create(nil);
if Assigned(Self.FSslHandler) then httpClient.IOHandler := FSslHandler;
end;
function TRestRequest.createStringStreamFromStringList(
strings: TStringList): TStringStream;
var
i: Integer;
key, value: string;
strParam: string;
begin
Result := TStringStream.Create('');
for i := 0 to strings.Count - 1 do
begin
key := strings.Names[i];
value := strings.ValueFromIndex[i];
strParam := urlEncode(key) + '=' + urlEncode(value);
if not (i = strings.Count - 1) then strParam := strParam + '&';
Result.WriteString(strParam);
end;
end;
function TRestRequest.Delete: THttpResponse;
var
httpClient: TIdHttp;
begin
httpClient := getHttpClientInstance;
try
httpClient.OnAuthorization := Self.httpAuthorisation;
try
httpClient.Delete(getURLAsStr);
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := httpClient.ResponseText;
except
on E: EIdHTTPProtocolException do
begin
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := E.Message;
end;
end;
finally
httpClient.Free;
end;
end;
destructor TRestRequest.Destroy;
begin
Self.FPaths.Free;
Self.FParams.Free;
Self.FFileParams.Free;
Self.FHeaders.Free;
if Assigned(FSslHandler) then FSslHandler.Free;
inherited;
end;
procedure TRestRequest.doBeforeRequest(AHttpInst: TIdHttp);
begin
if Assigned(FBeforeRequest) then FBeforeRequest(Self, AHttpInst);
end;
function TRestRequest.Domain(aDomain: string): TRestRequest;
begin
Self.FDomain := Trim(aDomain);
Result := Self;
end;
function TRestRequest.doPost(
aParams: TIdMultiPartFormDataStream): THttpResponse;
var
httpClient: TIdHttp;
respStr: string;
begin
httpClient := getHttpClientInstance;
try
httpClient.OnAuthorization := Self.httpAuthorisation;
try
httpClient.Request.ContentType := 'multipart/form-data';
respStr := httpClient.Post(getURLAsStr, aParams);
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := respStr;
except
on E: EIdHTTPProtocolException do
begin
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := '';
end;
end;
finally
httpClient.Free;
end;
end;
function TRestRequest.doPost(aParams: TStringStream): THttpResponse;
var
httpClient: TIdHttp;
respStr: string;
begin
httpClient := getHttpClientInstance;
try
httpClient.OnAuthorization := Self.httpAuthorisation;
try
httpClient.Request.ContentType := 'application/x-www-form-urlencoded';
respStr := httpClient.Post(getURLAsStr, aParams);
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := respStr;
except
on E: EIdHTTPProtocolException do
begin
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := '';
end;
end;
finally
httpClient.Free;
end;
end;
function TRestRequest.FileParam(aKey, aValue: string): TRestRequest;
begin
Self.FFileParams.Add(aKey + '=' + aValue);
Result := Self;
end;
function TRestRequest.Get: THttpResponse;
var
httpClient: TIdHttp;
respStr: string;
begin
httpClient := getHttpClientInstance;
try
httpClient.OnAuthorization := Self.httpAuthorisation;
try
respStr := httpClient.Get(getURLAsStr);
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := respStr;
except
on E: EIdHTTPProtocolException do
begin
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := E.Message;
end;
end;
finally
httpClient.Free;
end;
end;
function TRestRequest.getAccept: string;
begin
Result := FAccept;
end;
function TRestRequest.GetBeforeRequest: TBeforeRequest;
begin
Result := FBeforeRequest;
end;
function TRestRequest.getContentType: string;
begin
Result := FContentType;
end;
function TRestRequest.getHttpClientInstance: TIdHttp;
begin
Result := TIdHttp.Create(nil);
Result.ConnectTimeout := 5000;
Result.ReadTimeout := 5000;
Result.OnAuthorization := httpAuthorisation;
Result.MaxAuthRetries := 0;
Result.HTTPOptions := [hoInProcessAuth];
// Create an SSL Handler if we need to.
createSSLHandlerIfRequired(Self.FScheme, Result);
doBeforeRequest(Result);
Result.Request.CustomHeaders.Clear;
Result.Request.CustomHeaders.AddStrings(Self.FHeaders);
Result.Request.BasicAuthentication := true;
Result.Request.Username := Self.FUsername;
Result.Request.Password := Self.FPassword;
Result.Request.Accept := FAccept;
Result.Request.ContentType := FContentType;
end;
function TRestRequest.getURLAsStr: string;
var
aFullPath: string;
aFullParams: string;
i: integer;
begin
for i := 0 to Self.FPaths.Count - 1 do
begin
aFullPath := aFullPath + '/' + Self.FPaths.Strings[i];
end;
if Self.FParams.Count > 0 then
begin
aFullParams := '?';
for i := 0 to Self.FParams.Count - 1 do
begin
if i > 0 then aFullParams := aFullParams + '&';
aFullParams := aFullParams + Self.FParams.Names[i] + '=' + Self.FParams.ValueFromIndex[i];
end;
end;
Result := FScheme + '://' + FDomain + aFullPath + aFullParams;
end;
procedure TRestRequest.httpAuthorisation(Sender: TObject;
Authentication: TIdAuthentication; var Handled: Boolean);
begin
Authentication.Username := Self.FUsername;
Authentication.Password := Self.FPassword;
Handled := true;
end;
function TRestRequest.multipartRequired(aParams,
aFileParams: TStringList): boolean;
begin
Result := false;
if aFileParams.Count > 0 then
begin
Result := true;
end;
end;
function TRestRequest.Options: THttpResponse;
var
httpClient: TIdHttp;
respStr: string;
begin
httpClient := getHttpClientInstance;
try
httpClient.OnAuthorization := Self.httpAuthorisation;
try
httpClient.Options(Self.FullUrl);
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := httpClient.ResponseText;
except
on E: EIdHTTPProtocolException do
begin
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := E.Message;
end;
end;
finally
httpClient.Free;
end;
end;
function TRestRequest.Param(aKey, aValue: string): TRestRequest;
begin
Self.FParams.Add(aKey + '=' + aValue);
Result := Self;
end;
function TRestRequest.Path(aPath: string): TRestRequest;
begin
Self.FPaths.Append(aPath);
Result := Self;
end;
function TRestRequest.Post(aParams: TStringList): THttpResponse;
var
aParamStream: TStringStream;
aParamMulti: TIdMultiPartFormDataStream;
begin
if not Self.multipartRequired(aParams, FFileParams) then
begin
aParamStream := Self.createStringStreamFromStringList(aParams);
try
Result := doPost(aParamStream);
finally
aParamStream.Free;
end;
end
else
begin
aParamMulti := Self.createMultiPartFormDataStreamFromStringList(aParams, FFileParams);
try
Result := doPost(aParamMulti);
finally
aParamMulti.Free;
end;
end;
end;
function TRestRequest.Put(aParams: TStringList): THttpResponse;
var
httpClient: TIdHttp;
params: TStringStream;
respStr: string;
begin
httpClient := getHttpClientInstance;
try
httpClient.OnAuthorization := Self.httpAuthorisation;
try
params := createStringStreamFromStringList(aParams);
httpClient.Request.ContentType := 'application/x-www-form-urlencoded';
try
respStr := httpClient.Put(getURLAsStr, params);
finally
params.Free;
end;
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := respStr;
except
on E: EIdHTTPProtocolException do
begin
Result.ResponseCode := httpClient.ResponseCode;
Result.ResponseStr := '';
end;
end;
finally
httpClient.Free;
end;
end;
procedure TRestRequest.setAccept(const Value: string);
begin
FAccept := value;
end;
procedure TRestRequest.SetBeforeRequest(const Value: TBeforeRequest);
begin
FBeforeRequest := value;
end;
procedure TRestRequest.setContentType(const Value: string);
begin
FContentType := Value;
end;
function TRestRequest.Scheme(aScheme: string): TRestRequest;
begin
Self.FScheme := Trim(aScheme);
Result := Self;
end;
function TRestRequest.urlEncode(str: string): string;
var
i: Integer;
const
UnsafeChars = ['*', '#', '%', '<', '>', ' ','[',']']; {do not localize}
begin
Result := ''; {Do not Localize}
for i := 1 to Length(str) do
begin
if (str[i] in UnsafeChars) or (not (ord(str[i])in [33..128])) then
begin {do not localize}
Result := Result + '%' + IntToHex(Ord(str[i]), 2); {do not localize}
end
else
begin
Result := Result + str[i];
end;
end;
end;
function TRestRequest.WithCredentials(username, password: string): TRestRequest;
begin
Self.FUsername := username;
Self.FPassword := password;
Result := Self;
end;
function TRestRequest.WithHeader(aName, aValue: string): TRestRequest;
begin
Self.FHeaders.Add(aName + ':' + aValue);
Result := Self;
end;
end.