-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMiniREST.mORMot.pas
391 lines (347 loc) · 10.7 KB
/
MiniREST.mORMot.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
unit MiniREST.mORMot;
interface
uses Classes, MiniREST.Intf, MiniREST.Common, MiniREST.Server.Base, SynCrtSock,
SysUtils, IdHeaderList, IdGlobalProtocols, IdGlobal, IdURI;
type
TMiniRESTServermORMot = class(TMiniRESTServerBase)
private
FServer: THttpApiServer;
FPort: Integer;
function Process(Ctxt: THttpServerRequest): cardinal;
public
constructor Create;
function Start: Boolean; override;
function Stop: Boolean; override;
function GetPort: Integer; override;
procedure SetPort(APort: Integer); override;
end;
TMiniRESTActionContextmORMot = class(TInterfacedObject, IMiniRESTActionContext)
private
FRequest: THttpServerRequest;
FActionInfo: IMiniRESTActionInfo;
FResponseStatusCode: Integer;
FHeaders: TIdHeaderList;
FParams: TStringList;
FParamsLoaded: Boolean;
FResponseContentType: TMiniRESTResponseType;
procedure DecodeAndSetParams;
public
constructor Create(ARequest: THttpServerRequest);
destructor Destroy; override;
procedure AppendHeader(AName: string; AValue: string);
function GetActionInfo: IMiniRESTActionInfo;
function GetAuthToken: string;
function GetCommandType: TMiniRESTRequestMethod;
function GetHeader(AName: string): string;
function GetPathVariable(AVariable: string): string;
function GetQueryParam(AQueryParam: string): IMiniRESTQueryParam;
function GetQueryParams: System.TArray<MiniREST.Intf.IMiniRESTQueryParam>;
function GetRequestContentAsString: string;
function GetURI: string;
procedure SendRedirect(ALocation: string);
procedure ServeFile(AFilePath: string);
procedure SetActionInfo(AActionInfo: IMiniRESTActionInfo);
procedure SetHeader(AName: string; AValue: string);
procedure SetResponseStream(AStream: TStream);
function GetResponseContent: string;
procedure SetResponseContent(const AContent: string);
function GetResponseContentType: TMiniRESTResponseType;
procedure SetResponseContentType(const AContentType: TMiniRESTResponseType);
function GetResponseStatusCode: Integer;
procedure SetResponseStatusCode(const AStatusCode: Integer);
end;
TMiniRESTQueryParammORMot = class(TMiniRESTQueryParamBase)
end;
implementation
uses StrUtils, MiniREST.Util;
{ TMiniRESTServermORMot }
function SockStringToString(const ASockString: SockString): string;
begin
Result := string(ASockString);
end;
function StringToSockString(const AString: string): SockString;
begin
Result := SockString(AString);
end;
constructor TMiniRESTServermORMot.Create;
begin
inherited;
FServer := THttpApiServer.Create(True);
FPort := 8090;
// FServer.RegisterCompress(CompressDeflate); // our server will deflate html :)
FServer.OnRequest := Process;
FServer.Clone(31); // will use a thread pool of 32 threads in total
end;
{function IdemPChar(p, up: pAnsiChar): boolean;
// if the beginning of p^ is same as up^ (ignore case - up^ must be already Upper)
var c: AnsiChar;
begin
result := false;
if p=nil then
exit;
if (up<>nil) and (up^<>#0) then
repeat
c := p^;
if up^<>c then
if c in ['a'..'z'] then begin
dec(c,32);
if up^<>c then
exit;
end else exit;
inc(up);
inc(p);
until up^=#0;
result := true;
end;
function GetHeaderValue(var headers: SockString; const upname: SockString;
deleteInHeaders: boolean): SockString;
var i,j,k: integer;
begin
result := '';
if (headers='') or (upname='') then
exit;
i := 1;
repeat
k := length(headers)+1;
for j := i to k-1 do
if headers[j]<' ' then begin
k := j;
break;
end;
if IdemPChar(@headers[i],pointer(upname)) then begin
j := i;
inc(i,length(upname));
while headers[i]=' ' do inc(i);
result := copy(headers,i,k-i);
if deleteInHeaders then begin
while true do
if (headers[k]=#0) or (headers[k]>=' ') then
break else
inc(k);
delete(headers,j,k-j);
end;
exit;
end;
i := k;
while headers[i]<' ' do
if headers[i]=#0 then
exit else
inc(i);
until false;
end;}
function TMiniRESTServermORMot.GetPort: Integer;
begin
Result := FPort;
end;
function TMiniRESTServermORMot.Process(Ctxt: THttpServerRequest): cardinal;
var
LContext: IMiniRESTActionContext;
begin
LContext := TMiniRESTActionContextmORMot.Create(Ctxt);
FindController(LContext);
Result := LContext.GetResponseStatusCode;
end;
procedure TMiniRESTServermORMot.SetPort(APort: Integer);
begin
FPort := APort;
end;
function TMiniRESTServermORMot.Start: Boolean;
begin
if FServer.Started then
FServer.Shutdown;
FServer.RemoveUrl(StringToSockString(''), StringToSockString(IntToStr(GetPort)));
FServer.AddUrl(StringToSockString(''), StringToSockString(IntToStr(GetPort)), false, StringToSockString('+'),true);
Result := True;
end;
function TMiniRESTServermORMot.Stop: Boolean;
begin
FServer.Shutdown;
Result := True;
end;
{ TMiniRESTActionContextmORMot }
procedure TMiniRESTActionContextmORMot.AppendHeader(AName, AValue: string);
begin
FHeaders.Text := SockStringToString(FRequest.OutCustomHeaders);
FHeaders.AddValue(AName, AValue);
FRequest.OutCustomHeaders := StringToSockString(FHeaders.Text);
end;
constructor TMiniRESTActionContextmORMot.Create(ARequest: THttpServerRequest);
begin
FRequest := ARequest;
FHeaders := TIdHeaderList.Create(QuoteHTTP);
FHeaders.FoldLines := True;
FHeaders.UnfoldLines := True;
FParams := TStringList.Create;
FParamsLoaded := False;
SetResponseStatusCode(200);
end;
function TMiniRESTActionContextmORMot.GetActionInfo: IMiniRESTActionInfo;
begin
Result := FActionInfo;
end;
function TMiniRESTActionContextmORMot.GetAuthToken: string;
begin
Result := GetHeader('MRestToken');
end;
function TMiniRESTActionContextmORMot.GetCommandType: TMiniRESTRequestMethod;
begin
if FRequest.Method = 'GET' then
Result := rmGet
else
if FRequest.Method = 'POST' then
Result := rmPost
else
if FRequest.Method = 'DELETE' then
Result := rmDelete
else
if FRequest.Method = 'PUT' then
Result := rmPut
else
if FRequest.Method = 'OPTIONS' then
Result := rmOptions
else
raise Exception.Create('Não implementado');
end;
function TMiniRESTActionContextmORMot.GetHeader(AName: string): string;
begin
FHeaders.Text := SockStringToString(FRequest.InHeaders);
Result := FHeaders.Values[AName];
end;
function TMiniRESTActionContextmORMot.GetPathVariable(AVariable: string): string;
begin
Result := TMiniRESTUtil.GetPathVariable(AVariable, SockStringToString(FRequest.URL), Self);
end;
function TMiniRESTActionContextmORMot.GetQueryParam(AQueryParam: string): IMiniRESTQueryParam;
begin
if not FParamsLoaded then
DecodeAndSetParams;
Result := nil;
if FParams.IndexOfName(AQueryParam) > -1 then
Result := TMiniRESTQueryParammORMot.Create(AQueryParam, FParams.Values[AQueryParam]);
end;
function TMiniRESTActionContextmORMot.GetQueryParams: System.TArray<MiniREST.Intf.IMiniRESTQueryParam>;
var I : Integer;
begin
if not FParamsLoaded then
DecodeAndSetParams;
SetLength(Result, 0);
for I := 0 to FParams.Count - 1 do
begin
SetLength(Result, Length(Result) + 1);
Result[Length(Result) - 1] := TMiniRESTQueryParammORMot.Create(FParams.Names[I], FParams.ValueFromIndex[I]);
end;
end;
function TMiniRESTActionContextmORMot.GetRequestContentAsString: string;
begin
Result := SockStringToString(FRequest.InContent);
end;
function TMiniRESTActionContextmORMot.GetResponseContent: string;
begin
Result := SockStringToString(FRequest.OutContent);
end;
function TMiniRESTActionContextmORMot.GetResponseContentType: TMiniRESTResponseType;
begin
Result := FResponseContentType;
end;
function TMiniRESTActionContextmORMot.GetResponseStatusCode: Integer;
begin
Result := FResponseStatusCode;
end;
function TMiniRESTActionContextmORMot.GetURI: string;
var
LUri: TURI;
begin
LUri.From(FRequest.URL);
Result := SockStringToString(LUri.Root);
end;
procedure TMiniRESTActionContextmORMot.SendRedirect(ALocation: string);
begin
SetHeader('Location', ALocation);
SetResponseStatusCode(302);
end;
procedure TMiniRESTActionContextmORMot.ServeFile(AFilePath: string);
var
LFileName: string;
begin
LFileName := ProcessPath(ExtractFilePath(ParamStr(0)), AFilePath);
FRequest.OutContentType := HTTP_RESP_STATICFILE;
FRequest.OutContent := StringToSockString(LFileName);
end;
procedure TMiniRESTActionContextmORMot.SetActionInfo(AActionInfo: IMiniRESTActionInfo);
begin
FActionInfo := AActionInfo;
end;
procedure TMiniRESTActionContextmORMot.SetHeader(AName, AValue: string);
begin
FRequest.OutCustomHeaders := FRequest.OutCustomHeaders + #13#10 +
AName + ': ' + AValue;
end;
procedure TMiniRESTActionContextmORMot.SetResponseContent(const AContent: string);
begin
FRequest.OutContent := StringToSockString(AContent);
end;
procedure TMiniRESTActionContextmORMot.SetResponseContentType(
const AContentType: TMiniRESTResponseType);
begin
FResponseContentType := AContentType;
case AContentType of
rtTextHtml, rtApplicationJson: FRequest.OutContentType := MiniRESTResponseTypes[AContentType] + '; charset=utf-8';
end;
end;
procedure TMiniRESTActionContextmORMot.SetResponseStatusCode(const AStatusCode: Integer);
begin
FResponseStatusCode := AStatusCode;
end;
procedure TMiniRESTActionContextmORMot.SetResponseStream(AStream: TStream);
begin
raise Exception.Create('Not implemented');
end;
procedure TMiniRESTActionContextmORMot.DecodeAndSetParams;
var
i, j, posSep : Integer;
s, LCharSet, LValue: string;
LEncoding: IIdTextEncoding;
begin
// Convert special characters
// ampersand '&' separates values {Do not Localize}
FParams.BeginUpdate;
try
FParams.Clear;
{ TODO : CHANGE THIS }
FHeaders.Text := FRequest.InHeaders;
LCharSet := FHeaders.Params['Content-Type', 'charset'];
if LCharSet = '' then
LCharSet := 'utf-8';
// which charset to use for decoding query string parameters. We
// should not be using the 'Content-Type' charset for that. For
// 'application/x-www-form-urlencoded' forms, we should be, though...
posSep := Pos('?', FRequest.URL);
if posSep > 0 then
LValue := Copy(FRequest.URL, posSep + 1);
LEncoding := CharsetToEncoding(LCharSet);
i := 1;
while i <= Length(LValue) do
begin
j := i;
while (j <= Length(LValue)) and (LValue[j] <> '&') do {do not localize}
begin
Inc(j);
end;
s := Copy(LValue, i, j-i);
// See RFC 1866 section 8.2.1. TP
s := ReplaceAll(s, '+', ' '); {do not localize}
FParams.Add(TIdURI.URLDecode(s, LEncoding));
i := j + 1;
end;
finally
FParamsLoaded := True;
FParams.EndUpdate;
end;
end;
destructor TMiniRESTActionContextmORMot.Destroy;
begin
FHeaders.Free;
FParams.Free;
inherited;
end;
end.