-
Notifications
You must be signed in to change notification settings - Fork 28
/
ExtPascalUtils.pas
950 lines (878 loc) · 31.5 KB
/
ExtPascalUtils.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
{
Unit for complementary functions
Author: Wanderlan Santos dos Anjos (wanderlan.anjos@gmail.com)
Date: jul-2008
License: BSD<extlink http://www.opensource.org/licenses/bsd-license.php>BSD</extlink>
}
unit ExtPascalUtils;
{$IFDEF FPC}{$MACRO ON}{$MODE DELPHI}{$ENDIF}
interface
uses
Classes, TypInfo;
const
ExtPascalVersion = '0.9.9';
{$IF not Defined(FPC) and (RTLVersion <= 17)}
type
// Implements StrictDelimiter property for FPC 2.2.2, Delphi 7 and older versions
TStringList = class(Classes.TStringList)
private
function GetDelimitedText : string;
procedure SetDelimitedText(const AValue : string);
public
StrictDelimiter : boolean; // Missing property in FPC 2.2.2, Delphi 7 an older versions
property DelimitedText : string read GetDelimitedText write SetDelimitedText; // Property override for FPC 2.2.2, Delphi 7 an older versions
end;
TStrings = TStringList;
{$IFEND}
type
TBrowser = (brUnknown, brIE, brFirefox, brChrome, brSafari, brOpera, brKonqueror, brMobileSafari); // Internet Browsers
TCSSUnit = (cssPX, cssPerc, cssEM, cssEX, cssIN, cssCM, cssMM, cssPT, cssPC, cssnone); // HTML CSS units
TExtProcedure = procedure of object; // Defines a procedure than can be called by a <link TExtObject.Ajax, AJAX> request
TUploadBlockType = (ubtUnknown, ubtBegin, ubtMiddle, ubtEnd);
{$IFNDEF FPC}
{$IFDEF WIN64}
PtrInt = Int64;
{$ELSE}
PtrInt = integer;
{$ENDIF}
{$ENDIF}
procedure StrToTStrings(const S : string; List : TStrings);
function URLDecode(const Encoded : string): string;
function URLEncode(const Decoded : string): string;
{
Determine browser from HTTP_USER_AGENT header string.
@param UserAgentStr String returned by, for example, RequestHeader['HTTP_USER_AGENT'].
@return TBrowser
}
function DetermineBrowser(const UserAgentStr : string) : TBrowser;
{
Mimics preg_match php function. Searches S for a match to delimiter strings given in Delims parameter
@param Delims Delimiter strings to match
@param S Subject string
@param Matches Substrings from Subject string delimited by Delimiter strings. <b>Matches (TStringList) should already be created</b>.
@param Remove matches strings from S, default is true
@return True if some match hit, false otherwise
}
function Extract(const Delims : array of string; var S : string; var Matches : TStringList; EndCom : string = '*/'; Remove : boolean = true) : boolean;
{
Mimics explode php function.
Creates a TStringList where each string is a substring formed by the splitting of S string through delimiter Delim.
@param Delim Delimiter used to split the string
@param S Source string to split
@return TStringList created with substrings from S
}
function Explode(Delim : char; const S : string; Separator : char = '=') : TStringList;
{
The opposite of LastDelimiter RTL function.
Returns the index of the first occurence in a string of the characters specified.
If none of the characters in Delimiters appears in string S, function returns zero.
@param Delimiters String where each character is a valid delimiter.
@param S String to search for delimiters.
@param Offset Index from where the search begins.
}
function FirstDelimiter(const Delimiters, S : string; Offset : integer = 1) : integer;
// The opposite of "StrUtils.PosEx" function. Returns the index value of the last occurrence of a specified substring in a given string.
function RPosEx(const Substr, Str : string; Offset : integer = 1) : integer;
{
Returns the number of occurrences of Substr in Str until UntilStr occurs
@param Substr String to count in Str
@param Str String where the counting will be done
@param UntilStr Optional String, stop counting if this string occurs
}
function CountStr(const Substr, Str : string; UntilStr : string = '') : integer;
{
Converts a string with param place holders to a JavaScript string. Converts a string representing a regular expression to a JavaScript RegExp.
Replaces " to \", ^M^J to <br/> and isolated ^M or ^J to <br/>, surrounds the string with " and insert %0..%9 JS place holders.
When setting a TExtFormTextField value (in property setter setvalue), the UseBR should be set to false,
because otherwise it is impossible to display multiline text in a TExtFormTextArea.
@param S Source string with param place holders or RegExpr
@param UseBR If true uses replace ^M^J to <br/> else to \n
@return a well formatted JS string
}
function StrToJS(const S : string; UseBR : boolean = false) : string;
{
Finds S string in Cases array, returning its index or -1 if not found. Good to use in Pascal "case" command. Similar to AnsiIndexText.
@param S Source string where to search
@param Cases String array to find in S
}
function CaseOf(const S : string; const Cases : array of string) : integer;
{
Finds Cases array in S string, returning its index or -1 if not found. Good to use in Pascal "case" command. Reverse to AnsiIndexStr.
@param S string to find in Cases array
@param Cases String array where to search
}
function RCaseOf(const S : string; const Cases : array of string) : integer;
{
Converts a Pascal enumerated type constant into a JS string, used internally by ExtToPascal wrapper. See ExtFixes.txt for more information.
@param TypeInfo Type information record that describes the enumerated type, use TypeInfo() function with enumerated type
@param Value The enumerated value, represented as an integer
@return JS string
}
function EnumToJSString(TypeInfo : PTypeInfo; Value : integer) : string;
{
Helper function to make code more pascalish, use
@example <code>BodyStyle := SetPaddings(10, 15);</code>
instead
@example <code>BodyStyle := 'padding:10px 15px';</code>
}
function SetPaddings(Top : integer; Right : integer = 0; Bottom : integer = -1; Left : integer = 0; CSSUnit : TCSSUnit = cssPX;
Header : boolean = true) : string;
{
Helper function to make code more pascalish, use
@example <code>Margins := SetMargins(3, 3, 3);</code>
instead
@example <code>Margins := '3 3 3 0';</code>
}
function SetMargins(Top : integer; Right : integer = 0; Bottom : integer = 0; Left : integer = 0; CSSUnit : TCSSUnit = cssNone;
Header : boolean = false) : string;
// Returns true if BeforeS string occurs before AfterS string in S string
function Before(const BeforeS, AfterS, S : string) : boolean;
// Returns true if S string occurs between BeforeS and AfterS strings in T string
function Between(const S, BeforeS, AfterS : string; var T : string) : boolean;
// Returns true if S string occurs between the first occurrence of BeforeS and AfterS strings in T string
function BetweenFirst(const S, BeforeS, AfterS : string; var T : string) : boolean;
function GetBetween(const A, B, Line : string) : string;
function First(const A : array of string; const S : string) : integer;
// Returns true if all chars in S are uppercase
function IsUpperCase(S : string) : boolean;
// Beautify generated JS commands from ExtPascal, automatically used when DEBUGJS symbol is defined
function BeautifyJS(const AScript : string; const StartingLevel : integer = 0; SplitHTMLNewLine : boolean = true) : string;
// Beautify generated CSS from ExtPascal, automatically used when DEBUGJS symbol is defined
function BeautifyCSS(const AStyle : string) : string;
// Screen space, in characters, used for a field using regular expression mask
function LengthRegExp(Rex : string; CountAll : Boolean = true) : integer;
function JSDateToDateTime(JSDate : string) : TDateTime;
function IsNumber(S : string) : boolean;
{
Encrypts a string using a simple and quick method, but not trivial.
@param Value String to be encrypted.
@return String encrypted.
}
function Encrypt(Value : string) : string;
{
Decrypts a string that was previously crypted using the function <link Encrypt>.
@param Value String to be decrypted.
@return String decrypted.
}
function Decrypt(Value : string) : string;
implementation
uses
StrUtils, SysUtils, Math, DateUtils;
{$IF not Defined(FPC) and (RTLVersion <= 17)}
function TStringList.GetDelimitedText: string;
var
I : integer;
P : pchar;
begin
Result := '';
for I := 0 to Count-1 do begin
P := pchar(Strings[I]);
if not StrictDelimiter then
while not(P^ in [#0..' ', QuoteChar, Delimiter]) do inc(P)
else
while not(P^ in [#0, Delimiter]) do inc(P);
// strings in list may to contain #0
if (P <> pchar(Strings[I]) + length(Strings[I])) and not StrictDelimiter then
Result := Result + QuoteChar + Strings[I] + QuoteChar
else
Result := Result + Strings[I];
if I < Count-1 then Result := Result + Delimiter;
end;
if (length(Result) = 0) and (Count = 1) then Result := QuoteChar + QuoteChar;
end;
procedure TStringList.SetDelimitedText(const AValue : string);
var
I, J : integer;
aNotFirst : boolean;
begin
BeginUpdate;
I := 1;
aNotFirst := false;
try
Clear;
while I <= length(AValue) do begin
// skip delimiter
if aNotFirst and (I <= length(AValue)) and (AValue[I] = Delimiter) then inc(I);
// skip spaces
if not StrictDelimiter then
while (I <= length(AValue)) and (ord(AValue[I]) <= ord(' ')) do inc(I);
// read next string
if I <= length(AValue) then begin
if AValue[I] = QuoteChar then begin
// next string is quoted
J := I + 1;
while (J <= length(AValue)) and ((AValue[J] <> QuoteChar) or
((J+1 <= length(AValue)) and (AValue[J+1] = QuoteChar))) do
if (J <= length(AValue)) and (AValue[J] = QuoteChar) then
inc(J, 2)
else
inc(J);
// J is position of closing quote
Add(StringReplace(Copy(AValue, I+1, J-I-1), QuoteChar + QuoteChar, QuoteChar, [rfReplaceAll]));
I := J + 1;
end
else begin
// next string is not quoted
J := I;
if not StrictDelimiter then
while (J <= length(AValue)) and (ord(AValue[J]) > ord(' ')) and (AValue[J] <> Delimiter) do inc(J)
else
while (J <= length(AValue)) and (AValue[J] <> Delimiter) do inc(J);
Add(copy(AValue, I, J-i));
I := J;
end;
end
else
if aNotFirst then Add('');
// skip spaces
if not StrictDelimiter then
while (I <= length(AValue)) and (ord(AValue[I]) <= ord(' ')) do inc(I);
aNotFirst:=true;
end;
finally
EndUpdate;
end;
end;
{$IFEND}
function DetermineBrowser(const UserAgentStr : string) : TBrowser; begin
Result := TBrowser(RCaseOf(UserAgentStr, ['MSIE', 'Firefox', 'Chrome', 'Safari', 'Opera', 'Konqueror'])+1);
// Note string order must match order in TBrowser enumeration above
if (Result = brSafari) and // Which Safari?
(Pos('Mobile', UserAgentStr) > 0) and
(Pos('Apple', UserAgentStr) > 0) then
Result := brMobileSafari
end;
function Extract(const Delims : array of string; var S : string; var Matches : TStringList; EndCom : string = '*/'; Remove : boolean = true) : boolean;
var
I, J, K : integer;
Points : array of integer;
Rest : string;
begin
Result := false;
if Matches <> nil then Matches.Clear;
SetLength(Points, length(Delims));
J := 1;
Rest := '';
for I := 0 to high(Delims) do begin
K := J;
J := PosEx(Delims[I], S, J);
if ((J - K) > 15000) or ((I > 0) and (Delims[I] <> EndCom) and
(Delims[I] <> ' ') and ((J - K) > 2800)) then exit;
if J = 0 then begin
for J := I to High(Delims) do
Rest := Rest + Delims[J];
if Trim(Rest) = '' then begin
Points[I] := length(S)+1;
SetLength(Points, I + 1);
break
end
else
exit;
end;
Points[I] := J;
inc(J, length(Delims[I]));
end;
for I := 0 to high(Points)-1 do begin
J := Points[I] + length(Delims[I]);
Matches.Add(trim(copy(S, J, Points[I+1]-J)));
end;
if Remove then S := copy(S, Points[high(Points)] + length(Delims[high(Points)]), length(S));
Result := true
end;
function Explode(Delim : char; const S : string; Separator : char = '=') : TStringList;
var
I : integer;
begin
Result := TStringList.Create;
Result.StrictDelimiter := true;
Result.Delimiter := Delim;
Result.DelimitedText := S;
Result.NameValueSeparator := Separator;
for I := 0 to Result.Count-1 do Result[I] := trim(Result[I]);
end;
function FirstDelimiter(const Delimiters, S : string; Offset : integer = 1) : integer;
var
I : integer;
begin
for Result := Offset to length(S) do
for I := 1 to length(Delimiters) do
if Delimiters[I] = S[Result] then exit;
Result := 0;
end;
function RPosEx(const Substr, Str : string; Offset : integer = 1) : integer;
var
I : integer;
begin
Result := PosEx(Substr, Str, Offset);
while Result <> 0 do begin
I := PosEx(Substr, Str, Result+1);
if I = 0 then
break
else
Result := I
end;
end;
function CountStr(const Substr, Str : string; UntilStr : string = '') : integer;
var
I, J : integer;
begin
I := 0;
Result := 0;
J := Pos(UntilStr, Str);
repeat
I := PosEx(Substr, Str, I+1);
if (J <> 0) and (J < I) then exit;
if I <> 0 then inc(Result);
until I = 0;
end;
function StrToJS(const S : string; UseBR : boolean = false) : string;
var
I, J : integer;
BR : string;
begin
BR := IfThen(UseBR, '<br/>', '\n');
Result := AnsiReplaceStr(S, '"', '\"');
Result := AnsiReplaceStr(Result, ^M^J, BR);
Result := AnsiReplaceStr(Result, ^M, BR);
Result := AnsiReplaceStr(Result, ^J, BR);
if (Result <> '') and (Result[1] = #3) then begin // Is RegEx
delete(Result, 1, 1);
if Pos('/', Result) <> 1 then Result := '/' + Result + '/';
end
else begin
I := pos('%', Result);
if (pos(';', Result) = 0) and (I <> 0) and ((length(Result) > 1) and (I < length(Result)) and (Result[I+1] in ['0'..'9'])) then begin // Has param place holder, ";" disable place holder
J := FirstDelimiter(' "''[]{}><=!*-+/,', Result, I+2);
if J = 0 then J := length(Result)+1;
if J <> (length(Result)+1) then begin
insert('+"', Result, J);
Result := Result + '"';
end;
if I <> 1 then begin
insert('"+', Result, I);
Result := '"' + Result;
end;
end
else
if (I = 1) and (length(Result) > 1) and (Result[2] in ['a'..'z', 'A'..'Z']) then
Result := copy(Result, 2, length(Result))
else
Result := '"' + Result + '"'
end;
end;
function CaseOf(const S : string; const Cases : array of string) : integer; begin
for Result := 0 to high(Cases) do
if SameText(S, Cases[Result]) then exit;
Result := -1;
end;
function RCaseOf(const S : string; const Cases : array of string) : integer; begin
for Result := 0 to high(Cases) do
if pos(Cases[Result], S) <> 0 then exit;
Result := -1;
end;
function EnumToJSString(TypeInfo : PTypeInfo; Value : integer) : string;
var
I : integer;
JS: string;
begin
Result := '';
JS := GetEnumName(TypeInfo, Value);
for I := 1 to length(JS) do
if JS[I] in ['A'..'Z'] then begin
Result := LowerCase(copy(JS, I, 100));
if Result = 'perc' then Result := '%';
exit
end;
end;
function SetPaddings(Top : integer; Right : integer = 0; Bottom : integer = -1; Left : integer = 0; CSSUnit : TCSSUnit = cssPX;
Header : boolean = true) : string;
begin
Result := Format('%s%d%3:s %2:d%3:s', [IfThen(Header, 'padding: ', ''), Top, Right, EnumToJSString(TypeInfo(TCSSUnit), ord(CSSUnit))]);
if Bottom <> -1 then
Result := Result + Format(' %d%2:s %1:d%2:s', [Bottom, Left, EnumToJSString(TypeInfo(TCSSUnit), ord(CSSUnit))]);
end;
function SetMargins(Top : integer; Right : integer = 0; Bottom : integer = 0; Left : integer = 0; CSSUnit : TCSSUnit = cssNone;
Header : boolean = false) : string;
begin
Result := Format('%s%d%5:s %2:d%5:s %3:d%5:s %4:d%s', [IfThen(Header, 'margin: ', ''), Top, Right, Bottom, Left,
EnumToJSString(TypeInfo(TCSSUnit), ord(CSSUnit))])
end;
function Before(const BeforeS, AfterS, S : string) : boolean;
var
I, J : integer;
begin
I := pos(BeforeS, S);
J := pos(AfterS, S);
Result := (I <> 0) and (((J <> 0) and (I < J)) or (J = 0));
end;
function First(const A : array of string; const S : string) : integer;
var
I, J : integer;
M : array of integer;
begin
SetLength(M, Length(A));
for I := 0 to High(A) do begin
M[I] := pos(A[I], S);
if M[I] = 0 then
M[I] := MAXINT;
end;
J := MinIntValue(M);
if (J = 0) or (J = MAXINT) then
Result := -1
else
for I := 0 to High(M) do
if J = M[I] then begin
Result := I;
exit;
end;
end;
function Between(const S, BeforeS, AfterS : string; var T : string) : boolean;
var
I, J, K : integer;
begin
Result := false;
I := pos(S, T);
if I <> 0 then begin
J := PosEx(AfterS, T, I);
K := RPosEx(BeforeS, copy(T, 1, J));
if K <> 0 then
Result := K < I;
end;
end;
function BetweenFirst(const S, BeforeS, AfterS : string; var T : string) : boolean;
var
I, J : integer;
begin
Result := false;
I := pos(BeforeS, T);
if I <> 0 then begin
J := PosEx(AfterS, T, I);
Result := pos(S, copy(T, I+1, J-I)) <> 0;
end;
end;
function GetBetween(const A, B, Line : string) : string;
var
I, J : integer;
begin
I := pos(A, Line);
J := posex(B, Line, I + length(A));
if (I = 0) or (J = 0) then
Result := ''
else
Result := Trim(copy(Line, I + length(A), J- (I + length(A))));
end;
function IsUpperCase(S : string) : boolean;
var
I : integer;
begin
Result := false;
for I := 1 to length(S) do
if S[I] in ['a'..'z'] then exit;
Result := true;
end;
function SpaceIdents(const aLevel: integer; const aWidth: string = ' '): string;
var
c: integer;
begin
Result := '';
if aLevel < 1 then Exit;
for c := 1 to aLevel do Result := Result + aWidth;
end;
function MinValueOf(Values : array of integer; const MinValue : integer = 0) : integer;
var
I : integer;
begin
for I := 0 to High(Values) do
if Values[I] <= MinValue then Values[I] := MAXINT;
Result := MinIntValue(Values);
// if all are the minimum value then return 0
if Result = MAXINT then Result := MinValue;
end;
function BeautifyJS(const AScript : string; const StartingLevel : integer = 0; SplitHTMLNewLine : boolean = true) : string;
var
pBlockBegin, pBlockEnd, pPropBegin, pPropEnd, pStatEnd, {pFuncBegin,} pSqrBegin, pSqrEnd,
pFunction, pString, pOpPlus, pOpMinus, pOpTime, {pOpDivide,} pOpEqual, pRegex : integer;
P, Lvl : integer;
Res : string;
function AddNewLine(const atPos : integer; const AddText : string) : integer; begin
insert(^J + AddText, Res, atPos);
Result := length(^J + AddText);
end;
function SplitHTMLString(AStart, AEnd : integer): integer; // range is including the quotes
var
br,pe,ps: integer;
s: string;
begin
Result := AEnd;
s := copy(res, AStart, AEnd);
// find html new line (increase verbosity)
br := PosEx('<br>', res, AStart+1);
pe := PosEx('</p>', res, AStart+1);
ps := MinValueOf([br,pe]);
// html new line is found
// Result-5 is to skip the mark at the end of the line
while (ps > 0) and (ps < Result-5) do begin
s := '"+'^J+SpaceIdents(Lvl)+SpaceIdents(3)+'"';
Insert(s, res, ps+4);
Result := Result + length(s);
// find next new line
br := PosEx('<br>', res, ps+length(s)+4);
pe := PosEx('</p>', res, ps+length(s)+4);
ps := MinValueOf([br,pe]);
end;
end;
var
Backward, onReady, inProp, inNew : boolean;
LvlProp, i, j, k : integer;
begin
// skip empty script
if AScript = '' then exit;
P := 1;
Res := AScript;
inNew := true;
inProp := false;
onReady := false;
LvlProp := 1000; // max identation depth
Lvl := StartingLevel;
// remove space in the beginning
if Res[1] = ' ' then Delete(Res, 1, 1);
// proceed the whole generated script by scanning the text
while (p > 0) and (p < Length(Res)-1) do begin
// chars that will be processed (10 signs)
inc(P);
pString := PosEx('"', Res, P);
pOpEqual := PosEx('=', Res, P);
pOpPlus := PosEx('+', Res, P);
pOpMinus := PosEx('-', Res, P);
pOpTime := PosEx('*', Res, P);
pBlockBegin := PosEx('{', Res, P);
pBlockEnd := PosEx('}', Res, P);
pPropBegin := PosEx(':', Res, P);
pPropEnd := PosEx(',', Res, P);
pStatEnd := PosEx(';', Res, P);
pSqrBegin := PosEx('[', Res, P);
pSqrEnd := PosEx(']', Res, P);
pFunction := PosEx('function', Res, P);
pRegex := PosEx('regex:', Res, P);
// process what is found first
P := MinValueOf([pBlockBegin, pBlockEnd, pPropBegin, pPropEnd, pStatEnd, {pFuncBegin,} pSqrBegin, pSqrEnd,
pString, pOpEqual, pOpPlus, pOpMinus, pOpTime, {pOpDivide,} pFunction, pRegex]);
// keep Ext's onReady function at the first line
if (not onReady) and (P > 0) and (length(Res) >= P) and (res[p] = 'f') then
if Copy(Res, P-9, 9) = '.onReady(' then begin
onReady := true;
continue;
end;
// now, let's proceed with what char is found
if P > 0 then begin
// reset inProp status based on minimum lvlProp
if inProp then inProp := Lvl >= LvlProp; // or (lvl > StartingLevel);
// process chars
case res[p] of // skip string by jump to the next mark
'"' :
if Res[P+1] = '"' then // skip empty string
inc(P)
else
if SplitHTMLNewLine then // proceed html string value
P := SplitHTMLString(P, PosEx('"', Res, P+1))
else // just skip the string
P := PosEx('"', Res, P+1);
'=', '*', '/': begin // neat the math operator
insert(' ', Res, P); inc(P);
if Res[P+1] = '=' then inc(P); // double equals
insert(' ', Res, P+1); inc(P);
end;
'{' : // statement block begin
if Res[P+1] = '}' then // skip empty statement
inc(P)
else begin
inc(Lvl); // Increase identation level
inProp := false;
inc(P, AddNewLine(P+1, SpaceIdents(Lvl)));
end;
'}' : begin // statement block end
// some pair values are treated specially: keep },{ pair intact to save empty lines
if (length(Res) >= (P+2)) and (Res[P+1] = ',') and (Res[P+2] = '{') then begin
dec(Lvl);
inc(P, AddNewLine(P, SpaceIdents(Lvl)) + 2);
inc(Lvl);
inc(P, AddNewLine(P+1, SpaceIdents(Lvl)));
continue;
end;
if not inNew then // special })] pair for items property group object ending
inNew := (Res[P+1] = ')') and (Res[P+2] = ']');
// common treatment for block ending
dec(Lvl); // decrease identation level
P := P + AddNewLine(P, SpaceIdents(lvl));
// bring the following trails
I := P;
Backward := false;
repeat
inc(I);
// find multiple statement block end
if (length(Res) >= I) and (Res[I] in ['{', '}', ';']) then backward := true;
if inNew and (length(Res) >= I) and (Res[I] = ']') then backward := true;
until (I > length(Res)) or (Res[I] = ',') or backward;
if not backward then // add new line
inc(P, AddNewLine(i+1, SpaceIdents(Lvl)))
else // suspend new line to proceed with next block
P := i-1;
end;
';' : begin // end of statement
// fix to ExtPascal parser bug which become helpful, because it could be mark of new object creation
if (length(Res) >= P+2) and (Res[P+1] = ' ') and (Res[P+2] = 'O') then begin // ; O string
inProp := false;
delete(Res, P+1, 1);
inc(P, AddNewLine(P+1, ^J+SpaceIdents(Lvl)));
continue;
end;
if (length(Res) >= P+1) and (Res[P+1] = '}') then continue; // skip if it's already at the end of block
if P = length(Res) then // skip identation on last end of statement
inc(P, AddNewLine(P+1, SpaceIdents(StartingLevel-1)))
else
inc(P, AddNewLine(P+1, SpaceIdents(lvl)));
end;
'[' : begin // square declaration begin
if Res[P+1] = '[' then begin // double square treat as sub level
inc(Lvl);
inc(P, AddNewLine(p+1, SpaceIdents(Lvl)));
inProp := true;
continue;
end;
// find special pair within square block
i := PosEx(']', Res, P+1);
j := PosEx('{', Res, P+1);
k := PosEx('new ', Res, P+1);
if (j > 0) and (j < i) then begin // new block found in property value
inc(Lvl);
// new object found in property value, add new line
if (k > 0) and (k < i) then begin
inNew := true;
inc(P, AddNewLine(P+1, SpaceIdents(Lvl)));
end
else begin // move forward to next block beginning
inNew := false;
inc(J, AddNewLine(J+1, SpaceIdents(Lvl)));
P := j-1;
end;
end
else // no sub block found, move at the end of square block
P := i;
end;
']' : // square declaration end
if Res[P-1] = ']' then begin // double square ending found, end sub block
dec(Lvl);
inc(P, AddNewLine(P, SpaceIdents(Lvl)));
end
else // skip processing if not part of square sub block
if not inNew then
continue
else begin // end of block square items group
dec(Lvl);
inc(P, AddNewLine(P, SpaceIdents(Lvl)));
end;
':' : begin // property value begin
if Res[P+1] <> ' ' then begin // separate name:value with a space
insert(' ', Res, P+1);
inc(P);
end;
inProp := true;
if Lvl < LvlProp then LvlProp := Lvl; // get minimum depth level of property
end;
',' : // property value end
if inProp then inc(P, AddNewLine(P+1, SpaceIdents(Lvl)));
'f' : begin // independent function definition
if inProp then Continue; // skip function if within property
if copy(Res, P, 8) = 'function' then // add new line for independent function
inc(P, AddNewLine(P, SpaceIdents(Lvl)) + 7);
end;
'r' : begin
P := PosEx('/', Res, P);
P := PosEx('/', Res, P+1);
end;
end;
end;
end;
Result := Res;
end;
function BeautifyCSS(const AStyle : string) : string;
var
pOpen, pClose, pProp, pEnd, pString : integer;
P, Lvl : integer;
Res : string;
begin
P := 1;
Lvl := 0;
Res := ^J+AStyle;
while P > 0 do begin
inc(P);
pString := PosEx('''', Res, P);
pOpen := PosEx('{', Res, P);
pClose := PosEx('}', Res, P);
pProp := PosEx(':', Res, P);
pEnd := PosEx(';', Res, P);
P := MinValueOf([pString, pOpen, pClose, pProp, pEnd]);
if P > 0 then
case Res[p] of
'''' : P := PosEx('''', Res, P+1);
'{' : begin
Inc(lvl);
if (res[p-1] <> ' ') then begin
Insert(' ', res, p);
p := p+1;
end;
Insert(^J+SpaceIdents(lvl), res, p+1);
p := p + Length(^J+SpaceIdents(lvl));
end;
'}' : begin
dec(lvl);
insert(^J+SpaceIdents(lvl), Res, P);
inc(P, length(^J+SpaceIdents(Lvl)));
insert(^J+SpaceIdents(lvl), Res, P+1);
inc(P, length(^J+SpaceIdents(Lvl)));
end;
':' :
if Res[P+1] <> ' ' then begin
insert(' ', Res, P+1);
inc(P);
end;
';' : begin
if Res[P+1] = '}' then continue;
if Res[P+1] = ' ' then delete(Res, P+1, 1);
insert(^J+SpaceIdents(Lvl), Res, P+1);
inc(P, length(^J+SpaceIdents(Lvl)));
end;
end;
end;
Result := Res;
end;
function LengthRegExp(Rex : string; CountAll : Boolean = true) : integer;
var
Slash, I : integer;
N : string;
begin
Result := 0;
N := '';
Slash := 0;
for I := 1 to length(Rex) do
case Rex[I] of
'\' :
if CountAll and (I < length(Rex)) and (Rex[I+1] in ['d', 'D', 'l', 'f', 'n', 'r', 's', 'S', 't', 'w', 'W']) then inc(Slash);
',', '{' : begin
N := '';
if Slash > 1 then begin
inc(Result, Slash);
Slash := 0;
end;
end;
'}' : begin
inc(Result, StrToIntDef(N, 0));
N := '';
dec(Slash);
end;
'0'..'9' : N := N + Rex[I];
'?' : inc(Slash);
'*' :
if not CountAll then begin
Result := -1;
exit;
end;
end;
inc(Result, Slash);
end;
function JSDateToDateTime(JSDate : string) : TDateTime; begin
Result := EncodeDateTime(StrToInt(copy(JSDate, 12, 4)), AnsiIndexStr(copy(JSDate, 5, 3), ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']) +1,
StrToInt(copy(JSDate, 9, 2)), StrToInt(copy(JSDate, 17, 2)), StrToInt(copy(JSDate, 20, 2)), StrToInt(copy(JSDate, 23, 2)), 0);
end;
function IsNumber(S : string) : boolean;
var
C : integer;
D : double;
begin
val(S, D, C);
Result := C = 0;
end;
function Encrypt(Value : string) : string;
var
I, F1, F2, T : integer;
B : byte;
NValue : string;
begin
Randomize;
B := Random(256);
NValue := char(B);
F1 := 1; F2 := 2;
for I := 1 to length(Value) do begin
T := F2;
inc(F2, F1);
F1 := T;
NValue := NValue + char(ord(Value[I]) + (B*F2));
end;
Result := '';
for I := 1 to Length(NValue) do
Result := Result + IntToHex(byte(NValue[I]), 2);
end;
function Decrypt(Value : string) : string;
var
I, F1, F2, T : integer;
B : byte;
NValue : string;
begin
Result := '';
if Value = '' then exit;
NValue := '';
for I := 0 to (length(Value)-1) div 2 do
NValue := NValue + char(StrToInt('$' + copy(Value, I*2+1, 2)));
B := ord(NValue[1]);
F1 := 1; F2 := 2;
for I := 2 to length(NValue) do begin
T := F2;
inc(F2, F1);
F1 := T;
Result := Result + char(ord(NValue[I]) - (B*F2))
end;
end;
procedure StrToTStrings(const S : string; List : TStrings);
var
I: Integer;
begin
List.DelimitedText := S;
for I := 0 to List.Count - 1 do
List[I] := Trim(List[I]);
end;
{
Decodes a URL encoded string to a normal string
@param Encoded URL encoded string to convert
@return A decoded string
}
function URLDecode(const Encoded : string) : string;
var
I : integer;
begin
Result := {$IFDEF MSWINDOWS}UTF8ToAnsi{$ENDIF}(Encoded);
I := pos('%', Result);
while I <> 0 do begin
Result[I] := chr(StrToIntDef('$' + copy(Result, I+1, 2), 32));
Delete(Result, I+1, 2);
I := pos('%', Result);
end;
end;
{
Encodes a string to fit in URL encoding form
@param Decoded Normal string to convert
@return An URL encoded string
}
function URLEncode(const Decoded : string) : string;
const
Allowed = ['A'..'Z','a'..'z', '*', '@', '.', '_', '-', '0'..'9', '$', '!', '''', '(', ')'];
var
I : integer;
begin
Result := '';
for I := 1 to length(Decoded) do
if Decoded[I] in Allowed then
Result := Result + Decoded[I]
else
Result := Result + '%' + IntToHex(ord(Decoded[I]), 2);
end;
end.