-
Notifications
You must be signed in to change notification settings - Fork 2
/
EndPointClient.pas
248 lines (229 loc) · 6.99 KB
/
EndPointClient.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
{*******************************************************}
{ }
{ Copyright(c) 2003-2018 Oamaru Group , Inc. }
{ }
{ Copyright and license exceptions noted in source }
{ }
{ Non Commerical Use Permitted }
{*******************************************************}
unit EndPointClient;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdHTTP, IdSSL, IdSSLOpenSSL,
IdSSLOpenSSLHeaders, IdIOHandler, IdIOHandlerSocket, IdIOHandlerStack;
type
TEndpointClient = class
protected
{ Protected declarations }
FEndpointURL: String;
FHttp: TIdHTTP;
FResponseCode: Integer;
FResponseText: String;
FFullURL: String;
FHandler: TIdSSLIOHandlerSocketOpenSSL;
public
{ Public declarations }
constructor Create(AEndpointURL: String; APort: WORD; AUserName, APAssword: String; AResource: String); virtual;
destructor Destroy; override;
function Head: Integer; overload;
function Head(AResource: String): Integer; overload;
function Get: String; overload;
function Get(AResource: String): String; overload;
function Put(AContents: String): String; overload;
function Put(AResource: String; AContents: String): String; overload;
procedure Post(AContents: String); overload;
procedure Post(AResource: String; AContents: String); overload;
function Delete: String; overload;
function Delete(AResource: String): String; overload;
property ResponseCode: Integer read FResponseCode;
property ResponseText: String read FResponseText;
property StatusCode: Integer read FResponseCode;
property StatusText: String read FResponseText;
property FullURL: String read FFullURl;
end;
implementation
constructor TEndpointClient.Create(AEndpointURL: String; APort: WORD; AUserName, APassword: String; AResource: String);
begin
FHandler := nil;
FHttp := TIdHTTP.Create(nil);
if not String.IsNullorWhiteSpace(AUserName) then
begin
FHttp.Request.Username := AUserName;
FHttp.Request.Password := APassword;
FHttp.Request.BasicAuthentication:= TRUE;
FHandler := TIdSSLIOHandlerSocketOpenSSL.Create(nil);
FHttp.IOHandler := FHandler;
FHandler.SSLOptions.SSLVersions := [sslvTLSv1_2];
FHandler.SSLOptions.Method := sslvTLSv1_2;
end;
FEndpointURL := String.Format('%s:%d', [AEndpointURL, APort]);
FFullURL := String.Format('%s/%s', [FEndpointURL, AResource]);
end;
destructor TEndpointClient.Destroy;
begin
FHttp.Free;
if Assigned(FHandler) then
FHandler.Free;
inherited Destroy;
end;
function TEndpointClient.Head: Integer;
begin
FResponseText := String.Empty;
try
FHttp.Head(FFullURL);
except
end;
FResponseCode := FHttp.ResponseCode;
Result := FResponseCode;
FResponseText := FHttp.ResponseText;
end;
function TEndpointClient.Head(AResource: String): Integer;
begin
FResponseText := String.Empty;
try
FHttp.Head(String.Format('%s/%s', [FEndpointURL, AResource]));
except
end;
FResponseCode := FHttp.ResponseCode;
Result := FResponseCode;
FResponseText := FHttp.ResponseText;
end;
function TEndpointClient.Get: String;
begin
FResponseText := String.Empty;
try
Result := FHttp.Get(FFullURL);
except
on E:Exception do
begin
Result := String.Format('%s', [E.Message]);
end;
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
function TEndpointClient.Get(AResource: String): String;
begin
FResponseText := String.Empty;
try
Result := FHttp.Get(String.Format('%s/%s', [FEndpointURL, AResource]));
except
on E:Exception do
begin
Result := String.Format('%s', [E.Message]);
end;
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
function TEndpointClient.Put(AContents: String): String;
var
LStream: TStringStream;
begin
FResponseText := String.Empty;
try
LStream := TStringStream.Create(AContents);
try
FHttp.Request.Accept := 'application/json';
FHttp.Request.ContentType := 'application/json';
Result := FHttp.Put(FFullURL, LStream);
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
EXIT;
finally
LStream.Free;
end;
except
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
LStream := TStringStream.Create;
try
LStream.CopyFrom(FHttp.Response.ContentStream,FHttp.Response.ContentStream.Size );
Result := LStream.DataString;
finally
LStream.Free;
end;
end;
function TEndpointClient.Put(AResource: String; AContents: String): String;
var
LStream: TStringStream;
begin
FResponseText := String.Empty;
try
LStream := TStringStream.Create(AContents);
try
FHttp.Request.Accept := 'application/json';
FHttp.Request.ContentType := 'application/json';
FHttp.Put(String.Format('%s/%s', [FEndpointURL, AResource]), LStream);
finally
LStream.Free;
end;
except
//Do not throw
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
procedure TEndpointClient.Post(AContents: String);
var
LStream: TStringStream;
begin
FResponseText := String.Empty;
try
LStream := TStringStream.Create(AContents);
try
FHttp.Request.ContentType := 'application/json';
FHttp.Post(FFullURL, LStream);
finally
LStream.Free;
end;
except
//Do not throw
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
procedure TEndpointClient.Post(AResource: String; AContents: String);
var
LStream: TStringStream;
begin
FResponseText := String.Empty;
try
LStream := TStringStream.Create(AContents);
try
FHttp.Request.ContentType := 'application/json';
FHttp.Post(String.Format('%s/%s', [FEndpointURL, AResource]), LStream);
finally
LStream.Free;
end;
except
//Do not throw
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
function TEndpointClient.Delete: String;
begin
FResponseText := String.Empty;
try
Result := FHttp.Delete(FFullURL);
except
//Do not throw
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
function TEndpointClient.Delete(AResource: String): String;
begin
FResponseText := String.Empty;
try
Result := FHttp.Delete(String.Format('%s/%s', [FEndpointURL, AResource]));
except
//Do not throw
end;
FResponseCode := FHttp.ResponseCode;
FResponseText := FHttp.ResponseText;
end;
end.