-
-
Notifications
You must be signed in to change notification settings - Fork 369
/
Copy pathMVCFramework.Commons.pas
1399 lines (1238 loc) · 47.5 KB
/
MVCFramework.Commons.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
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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2020 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// Collaborators on this file: Ezequiel Juliano Müller ([email protected])
//
// ***************************************************************************
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// *************************************************************************** }
unit MVCFramework.Commons;
{$I dmvcframework.inc}
interface
uses
System.Classes,
System.SysUtils,
System.SyncObjs,
System.IOUtils,
Data.DB,
IdGlobal,
IdCoderMIME,
IdContext,
System.Generics.Collections,
JsonDataObjects;
{$I dmvcframeworkbuildconsts.inc}
type
TMVCHTTPMethodType = (httpGET, httpPOST, httpPUT, httpDELETE, httpHEAD, httpOPTIONS, httpPATCH,
httpTRACE);
TMVCHTTPMethods = set of TMVCHTTPMethodType;
TMVCMediaType = record
public const
APPLICATION_ATOM_XML = 'application/atom+xml';
APPLICATION_JSON = 'application/json';
APPLICATION_OCTET_STREAM = 'application/octet-stream';
APPLICATION_SVG_XML = 'application/svg+xml';
APPLICATION_XHTML_XML = 'application/xhtml+xml';
APPLICATION_XML = 'application/xml';
APPLICATION_OCTETSTREAM = 'application/octet-stream';
MEDIA_TYPE_WILDCARD = '*';
MULTIPART_FORM_DATA = 'multipart/form-data';
APPLICATION_FORM_URLENCODED = 'application/x-www-form-urlencoded';
TEXT_HTML = 'text/html';
TEXT_PLAIN = 'text/plain';
TEXT_XML = 'text/xml';
TEXT_CSS = 'text/css';
TEXT_JAVASCRIPT = 'text/javascript';
TEXT_CACHEMANIFEST = 'text/cache-manifest';
TEXT_EVENTSTREAM = 'text/event-stream';
TEXT_CSV = 'text/csv';
IMAGE_JPEG = 'image/jpeg';
IMAGE_X_PNG = 'image/x-png';
IMAGE_X_ICON = 'image/x-icon';
IMAGE_PNG = 'image/png';
IMAGE_SVG_XML = 'image/svg+xml';
IMAGE_GIF = 'image/gif';
APPLICATION_PDF = 'application/pdf';
APPLICATION_X_PDF = 'application/x-pdf';
WILDCARD = '*/*';
end;
TMVCCharSet = record
public const
US_ASCII = 'US-ASCII';
WINDOWS_1250 = 'windows-1250';
WINDOWS_1251 = 'windows-1251';
WINDOWS_1252 = 'windows-1252';
WINDOWS_1253 = 'windows-1253';
WINDOWS_1254 = 'windows-1254';
WINDOWS_1257 = 'windows-1257';
ISO88591 = 'ISO-8859-1';
ISO88592 = 'ISO-8859-2';
ISO88593 = 'ISO-8859-3';
ISO88594 = 'ISO-8859-4';
ISO88595 = 'ISO-8859-5';
ISO88596 = 'ISO-8859-6';
ISO88597 = 'ISO-8859-7';
ISO88598 = 'ISO-8859-8';
ISO885915 = 'ISO-8859-15';
UTF_8 = 'UTF-8';
UTF_16 = 'UTF-16';
UTF_16BE = 'UTF-16BE';
UTF_16LE = 'UTF-16LE';
end;
TMVCConstants = record
public const
SESSION_TOKEN_NAME = 'dtsessionid';
DEFAULT_CONTENT_CHARSET = 'UTF-8';
DEFAULT_CONTENT_TYPE = TMVCMediaType.APPLICATION_JSON;
CURRENT_USER_SESSION_KEY = '__DMVC_CURRENT_USER__';
LAST_AUTHORIZATION_HEADER_VALUE = '__DMVC_LAST_AUTHORIZATION_HEADER_VALUE_';
SSE_RETRY_DEFAULT = 100;
SSE_LAST_EVENT_ID = 'Last-Event-ID';
URL_MAPPED_PARAMS_ALLOWED_CHARS = ' àèéùòì''"@\[\]\{\}\(\)\=;&#\.:!\_,%\w\d\x2D\x3A';
OneMiB = 1048576;
OneKiB = 1024;
DEFAULT_MAX_REQUEST_SIZE = OneMiB * 5; // 5 MiB
HATEOAS_PROP_NAME = 'links';
X_HTTP_Method_Override = 'X-HTTP-Method-Override';
end;
HATEOAS = record
public const
/// <summary>
/// Target URI: It indicates the target resource URI. This is represented by the href attribute.
/// </summary>
HREF = 'href';
/// <summary>
/// Link relation: The link relation type describes how the current context is related to the target resource. This is represented by the rel attribute.
/// </summary>
REL = 'rel';
/// <summary>
/// Type: This indicates the expected resource media type. This is represented by the type attribute.
/// </summary>
_TYPE = 'type';
end;
TMVCConfigKey = record
public const
SessionTimeout = 'sessiontimeout';
ViewPath = 'view_path';
DefaultContentType = 'default_content_type';
DefaultContentCharset = 'default_content_charset';
DefaultViewFileExtension = 'default_view_file_extension';
PathPrefix = 'pathprefix';
AllowUnhandledAction = 'allow_unhandled_action';
ServerName = 'server_name';
ExposeServerSignature = 'server_signature';
SessionType = 'session_type';
MaxEntitiesRecordCount = 'max_entities_record_count';
MaxRequestSize = 'max_request_size'; // bytes
HATEOSPropertyName = 'hateos';
LoadSystemControllers = 'load_system_controllers';
end;
// http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
HTTP_STATUS = record
const
// Informational 1xx
Continue = 100;
SwitchingProtocols = 101;
// Successful 2xx
/// <summary>
/// 200 OK
/// The request has succeeded. The information returned with the response is dependent on the method used in the request, for example:
/// GET an entity corresponding to the requested resource is sent in the response;
/// HEAD the entity-header fields corresponding to the requested resource are sent in the response without any message-body;
/// POST an entity describing or containing the result of the action;
/// TRACE an entity containing the request message as received by the end server.
/// </summary>
OK = 200;
/// <summary>
/// 201 Created
/// The request has been fulfilled and resulted in a new resource being created. The newly created resource can be referenced by the URI(s) returned in the entity of the response, with the most specific URI for the resource given by a Location header field. The response SHOULD include an entity containing a list of resource characteristics and location(s) from which the user or user agent can choose the one most appropriate. The entity format is specified by the media type given in the Content-Type header field. The origin server MUST create the resource before returning the 201 status code. If the action cannot be carried out immediately, the server SHOULD respond with 202 (Accepted) response instead.
/// A 201 response MAY contain an ETag response header field indicating the current value of the entity tag for the requested variant just created
/// </summary>
Created = 201;
/// <summary>
/// 202 Accepted
/// The request has been accepted for processing, but the processing has not been completed. The request might or might not eventually be acted upon, as it might be disallowed when processing actually takes place. There is no facility for re-sending a status code from an asynchronous operation such as this.
/// The 202 response is intentionally non-committal. Its purpose is to allow a server to accept a request for some other process (perhaps a batch-oriented process that is only run once per day) without requiring that the user agent's connection to the server persist until the process is completed. The entity returned with this response SHOULD include an indication of the request's current status and either a pointer to a status monitor or some estimate of when the user can expect the request to be fulfilled.
/// </summary>
Accepted = 202;
///
NonAuthoritativeInformation = 203;
/// <summary>
/// 204 No Content
/// The server has fulfilled the request but does not need to return an entity-body, and might want to return updated metainformation. The response MAY include new or updated metainformation in the form of entity-headers, which if present SHOULD be associated with the requested variant.
/// If the client is a user agent, it SHOULD NOT change its document view from that which caused the request to be sent. This response is primarily intended to allow input for actions to take place without causing a change to the user agent's active document view, although any new or updated metainformation SHOULD be applied to the document currently in the user agent's active view.
/// The 204 response MUST NOT include a message-body, and thus is always terminated by the first empty line after the header fields.
/// </summary>
NoContent = 204;
ResetContent = 205;
PartialContent = 206;
// Redirection 3xx
MultipleChoices = 300;
/// <summary>
/// 301 Moved Permanently
/// The requested resource has been assigned a new permanent URI and any future references to this resource SHOULD use one of the returned URIs. Clients with link editing capabilities ought to automatically re-link references to the Request-URI to one or more of the new references returned by the server, where possible. This response is cacheable unless indicated otherwise.
/// The new permanent URI SHOULD be given by the Location field in the response. Unless the request method was HEAD, the entity of the response SHOULD contain a short hypertext note with a hyperlink to the new URI(s).
/// If the 301 status code is received in response to a request other than GET or HEAD, the user agent MUST NOT automatically redirect the request unless it can be confirmed by the user, since this might change the conditions under which the request was issued.
/// Note: When automatically redirecting a POST request after
/// receiving a 301 status code, some existing HTTP/1.0 user agents
/// will erroneously change it into a GET request.
/// </summary>
MovedPermanently = 301;
/// <summary>
/// 302 Found
/// The requested resource resides temporarily under a different URI. Since the redirection might be altered on occasion, the client SHOULD continue to use the Request-URI for future requests. This response is only cacheable if indicated by a Cache-Control or Expires header field.
/// The temporary URI SHOULD be given by the Location field in the response. Unless the request method was HEAD, the entity of the response SHOULD contain a short hypertext note with a hyperlink to the new URI(s).
/// If the 302 status code is received in response to a request other than GET or HEAD, the user agent MUST NOT automatically redirect the request unless it can be confirmed by the user, since this might change the conditions under which the request was issued.
/// </summary>
Found = 302;
/// <summary>
/// 303 See Other
/// The response to the request can be found under a different URI and SHOULD be retrieved using a GET method on that resource. This method exists primarily to allow the output of a POST-activated script to redirect the user agent to a selected resource. The new URI is not a substitute reference for the originally requested resource. The 303 response MUST NOT be cached, but the response to the second (redirected) request might be cacheable.
/// The different URI SHOULD be given by the Location field in the response. Unless the request method was HEAD, the entity of the response SHOULD contain a short hypertext note with a hyperlink to the new URI(s).
/// </summary>
SeeOther = 303;
/// <summary>
/// 304 Not Modified
/// If the client has performed a conditional GET request and access is allowed, but the document has not been modified, the server SHOULD respond with this status code. The 304 response MUST NOT contain a message-body, and thus is always terminated by the first empty line after the header fields.
/// The response MUST include the following header fields:
/// - Date, unless its omission is required by section 14.18.1
/// If a clockless origin server obeys these rules, and proxies and clients add their own Date to any response received without one (as already specified by [RFC 2068], section 14.19), caches will operate correctly.
/// - ETag and/or Content-Location, if the header would have been sent in a 200 response to the same request
/// - Expires, Cache-Control, and/or Vary, if the field-value might differ from that sent in any previous response for the same variant
/// If the conditional GET used a strong cache validator (see section 13.3.3), the response SHOULD NOT include other entity-headers. Otherwise (i.e., the conditional GET used a weak validator), the response MUST NOT include other entity-headers; this prevents inconsistencies between cached entity-bodies and updated headers.
/// If a 304 response indicates an entity not currently cached, then the cache MUST disregard the response and repeat the request without the conditional.
/// If a cache uses a received 304 response to update a cache entry, the cache MUST update the entry to reflect any new field values given in the response.
/// </summary>
NotModified = 304;
UseProxy = 305;
TemporaryRedirect = 307;
// Client Error 4xx
/// <summary>
/// The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications.
/// </summary>
BadRequest = 400;
/// <summary>
/// 401 Unauthorized
/// The request requires user authentication. The response MUST include a WWW-Authenticate header field (section 14.47) containing a challenge applicable to the requested resource. The client MAY repeat the request with a suitable Authorization header field (section 14.8). If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials. If the 401 response contains the same challenge as the prior response, and the user agent has already attempted authentication at least once, then the user SHOULD be presented the entity that was given in the response, since that entity might include relevant diagnostic information. HTTP access authentication is explained in "HTTP Authentication: Basic and Digest Access Authentication".
/// </summary>
Unauthorized = 401;
PaymentRequired = 402;
/// <summary>
/// 403 Forbidden
/// The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.
/// </summary>
Forbidden = 403;
/// <summary>
/// 404 Not Found
/// The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
/// </summary>
NotFound = 404;
/// <summary>
/// 405 Method Not Allowed
/// The method specified in the Request-Line is not allowed for the resource identified by the Request-URI. The response MUST include an Allow header containing a list of valid methods for the requested resource.
/// </summary>
MethodNotAllowed = 405;
NotAcceptable = 406;
ProxyAuthenticationRequired = 407;
RequestTimeout = 408;
Conflict = 409;
Gone = 410;
LengthRequired = 411;
/// <summary>
/// 412 Precondition Failed
/// Any request can contain a conditional header defined in HTTP (If-
/// Match, If-Modified-Since, etc.) or the "If" or "Overwrite"
/// conditional headers defined in this specification. If the server
/// evaluates a conditional header, and if that condition fails to hold,
/// then this error code MUST be returned. On the other hand, if the
/// client did not include a conditional header in the request, then the
/// server MUST NOT use this status code.
/// </summary>
PreconditionFailed = 412;
RequestEntityTooLarge = 413;
RequestURITooLong = 414;
UnsupportedMediaType = 415;
RequestedRangeNotSatisfiable = 416;
ExpectationFailed = 417;
/// <summary>
/// The 422 (Unprocessable Entity) status code means the server
/// understands the content type of the request entity (hence a
/// 415(Unsupported Media Type) status code is inappropriate), and the
/// syntax of the request entity is correct (thus a 400 (Bad Request)
/// status code is inappropriate) but was unable to process the contained
/// instructions. For example, this error condition may occur if an XML
/// request body contains well-formed (i.e., syntactically correct), but
/// semantically erroneous, XML instructions.
/// </summary>
UnprocessableEntity = 422;
/// <summary>
/// The 423 (Locked) status code means the source or destination resource
/// of a method is locked. This response SHOULD contain an appropriate
/// precondition or postcondition code, such as 'lock-token-submitted' or 'no-conflicting-lock
/// </summary>
Locked = 423;
/// <summary>
/// The 424 (Failed Dependency) status code means that the method could
/// not be performed on the resource because the requested action
/// depended on another action and that action failed. For example, if a
/// command in a PROPPATCH method fails, then, at minimum, the rest of
/// the commands will also fail with 424 (Failed Dependency).
/// </summary>
FailedDependency = 424;
// Server Error 5xx
/// <summary>
/// 500 Internal Server Error
/// The server encountered an unexpected condition which prevented it from fulfilling the request.
/// </summary>
InternalServerError = 500;
/// <summary>
/// 501 Not Implemented
/// The server does not support the functionality required to fulfill the request. This is the appropriate response when the server does not recognize the request method and is not capable of supporting it for any resource.
/// </summary>
NotImplemented = 501;
BadGateway = 502;
/// <summary>
/// 503 Service Unavailable
/// The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay MAY be indicated in a Retry-After header. If no Retry-After is given, the client SHOULD handle the response as it would for a 500 response.
/// Note: The existence of the 503 status code does not imply that a
/// server must use it when becoming overloaded. Some servers may wish
/// to simply refuse the connection.
/// </summary>
ServiceUnavailable = 503;
GatewayTimeout = 504;
HTTPVersionNotSupported = 505;
/// <summary>
/// The 507 (Insufficient Storage) status code means the method could not
/// be performed on the resource because the server is unable to store
/// the representation needed to successfully complete the request.
/// This condition is considered to be temporary. If the request that
/// received this status code was the result of a user action, the
/// request MUST NOT be repeated until it is requested by a separate user action.
/// </summary>
InsufficientStorage = 507;
end;
EMVCException = class(Exception)
protected
FHttpErrorCode: UInt16;
FAppErrorCode: UInt16;
FDetailedMessage: string;
procedure CheckHTTPErrorCode(const AHTTPErrorCode: UInt16);
public
constructor Create(const AMsg: string); overload; virtual;
constructor Create(const AMsg: string; const ADetailedMessage: string;
const AAppErrorCode: UInt16 = 0;
const AHTTPErrorCode: UInt16 = HTTP_STATUS.InternalServerError); overload; virtual;
constructor Create(const AHTTPErrorCode: UInt16; const AMsg: string); overload; virtual;
constructor Create(const AHTTPErrorCode: UInt16; const AAppErrorCode: Integer; const AMsg: string);
overload; virtual;
constructor CreateFmt(const AMsg: string; const AArgs: array of const); reintroduce; overload;
constructor CreateFmt(const AHTTPErrorCode: UInt16; const AMsg: string; const AArgs: array of const); overload;
property HttpErrorCode: UInt16 read FHttpErrorCode;
property DetailedMessage: string read FDetailedMessage write FDetailedMessage;
property ApplicationErrorCode: UInt16 read FAppErrorCode write FAppErrorCode;
end;
EMVCSessionExpiredException = class(EMVCException)
private
{ private declarations }
protected
{ protected declarations }
public
{ public declarations }
end;
EMVCConfigException = class(EMVCException)
private
{ private declarations }
protected
{ protected declarations }
public
{ public declarations }
end;
EMVCFrameworkViewException = class(EMVCException)
private
{ private declarations }
protected
{ protected declarations }
public
{ public declarations }
end;
EMVCJWTException = class(EMVCException)
private
{ private declarations }
protected
{ protected declarations }
public
{ public declarations }
end;
EMVCViewError = class(EMVCException)
private
{ private declarations }
protected
{ protected declarations }
public
{ public declarations }
end;
TMVCStringDictionaryList = class;
TMVCRequestParamsTable = class(TDictionary<string, string>)
private
{ private declarations }
protected
{ protected declarations }
public
{ public declarations }
end;
IMVCLinkItem = interface
['{8BC70061-0DD0-4D0A-B135-F83A5C86629B}']
function Add(const PropName: string; const PropValue: string): IMVCLinkItem;
end;
IMVCLinks = interface
['{8A116BED-9A10-4885-AD4B-DF38A7F0D7DF}']
function AddRefLink: IMVCLinkItem;
function Clear: IMVCLinks;
function LinksData: TMVCStringDictionaryList;
end;
TMVCLinks = class(TInterfacedObject, IMVCLinks)
private
fData: TMVCStringDictionaryList;
protected
function AddRefLink: IMVCLinkItem;
function Clear: IMVCLinks;
public
constructor Create; virtual;
destructor Destroy; override;
function LinksData: TMVCStringDictionaryList;
end;
// IMVCStringDictionary = interface
// ['{164117AD-8DDD-47F7-877C-453979707D10}']
// function GetItems(const Key: string): string;
// procedure SetItems(const Key, Value: string);
// procedure Clear;
/// / function Add(const Name, Value: string): IMVCStringDictionary;
// function TryGetValue(const Name: string; out Value: string): Boolean; overload;
// function TryGetValue(const Name: string; out Value: Integer): Boolean; overload;
// function Count: Integer;
// function GetEnumerator: TDictionary<string, string>.TPairEnumerator;
// function ContainsKey(const Key: string): Boolean;
// function Keys: TArray<string>;
// property Items[const Key: string]: string read GetItems; default;
// end;
TMVCStringDictionary = class // (TInterfacedObject, IMVCStringDictionary)
strict private
function GetItems(const Key: string): string;
procedure SetItems(const Key, Value: string);
protected
fDict: TDictionary<string, string>;
public
constructor Create; overload; virtual;
constructor Create(const aKey, aValue: string); overload; virtual;
destructor Destroy; override;
procedure Clear;
function Add(const Name, Value: string): TMVCStringDictionary;
function TryGetValue(const Name: string; out Value: string): Boolean; overload;
function TryGetValue(const Name: string; out Value: Integer): Boolean; overload;
function Count: Integer;
function GetEnumerator: TDictionary<string, string>.TPairEnumerator;
function ContainsKey(const Key: string): Boolean;
function Keys: TArray<string>;
property Items[const Key: string]: string read GetItems write SetItems; default;
end;
TMVCDecoratorObject = class(TInterfacedObject, IMVCLinkItem)
private
fData: TMVCStringDictionary;
public
constructor Create(const aData: TMVCStringDictionary);
function Add(const PropName: string; const PropValue: string): IMVCLinkItem;
end;
TMVCStringDictionaryList = class(TObjectList<TMVCStringDictionary>)
public
constructor Create;
end;
{ This type is thread safe }
TMVCStringObjectDictionary<T: class> = class
private
FMREWS: TMultiReadExclusiveWriteSynchronizer;
protected
fDict: TObjectDictionary<string, T>;
public
constructor Create; virtual;
destructor Destroy; override;
function TryGetValue(const Name: string; out Value: T): Boolean;
procedure Add(const Name: string; Value: T);
end;
TMVCViewDataObject = class(TObjectDictionary<string, TObject>)
private
{ private declarations }
protected
{ protected declarations }
public
constructor Create;
end;
TMVCViewDataSet = class(TObjectDictionary<string, TDataset>)
private
{ private declarations }
protected
{ protected declarations }
public
constructor Create;
end;
TMVCCriticalSectionHelper = class helper for TCriticalSection
public
procedure DoWithLock(const AAction: TProc);
function DoWithLockTimeout(const AAction: TProc; const ATimeOut: UInt32): TWaitResult;
end;
TMultiReadExclusiveWriteSynchronizerHelper = class helper for TMultiReadExclusiveWriteSynchronizer
public
procedure DoWithWriteLock(const AAction: TProc);
procedure DoWithReadLock(const AAction: TProc);
end;
TMVCConfig = class sealed
private
FConfig: TMVCStringDictionary;
FFreezed: Boolean;
function GetValue(const AIndex: string): string;
function GetValueAsInt64(const AIndex: string): Int64;
procedure SetValue(const AIndex: string; const aValue: string);
procedure CheckNotFreezed; inline;
protected
{ protected declarations }
public
constructor Create;
destructor Destroy; override;
procedure Freeze;
function Keys: TArray<string>;
function ToString: string; override;
procedure SaveToFile(const AFileName: string);
procedure LoadFromFile(const AFileName: string);
property Value[const AIndex: string]: string read GetValue write SetValue; default;
property AsInt64[const AIndex: string]: Int64 read GetValueAsInt64;
end;
TMVCStreamHelper = class helper for TStream
public
procedure WriteUTF8(const AString: string);
end;
TMVCFieldMap = record
InstanceFieldName: string;
DatabaseFieldName: string;
end;
TMVCCustomRouter = class abstract
public
function GetQualifiedActionName(): string; virtual; abstract;
end;
TMVCGuidHelper = record
public
class function GuidFromString(const AGuidStr: string): TGUID; static;
end;
TMVCFieldsMapping = TArray<TMVCFieldMap>;
{$SCOPEDENUMS ON}
TMVCCompressionType = (ctNone, ctDeflate, ctGZIP);
function AppPath: string;
function IsReservedOrPrivateIP(const AIP: string): Boolean; inline;
function IP2Long(const AIP: string): UInt32; inline;
function B64Encode(const aValue: string): string; overload;
function B64Encode(const aValue: TBytes): string; overload;
function B64Decode(const aValue: string): string;
function URLSafeB64encode(const Value: string; IncludePadding: Boolean; AByteEncoding: IIdTextEncoding = nil)
: string; overload;
function URLSafeB64encode(const Value: TBytes; IncludePadding: Boolean): string; overload;
function URLSafeB64Decode(const Value: string; AByteEncoding: IIdTextEncoding = nil): string;
function ByteToHex(AInByte: Byte): string;
function BytesToHex(ABytes: TBytes): string;
procedure Base64StringToFile(const aBase64String, AFileName: string; const aOverwrite: Boolean = False);
function FileToBase64String(const FileName: string): string;
procedure SplitContentMediaTypeAndCharset(const aContentType: string; var aContentMediaType: string;
var aContentCharSet: string);
function BuildContentType(const aContentMediaType: string; const aContentCharSet: string): string;
{ changing case }
function CamelCase(const Value: string; const MakeFirstUpperToo: Boolean = False): string;
const
MVC_HTTP_METHODS_WITHOUT_CONTENT: TMVCHTTPMethods = [httpGET, httpDELETE, httpHEAD, httpOPTIONS];
MVC_HTTP_METHODS_WITH_CONTENT: TMVCHTTPMethods = [httpPOST, httpPUT, httpPATCH];
const
MVC_COMPRESSION_TYPE_AS_STRING: array [TMVCCompressionType] of string = ('none', 'deflate', 'gzip');
MVC_COMPRESSION_ZLIB_WINDOW_BITS: array [TMVCCompressionType] of Integer = (0, -15, 31);
// WindowBits: http://zlib.net/manual.html#Advanced
var
gLock: TObject;
const
RESERVED_IPS: array [1 .. 11] of array [1 .. 2] of string = (('0.0.0.0', '0.255.255.255'),
('10.0.0.0', '10.255.255.255'), ('127.0.0.0', '127.255.255.255'),
('169.254.0.0', '169.254.255.255'),
('172.16.0.0', '172.31.255.255'), ('192.0.2.0', '192.0.2.255'), ('192.88.99.0', '192.88.99.255'),
('192.168.0.0', '192.168.255.255'), ('198.18.0.0', '198.19.255.255'),
('224.0.0.0', '239.255.255.255'),
('240.0.0.0', '255.255.255.255'));
type
TMVCParseAuthentication = class
public
class procedure OnParseAuthentication(AContext: TIdContext; const AAuthType, AAuthData: string; var VUsername,
VPassword: string; var VHandled: Boolean);
end;
implementation
uses
IdCoder3to4,
System.NetEncoding,
MVCFramework.Serializer.JsonDataObjects, MVCFramework.Serializer.Commons;
var
GlobalAppName, GlobalAppPath, GlobalAppExe: string;
function AppPath: string;
begin
Result := GlobalAppPath;
end;
function IP2Long(const AIP: string): Cardinal;
var
lPieces: TArray<string>;
begin
if AIP.IsEmpty then
Exit(0);
lPieces := AIP.Split(['.']);
Result := (StrToInt(lPieces[0]) * 16777216) + (StrToInt(lPieces[1]) * 65536) +
(StrToInt(lPieces[2]) * 256) +
StrToInt(lPieces[3]);
end;
function IsReservedOrPrivateIP(const AIP: string): Boolean;
var
I: Integer;
IntIP: Cardinal;
begin
Result := False;
IntIP := IP2Long(AIP);
for I := low(RESERVED_IPS) to high(RESERVED_IPS) do
if (IntIP >= IP2Long(RESERVED_IPS[I][1])) and (IntIP <= IP2Long(RESERVED_IPS[I][2])) then
Exit(True);
end;
// function IP2Long(const AIP: string): UInt32;
// begin
// Result := IdGlobal.IPv4ToUInt32(AIP);
// end;
function B64Encode(const aValue: string): string; overload;
begin
// Do not use TNetEncoding
Result := TIdEncoderMIME.EncodeString(aValue);
end;
function B64Encode(const aValue: TBytes): string; overload;
begin
// Do not use TNetEncoding
Result := TIdEncoderMIME.EncodeBytes(TIdBytes(aValue));
end;
function B64Decode(const aValue: string): string;
begin
// Do not use TNetEncoding
Result := TIdDecoderMIME.DecodeString(aValue);
end;
function ByteToHex(AInByte: Byte): string;
const
DIGITS: array [0 .. 15] of Char = '0123456789abcdef';
begin
Result := DIGITS[AInByte shr 4] + DIGITS[AInByte and $0F];
end;
function BytesToHex(ABytes: TBytes): string;
var
B: Byte;
begin
Result := EmptyStr;
for B in ABytes do
Result := Result + ByteToHex(B);
end;
function BuildContentType(const aContentMediaType: string; const aContentCharSet: string): string;
var
lContentMediaType: string;
begin
lContentMediaType := aContentMediaType.ToLower.Trim.Replace(' ', '', [rfReplaceAll]);
if lContentMediaType = '' then
begin
Result := '';
end
else
begin
if aContentCharSet.IsEmpty then
begin
Result := lContentMediaType;
end
else
if lContentMediaType.StartsWith('text/') or lContentMediaType.StartsWith('application/')
then
begin
Result := lContentMediaType + ';charset=' + aContentCharSet.ToLower;
end
else
begin
Result := lContentMediaType;
end;
end;
end;
procedure SplitContentMediaTypeAndCharset(const aContentType: string; var aContentMediaType: string;
var aContentCharSet: string);
var
lContentTypeValues: TArray<string>;
begin
if not aContentType.IsEmpty then
begin
lContentTypeValues := aContentType.Split([';']);
aContentMediaType := Trim(lContentTypeValues[0]);
if (Length(lContentTypeValues) > 1) and (lContentTypeValues[1].Trim.StartsWith('charset', True))
then
begin
aContentCharSet := lContentTypeValues[1].Trim.Split(['='])[1].Trim;
end
else
begin
aContentCharSet := '';
end;
end
else
begin
aContentMediaType := '';
aContentCharSet := '';
end;
end;
{ EMVCException }
constructor EMVCException.Create(const AMsg: string);
begin
inherited Create(AMsg);
FHttpErrorCode := HTTP_STATUS.InternalServerError;
FDetailedMessage := EmptyStr;
FAppErrorCode := 0;
end;
constructor EMVCException.Create(const AMsg, ADetailedMessage: string;
const AAppErrorCode, AHTTPErrorCode: UInt16);
begin
Create(AMsg);
CheckHTTPErrorCode(AHTTPErrorCode);
FHttpErrorCode := AHTTPErrorCode;
FAppErrorCode := AAppErrorCode;
FDetailedMessage := ADetailedMessage;
end;
constructor EMVCException.Create(const AHTTPErrorCode: UInt16; const AMsg: string);
begin
CheckHTTPErrorCode(AHTTPErrorCode);
Create(AMsg);
FHttpErrorCode := AHTTPErrorCode;
end;
procedure EMVCException.CheckHTTPErrorCode(const AHTTPErrorCode: UInt16);
begin
if (AHTTPErrorCode div 100 = 0) or (AHTTPErrorCode div 100 > 5) then
begin
raise EMVCException.CreateFmt('Invalid HTTP_STATUS [%d]', [AHTTPErrorCode]);
end;
end;
constructor EMVCException.Create(const AHTTPErrorCode: UInt16;
const AAppErrorCode: Integer; const AMsg: string);
begin
CheckHTTPErrorCode(AHTTPErrorCode);
Create(AMsg);
FHttpErrorCode := AHTTPErrorCode;
FAppErrorCode := AAppErrorCode;
end;
constructor EMVCException.CreateFmt(const AHTTPErrorCode: UInt16;
const AMsg: string; const AArgs: array of const);
begin
inherited CreateFmt(AMsg, AArgs);
FHttpErrorCode := AHTTPErrorCode;
FDetailedMessage := EmptyStr;
FAppErrorCode := 0;
end;
constructor EMVCException.CreateFmt(const AMsg: string; const AArgs: array of const);
begin
CreateFmt(HTTP_STATUS.InternalServerError, AMsg, AArgs);
end;
{ TMVCViewDataObject }
constructor TMVCViewDataObject.Create;
begin
inherited Create([]);
end;
{ TMVCCriticalSectionHelper }
procedure TMVCCriticalSectionHelper.DoWithLock(const AAction: TProc);
begin
Self.Enter;
try
AAction();
finally
Self.Leave;
end;
end;
function TMVCCriticalSectionHelper.DoWithLockTimeout(const AAction: TProc; const ATimeOut: UInt32)
: TWaitResult;
begin
Result := Self.WaitFor(ATimeOut);
if (Result = TWaitResult.wrSignaled) then
try
AAction();
finally
Self.Leave;
end;
end;
{ TMVCConfig }
procedure TMVCConfig.CheckNotFreezed;
begin
if FFreezed then
begin
raise EMVCException.Create('Configuration in freezed - no more changes allowed') at ReturnAddress;
end;
end;
constructor TMVCConfig.Create;
begin
inherited Create;
FConfig := TMVCStringDictionary.Create;
FFreezed := False;
end;
destructor TMVCConfig.Destroy;
begin
FConfig.Free;
inherited Destroy;
end;
procedure TMVCConfig.Freeze;
begin
FFreezed := True;
end;
function TMVCConfig.GetValue(const AIndex: string): string;
begin
if FConfig.ContainsKey(AIndex) then
Result := FConfig.Items[AIndex]
else
raise EMVCConfigException.CreateFmt('Invalid config key [%s]', [AIndex]);
end;
function TMVCConfig.GetValueAsInt64(const AIndex: string): Int64;
begin
Result := StrToInt64(Value[AIndex]);
end;
function TMVCConfig.Keys: TArray<string>;
begin
Result := FConfig.Keys;
end;
procedure TMVCConfig.LoadFromFile(const AFileName: string);
var
lConfigString: string;
lStreamReader: TStreamReader;
lSer: TMVCJsonDataObjectsSerializer;
begin
lStreamReader := TStreamReader.Create(TFileStream.Create(AFileName,
fmOpenRead or fmShareDenyWrite), TEncoding.ASCII);
try
lStreamReader.OwnStream;
lConfigString := lStreamReader.ReadToEnd;
finally
lStreamReader.Free;
end;
lSer := TMVCJsonDataObjectsSerializer.Create;
try
FConfig.Clear;
lSer.DeserializeObject(lConfigString, FConfig);
finally
lSer.Free;
end;
end;
procedure TMVCConfig.SaveToFile(const AFileName: string);
begin
TFile.WriteAllText(AFileName, ToString, TEncoding.ASCII);
end;
procedure TMVCConfig.SetValue(const AIndex, aValue: string);
begin
CheckNotFreezed;
FConfig.Add(AIndex, aValue);
end;
function TMVCConfig.ToString: string;
var
lSer: TMVCJsonDataObjectsSerializer;
begin
lSer := TMVCJsonDataObjectsSerializer.Create;
try
Result := lSer.SerializeObject(FConfig);
finally
lSer.Free;
end;
end;
{ TMVCStringDictionary }
function TMVCStringDictionary.Add(const Name, Value: string): TMVCStringDictionary;
begin
fDict.AddOrSetValue(name, Value);
Result := Self;
end;
procedure TMVCStringDictionary.Clear;
begin
fDict.Clear;
end;
function TMVCStringDictionary.ContainsKey(const Key: string): Boolean;
begin
Result := fDict.ContainsKey(Key);
end;
function TMVCStringDictionary.Count: Integer;
begin
Result := fDict.Count;
end;
constructor TMVCStringDictionary.Create(const aKey, aValue: string);
begin
Create;
Add(aKey, aValue);
end;
constructor TMVCStringDictionary.Create;
begin
inherited;
fDict := TDictionary<string, string>.Create;
end;
destructor TMVCStringDictionary.Destroy;
begin
fDict.Free;
inherited;
end;
function TMVCStringDictionary.GetEnumerator: TDictionary<string, string>.TPairEnumerator;
begin
Result := fDict.GetEnumerator;
end;