forked from TOMMMMMMMMMC/GreatPosterWall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.class.php
1704 lines (1598 loc) · 81.7 KB
/
text.class.php
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
<?
class Text {
/**
* Array of valid tags; tag => max number of attributes
* @var array $ValidTags
*/
private static $ValidTags = array(
'b' => 0, 'u' => 0, 'i' => 0, 's' => 0, '*' => 0, '#' => 0, 'artist' => 0, 'user' => 0, 'n' => 0, 'inlineurl' => 0, 'inlinesize' => 1, 'headline' => 1, 'align' => 1, 'color' => 1, 'colour' => 1, 'size' => 1, 'url' => 1, 'img' => 1, 'quote' => 1, 'pre' => 1, 'code' => 1, 'tex' => 0, 'hide' => 1, 'spoiler' => 1, 'plain' => 0, 'important' => 0, 'torrent' => 0, 'rule' => 0, 'mature' => 1, 'table' => 1, 'tr' => 1, 'td' => 1, 'lang' => 1,
'mediainfo' => 0, 'bdinfo' => 0, 'comparison' => 10
);
/**
* Array of smilies; code => image file in STATIC_SERVER/common/smileys
* @var array $Smileys
*/
private static $Smileys = array(
':angry:' => 'angry.gif',
':-D' => 'biggrin.gif',
':D' => 'biggrin.gif',
':|' => 'blank.gif',
':-|' => 'blank.gif',
':blush:' => 'blush.gif',
':cool:' => 'cool.gif',
':'(' => 'crying.gif',
':crying:' => 'crying.gif',
'>.>' => 'eyesright.gif',
':frown:' => 'frown.gif',
'<3' => 'heart.gif',
':unsure:' => 'hmm.gif',
//':\\' => 'hmm.gif',
':whatlove:' => 'ilu.gif',
':lol:' => 'laughing.gif',
':loveflac:' => 'loveflac.gif',
':flaclove:' => 'loveflac.gif',
':ninja:' => 'ninja.gif',
':no:' => 'no.gif',
':nod:' => 'nod.gif',
':ohno:' => 'ohnoes.gif',
':ohnoes:' => 'ohnoes.gif',
':omg:' => 'omg.gif',
':o' => 'ohshit.gif',
':O' => 'ohshit.gif',
':paddle:' => 'paddle.gif',
':(' => 'sad.gif',
':-(' => 'sad.gif',
':shifty:' => 'shifty.gif',
':sick:' => 'sick.gif',
':)' => 'smile.gif',
':-)' => 'smile.gif',
':sorry:' => 'sorry.gif',
':thanks:' => 'thanks.gif',
':P' => 'tongue.gif',
':p' => 'tongue.gif',
':-P' => 'tongue.gif',
':-p' => 'tongue.gif',
':wave:' => 'wave.gif',
';-)' => 'wink.gif',
':wink:' => 'wink.gif',
':creepy:' => 'creepy.gif',
':worried:' => 'worried.gif',
':wtf:' => 'wtf.gif',
':wub:' => 'wub.gif',
);
/**
* Processed version of the $Smileys array, see {@link smileys}
* @var array $ProcessedSmileys
*/
private static $ProcessedSmileys = array();
/**
* Whether or not to turn images into URLs (used inside [quote] tags).
* This is an integer reflecting the number of levels we're doing that
* transition, i.e. images will only be displayed as images if $NoImg <= 0.
* By setting this variable to a negative number you can delay the
* transition to a deeper level of quotes.
* @var int $NoImg
*/
private static $NoImg = 0;
/**
* Internal counter for the level of recursion in to_html
* @var int $Levels
*/
private static $Levels = 0;
/**
* The maximum amount of nesting allowed (exclusive)
* In reality n-1 nests are shown.
* @var int $MaximumNests
*/
private static $MaximumNests = 10;
/**
* Used to detect and disable parsing (e.g. TOC) within quotes
* @var int $InQuotes
*/
private static $InQuotes = 0;
/**
* Used to [hide] quote trains starting with the specified depth (inclusive)
* @var int $NestsBeforeHide
*
* This defaulted to 5 but was raised to 10 to effectively "disable" it until
* an optimal number of nested [quote] tags is chosen. The variable $MaximumNests
* effectively overrides this variable, if $MaximumNests is less than the value
* of $NestsBeforeHide.
*/
private static $NestsBeforeHide = 10;
/**
* Array of headlines for Table Of Contents (TOC)
* @var array $HeadLines
*/
private static $Headlines;
/**
* Counter for making headline URLs unique
* @var int $HeadLines
*/
private static $HeadlineID = 0;
/**
* Depth
* @var array $HeadlineLevels
*/
private static $HeadlineLevels = array('1', '2', '3', '4');
/**
* TOC enabler
* @var bool $TOC
*/
public static $TOC = false;
/**
* Output BBCode as XHTML
* @param string $Str BBCode text
* @param bool $OutputTOC Ouput TOC near (above) text
* @param int $Min See {@link parse_toc}
* @return string
*/
public static function full_format($Str, $OutputTOC = true, $Min = 3) {
global $Debug;
$Debug->set_flag('BBCode start');
$Str = display_str($Str);
self::$Headlines = array();
//Inline links
$URLPrefix = '(\[url\]|\[url\=|\[img\=|\[img\])';
$Str = preg_replace('/' . $URLPrefix . '\s+/i', '$1', $Str);
$Str = preg_replace('/(?<!' . $URLPrefix . ')http(s)?:\/\//i', '$1[inlineurl]http$2://', $Str);
// For anonym.to and archive.org links, remove any [inlineurl] in the middle of the link
$Str = preg_replace_callback(
'/(?<=\[inlineurl\]|' . $URLPrefix . ')(\S*\[inlineurl\]\S*)/m',
function ($matches) {
return str_replace("[inlineurl]", "", $matches[0]);
},
$Str
);
if (self::$TOC) {
$Str = preg_replace('/(\={5})([^=].*)\1/i', '[headline=4]$2[/headline]', $Str);
$Str = preg_replace('/(\={4})([^=].*)\1/i', '[headline=3]$2[/headline]', $Str);
$Str = preg_replace('/(\={3})([^=].*)\1/i', '[headline=2]$2[/headline]', $Str);
$Str = preg_replace('/(\={2})([^=].*)\1/i', '[headline=1]$2[/headline]', $Str);
} else {
$Str = preg_replace('/(\={4})([^=].*)\1/i', '[inlinesize=3]$2[/inlinesize]', $Str);
$Str = preg_replace('/(\={3})([^=].*)\1/i', '[inlinesize=5]$2[/inlinesize]', $Str);
$Str = preg_replace('/(\={2})([^=].*)\1/i', '[inlinesize=7]$2[/inlinesize]', $Str);
}
$HTML = nl2br(self::to_html(self::parse($Str)));
if (self::$TOC && $OutputTOC) {
$HTML = self::parse_toc($Min) . $HTML;
}
$Debug->set_flag('BBCode end');
return $HTML;
}
public static function strip_bbcode($Str) {
$Str = display_str($Str);
//Inline links
$Str = preg_replace('/(?<!(\[url\]|\[url\=|\[img\=|\[img\]))http(s)?:\/\//i', '$1[inlineurl]http$2://', $Str);
return nl2br(self::raw_text(self::parse($Str)));
}
private static function valid_url($Str, $Extension = '', $Inline = false) {
$Regex = '/^';
$Regex .= '(https?|ftps?|irc):\/\/'; // protocol
$Regex .= '(\w+(:\w+)?@)?'; // user:pass@
$Regex .= '(';
$Regex .= '(([0-9]{1,3}\.){3}[0-9]{1,3})|'; // IP or...
$Regex .= '(localhost(\:[0-9]{1,5})?)|'; // locahost or...
$Regex .= '(([a-z0-9\-\_]+\.)+\w{2,6})'; // sub.sub.sub.host.com
$Regex .= ')';
$Regex .= '(:[0-9]{1,5})?'; // port
$Regex .= '\/?'; // slash?
$Regex .= '(\/?[0-9a-z\-_.,&=@~%\/:;()+|!#]+)*'; // /file
if (!empty($Extension)) {
$Regex .= $Extension;
}
// query string
if ($Inline) {
$Regex .= '(\?([0-9a-z\-_.,%\/\@~&=:;()+*\^$!#|?]|\[\d*\])*)?';
} else {
$Regex .= '(\?[0-9a-z\-_.,%\/\@[\]~&=:;()+*\^$!#|?]*)?';
}
$Regex .= '(#[a-z0-9\-_.,%\/\@[\]~&=:;()+*\^$!]*)?'; // #anchor
$Regex .= '$/i';
return preg_match($Regex, $Str, $Matches);
}
public static function local_url($Str) {
$URLInfo = parse_url($Str);
if (!$URLInfo) {
return false;
}
$Host = $URLInfo['host'];
// If for some reason your site does not require subdomains or contains a directory in the SITE_URL, revert to the line below.
if (empty($URLInfo['port']) && $Host === SITE_HOST) {
$URL = '';
if (!empty($URLInfo['path'])) {
$URL .= ltrim($URLInfo['path'], '/'); // Things break if the path starts with '//'
}
if (!empty($URLInfo['query'])) {
$URL .= "?$URLInfo[query]";
}
if (!empty($URLInfo['fragment'])) {
$URL .= "#$URLInfo[fragment]";
}
return $URL ? "/$URL" : false;
} else {
return false;
}
}
/*
How parsing works
Parsing takes $Str, breaks it into blocks, and builds it into $Array.
Blocks start at the beginning of $Str, when the parser encounters a [, and after a tag has been closed.
This is all done in a loop.
EXPLANATION OF PARSER LOGIC
1) Find the next tag (regex)
1a) If there aren't any tags left, write everything remaining to a block and return (done parsing)
1b) If the next tag isn't where the pointer is, write everything up to there to a text block.
2) See if it's a [[wiki-link]] or an ordinary tag, and get the tag name
3) If it's not a wiki link:
3a) check it against the self::$ValidTags array to see if it's actually a tag and not [bullshit]
If it's [not a tag], just leave it as plaintext and move on
3b) Get the attribute, if it exists [name=attribute]
4) Move the pointer past the end of the tag
5) Find out where the tag closes (beginning of [/tag])
5a) Different for different types of tag. Some tags don't close, others are weird like [*]
5b) If it's a normal tag, it may have versions of itself nested inside - e.g.:
[quote=bob]*
[quote=joe]I am a redneck!**[/quote]
Me too!
***[/quote]
If we're at the position *, the first [/quote] tag is denoted by **.
However, our quote tag doesn't actually close there. We must perform
a loop which checks the number of opening [quote] tags, and make sure
they are all closed before we find our final [/quote] tag (***).
5c) Get the contents between [open] and [/close] and call it the block.
In many cases, this will be parsed itself later on, in a new parse() call.
5d) Move the pointer past the end of the [/close] tag.
6) Depending on what type of tag we're dealing with, create an array with the attribute and block.
In many cases, the block may be parsed here itself. Stick them in the $Array.
7) Increment array pointer, start again (past the end of the [/close] tag)
*/
private static function parse($Str) {
$i = 0; // Pointer to keep track of where we are in $Str
$Len = strlen($Str);
$Array = array();
$ArrayPos = 0;
$StrLC = strtolower($Str);
while ($i < $Len) {
$Block = '';
// 1) Find the next tag (regex)
// [name(=attribute)?]|[[wiki-link]]
$IsTag = preg_match("/((\[[a-zA-Z*#]+)(=(?:[^\n'\"\[\]]|\[\d*\])+)?\])|(\[\[[^\n\"'\[\]]+\]\])/", $Str, $Tag, PREG_OFFSET_CAPTURE, $i);
// 1a) If there aren't any tags left, write everything remaining to a block
if (!$IsTag) {
// No more tags
$Array[$ArrayPos] = substr($Str, $i);
break;
}
// 1b) If the next tag isn't where the pointer is, write everything up to there to a text block.
$TagPos = $Tag[0][1];
if ($TagPos > $i) {
$Array[$ArrayPos] = substr($Str, $i, $TagPos - $i);
++$ArrayPos;
$i = $TagPos;
}
// 2) See if it's a [[wiki-link]] or an ordinary tag, and get the tag name
if (!empty($Tag[4][0])) { // Wiki-link
$WikiLink = true;
$TagName = Wiki::unicode_decode(substr($Tag[4][0], 2, -2));
//file_put_contents('/var/www/log', Wiki::unicode_decode($TagName)."\n", FILE_APPEND);
$Attrib = '';
} else { // 3) If it's not a wiki link:
$WikiLink = false;
$TagName = strtolower(substr($Tag[2][0], 1));
//3a) check it against the self::$ValidTags array to see if it's actually a tag and not [bullshit]
if (!isset(self::$ValidTags[$TagName])) {
$Array[$ArrayPos] = substr($Str, $i, ($TagPos - $i) + strlen($Tag[0][0]));
$i = $TagPos + strlen($Tag[0][0]);
++$ArrayPos;
continue;
}
$MaxAttribs = self::$ValidTags[$TagName];
// 3b) Get the attribute, if it exists [name=attribute]
if (!empty($Tag[3][0])) {
$Attrib = substr($Tag[3][0], 1);
} else {
$Attrib = '';
}
}
// 4) Move the pointer past the end of the tag
$i = $TagPos + strlen($Tag[0][0]);
// 5) Find out where the tag closes (beginning of [/tag])
// Unfortunately, BBCode doesn't have nice standards like XHTML
// [*], [img=...], and http:// follow different formats
// Thus, we have to handle these before we handle the majority of tags
//5a) Different for different types of tag. Some tags don't close, others are weird like [*]
if ($TagName == 'img' && !empty($Tag[3][0])) { //[img=...]
$Block = ''; // Nothing inside this tag
// Don't need to touch $i
} elseif ($TagName == 'inlineurl') { // We did a big replace early on to turn http:// into [inlineurl]http://
// Let's say the block can stop at a newline or a space
$CloseTag = strcspn($Str, " \n\r", $i);
if ($CloseTag === false) { // block finishes with URL
$CloseTag = $Len;
}
if (preg_match('/[!,.?:]+$/', substr($Str, $i, $CloseTag), $Match)) {
$CloseTag -= strlen($Match[0]);
}
$URL = substr($Str, $i, $CloseTag);
if (substr($URL, -1) == ')' && substr_count($URL, '(') < substr_count($URL, ')')) {
$CloseTag--;
$URL = substr($URL, 0, -1);
}
$Block = $URL; // Get the URL
// strcspn returns the number of characters after the offset $i, not after the beginning of the string
// Therefore, we use += instead of the = everywhere else
$i += $CloseTag; // 5d) Move the pointer past the end of the [/close] tag.
} elseif ($WikiLink == true || $TagName == 'n') {
// Don't need to do anything - empty tag with no closing
} elseif ($TagName === '*' || $TagName === '#') {
// We're in a list. Find where it ends
$NewLine = $i;
do { // Look for \n[*]
$NewLine = strpos($Str, "\n", $NewLine + 1);
} while ($NewLine !== false && substr($Str, $NewLine + 1, 3) == "[$TagName]");
$CloseTag = $NewLine;
if ($CloseTag === false) { // block finishes with list
$CloseTag = $Len;
}
$Block = substr($Str, $i, $CloseTag - $i); // Get the list
$i = $CloseTag; // 5d) Move the pointer past the end of the [/close] tag.
} else {
//5b) If it's a normal tag, it may have versions of itself nested inside
$CloseTag = $i - 1;
$InTagPos = $i - 1;
$NumInOpens = 0;
$NumInCloses = -1;
$InOpenRegex = '/\[(' . $TagName . ')';
if ($MaxAttribs > 0) {
$InOpenRegex .= "(=[^\n'\"\[\]]+)?";
}
$InOpenRegex .= '\]/i';
// Every time we find an internal open tag of the same type, search for the next close tag
// (as the first close tag won't do - it's been opened again)
do {
$CloseTag = strpos($StrLC, "[/$TagName]", $CloseTag + 1);
if ($CloseTag === false) {
$CloseTag = $Len;
break;
} else {
$NumInCloses++; // Majority of cases
}
// Is there another open tag inside this one?
$OpenTag = preg_match($InOpenRegex, $Str, $InTag, PREG_OFFSET_CAPTURE, $InTagPos + 1);
if (!$OpenTag || $InTag[0][1] > $CloseTag) {
break;
} else {
$InTagPos = $InTag[0][1];
$NumInOpens++;
}
} while ($NumInOpens > $NumInCloses);
// Find the internal block inside the tag
$Block = substr($Str, $i, $CloseTag - $i); // 5c) Get the contents between [open] and [/close] and call it the block.
$i = $CloseTag + strlen($TagName) + 3; // 5d) Move the pointer past the end of the [/close] tag.
}
// 6) Depending on what type of tag we're dealing with, create an array with the attribute and block.
switch ($TagName) {
case 'inlineurl':
$Array[$ArrayPos] = array('Type' => 'inlineurl', 'Attr' => $Block, 'Val' => '');
break;
case 'url':
$Array[$ArrayPos] = array('Type' => 'img', 'Attr' => $Attrib, 'Val' => $Block);
if (empty($Attrib)) { // [url]http://...[/url] - always set URL to attribute
$Array[$ArrayPos] = array('Type' => 'url', 'Attr' => $Block, 'Val' => '');
} else {
$Array[$ArrayPos] = array('Type' => 'url', 'Attr' => $Attrib, 'Val' => self::parse($Block));
}
break;
case 'quote':
$Array[$ArrayPos] = array('Type' => 'quote', 'Attr' => self::parse($Attrib), 'Val' => self::parse($Block));
break;
case 'img':
case 'image':
if (empty($Block)) {
$Block = $Attrib;
}
$Array[$ArrayPos] = array('Type' => 'img', 'Val' => $Block);
break;
case 'aud':
case 'mp3':
case 'audio':
if (empty($Block)) {
$Block = $Attrib;
}
$Array[$ArrayPos] = array('Type' => 'aud', 'Val' => $Block);
break;
case 'user':
$Array[$ArrayPos] = array('Type' => 'user', 'Val' => $Block);
break;
case 'artist':
$Array[$ArrayPos] = array('Type' => 'artist', 'Val' => $Block);
break;
case 'torrent':
$Array[$ArrayPos] = array('Type' => 'torrent', 'Val' => $Block);
break;
case 'tex':
$Array[$ArrayPos] = array('Type' => 'tex', 'Val' => $Block);
break;
case 'rule':
$Array[$ArrayPos] = array('Type' => 'rule', 'Val' => $Block);
break;
case 'pre':
case 'code':
case 'plain':
$Block = strtr($Block, array('[inlineurl]' => ''));
$Callback = function ($matches) {
$n = $matches[2];
$text = '';
if ($n < 5 && $n > 0) {
$e = str_repeat('=', $matches[2] + 1);
$text = $e . $matches[3] . $e;
}
return $text;
};
$Block = preg_replace_callback('/\[(headline)\=(\d)\](.*?)\[\/\1\]/i', $Callback, $Block);
$Block = preg_replace('/\[inlinesize\=3\](.*?)\[\/inlinesize\]/i', '====$1====', $Block);
$Block = preg_replace('/\[inlinesize\=5\](.*?)\[\/inlinesize\]/i', '===$1===', $Block);
$Block = preg_replace('/\[inlinesize\=7\](.*?)\[\/inlinesize\]/i', '==$1==', $Block);
$Array[$ArrayPos] = array('Type' => $TagName, 'Val' => $Block);
break;
case 'spoiler':
case 'hide':
$Array[$ArrayPos] = array('Type' => 'hide', 'Attr' => $Attrib, 'Val' => self::parse($Block));
break;
case 'mature':
$Array[$ArrayPos] = array('Type' => 'mature', 'Attr' => $Attrib, 'Val' => self::parse($Block));
break;
case '#':
case '*':
$Array[$ArrayPos] = array('Type' => 'list');
$Array[$ArrayPos]['Val'] = explode("[$TagName]", $Block);
$Array[$ArrayPos]['ListType'] = $TagName === '*' ? 'ul' : 'ol';
$Array[$ArrayPos]['Tag'] = $TagName;
foreach ($Array[$ArrayPos]['Val'] as $Key => $Val) {
$Array[$ArrayPos]['Val'][$Key] = self::parse(trim($Val));
}
break;
case 'n':
$ArrayPos--;
break; // n serves only to disrupt bbcode (backwards compatibility - use [pre])
case 'mediainfo':
if (strstr(strtolower($Block), 'disc size')) {
$Array[$ArrayPos] = array('Type' => 'bdinfo', 'Val' => $Block);
} else {
$Array[$ArrayPos] = array('Type' => 'mediainfo', 'Val' => $Block);
}
break;
case 'bdinfo':
$Array[$ArrayPos] = array('Type' => 'bdinfo', 'Val' => $Block);
break;
case 'comparison':
$Array[$ArrayPos] = array('Type' => $TagName, 'Val' => self::parse($Block));
if (!empty($Attrib) && $MaxAttribs > 0) {
$Array[$ArrayPos]['Attr'] = $Attrib;
}
break;
default:
if ($WikiLink == true) {
$Array[$ArrayPos] = array('Type' => 'wiki', 'Val' => $TagName);
} else {
// Basic tags, like [b] or [size=5]
$Array[$ArrayPos] = array('Type' => $TagName, 'Val' => self::parse($Block));
if (!empty($Attrib) && $MaxAttribs > 0) {
$Array[$ArrayPos]['Attr'] = strtolower($Attrib);
}
}
}
$ArrayPos++; // 7) Increment array pointer, start again (past the end of the [/close] tag)
}
return $Array;
}
private static function reduceHeadlinesLevel($l, $r) {
/*
1 3 3 3 3 1 2 4 4 4 2 4 4 4 2
1 3 3 3 3 1 2 4 4 4 2 4 4 4 2
1 2 2 2 2
2 4 4 4 2 4 4 4 2
2 3 3 3
2 4 4 4 2
2 3 3 3
2
1 2 2 2 2 1 2 3 3 3 2 3 3 3 2
*/
if ($l >= $r) {
// 1
return;
}
for ($i = $l + 1; $i <= $r; $i++) {
if (self::$Headlines[$i][0] == self::$Headlines[$l][0]) {
// 13331444 => 1333 1444
self::reduceHeadlinesLevel($l, $i - 1);
self::reduceHeadlinesLevel($i, $r);
return;
}
}
if (self::$Headlines[$l][0] + 1 < self::$Headlines[$l + 1][0]) {
// 1333 => 1222
$sub = self::$Headlines[$l + 1][0] - self::$Headlines[$l][0] - 1;
for ($i = $l + 1; $i <= $r; $i++) {
self::$Headlines[$i][0] -= $sub;
}
}
// 1222 => 222
self::reduceHeadlinesLevel($l + 1, $r);
}
/**
* Generates a navigation list for TOC
* @param int $Min Minimum number of headlines required for a TOC list
*/
public static function parse_toc($Min = 3) {
self::reduceHeadlinesLevel(0, count(self::$Headlines) - 1);
if (count(self::$Headlines) > $Min) {
$list = '<ol class="navigation_list">';
$i = 0;
$level = 0;
$off = 0;
$only13 = true;
foreach (self::$Headlines as $t) {
if ($t[0] == 2) {
$only13 = false;
break;
}
}
foreach (self::$Headlines as $t) {
$n = (int)$t[0];
if ($only13 && $n == 3) {
$n = 2;
}
if ($i === 0 && $n > 1) {
$off = $n - $level;
}
self::headline_level($n, $level, $list, $i, $off);
$list .= sprintf('<li><a href="#%2$s">%1$s</a>', $t[1], $t[2]);
$level = $n;
$off = 0;
$i++;
}
$list .= str_repeat('</li></ol>', $level);
$list .= "\n\n";
return $list;
}
}
/**
* Generates the list items and proper depth
*
* First check if the item should be higher than the current level
* - Close the list and previous lists
*
* Then check if the item should go lower than the current level
* - If the list doesn't open on level one, use the Offset
* - Open appropriate sub lists
*
* Otherwise the item is on the same as level as the previous item
*
* @param int $ItemLevel Current item level
* @param int $Level Current list level
* @param str $List reference to an XHTML string
* @param int $i Iterator digit
* @param int $Offset If the list doesn't start at level 1
*/
private static function headline_level(&$ItemLevel, &$Level, &$List, $i, &$Offset) {
if ($ItemLevel < $Level) {
$diff = $Level - $ItemLevel;
$List .= '</li>' . str_repeat('</ol></li>', $diff);
} elseif ($ItemLevel > $Level) {
$diff = $ItemLevel - $Level;
if ($Offset > 0) $List .= str_repeat('<li><ol>', $Offset - 2);
if ($ItemLevel > 1) {
$List .= $i === 0 ? '<li>' : '';
$List .= "\n<ol>\n";
}
} else {
$List .= $i > 0 ? '</li>' : '<li>';
}
}
private static function getval($str, $key) {
if (preg_match("/^\s*$key\s*:\s*(.+)$/mi", $str, $match)) {
return $match[1];
} else {
return false;
}
}
private static function getallval($str, $key) {
if (preg_match_all("/^\s*$key\s*:\s*(.+)$/mi", $str, $match)) {
return $match[1];
} else {
return false;
}
}
private static function removeAllFalse($a) {
return array_filter($a, function ($aa) {
if (is_array($aa)) {
foreach ($aa as $v) {
if ($v) return true;
}
return false;
} else {
return $aa !== false;
}
});
}
private static function onlyDigit($str) {
return implode(array_filter(str_split($str), function ($ch) {
return is_number($ch);
}));
}
private static function genTable($title, $data) {
$Str = '';
$Str .= "<table class='$title'><caption>$title</caption><tr>";
if (count($data) == 1) {
if (is_array($data[0])) {
foreach ($data[0] as $k => $v) {
if ($v !== false) {
$Str .= "<tr class='row'><td class='key'>$k:</td><td class='value'>$v</td></tr>";
}
}
} else {
$Str .= "<tr><td>$data[0]</td></tr>";
}
} else {
if ($title == "Video") {
$Index = 1;
$Str .= implode(array_map(function ($a) use (&$Index) {
$s = "";
if ($Index != 1) {
$s .= "<tr><td> <td></tr>";
}
$s .= "<tr class='row'><td class='key'>#$Index</td></tr>";
foreach ($a as $k => $v) {
if ($v !== false) {
$s .= "<tr class='row'><td class='key'>$k:</td><td class='value'>$v</td></tr>";
}
}
$Index++;
return $s;
}, $data));
} else if ($title == "Audio") {
$Index = 1;
$Str .= implode(array_map(function ($a) use (&$Index) {
$s = "";
$s = "<tr class='row'><td class='key audio_track_number'>#$Index: </td><td class='value'>$a</td></tr>";
$Index++;
return $s;
}, $data));
} else {
$Str .= implode(array_map(function ($a) {
$s = "";
if (is_array($a)) {
foreach ($a as $k => $v) {
if ($v !== false) {
$s .= "<tr class='row'><td class='key'>$k:</td><td class='value'>$v</td></tr>";
}
}
}
return $s;
}, $data));
}
}
$Str .= "</tr></table>";
return $Str;
}
private static function getTextTableColStartIndexes($table) {
if (preg_match("/^\s*([- ]+)\s*$/mi", $table, $match)) {
$Indexs = [0];
$LastIndex = 0;
while ($LastIndex !== false) {
$LastIndex = strpos($match[1], ' -', $LastIndex + 1);
if ($LastIndex !== false) {
$Indexs[] = $LastIndex + 1;
}
}
return $Indexs;
} else {
return false;
}
}
private static function getColValueInTextTable($table) {
$Rows = explode("\n", $table);
$len = count($Rows);
for ($i = 0; $i < $len; $i++) {
$v = $Rows[$i];
unset($Rows[$i]);
if (str_starts_with($v, '-')) {
break;
}
}
foreach ($Rows as $key => $Row) {
$Cols = [];
foreach (explode(' ', $Row) as $V) {
if (trim($V)) {
$Cols[] = trim($V);
}
}
$Rows[$key] = $Cols;
}
return array_values($Rows);
}
private static function getVideoResolutionInBDInfo($str) {
if (preg_match("/(\d+p)/mi", $str, $match)) {
return $match[1];
} else {
return false;
}
}
private static function getVideoAspectRatioInBDInfo($str) {
if (preg_match("/(\d+:\d+)/mi", $str, $match)) {
return $match[1];
} else {
return false;
}
}
private static function getVideoFrameRateInBDInfo($str) {
if (preg_match("/\/(.+) ?fps/mi", $str, $match)) {
return $match[1];
} else {
return false;
}
}
private static function getAudioChannelsInBDInfo($str) {
if (preg_match("/(\d\.\d)/mi", $str, $match)) {
return $match[1];
} else {
return false;
}
}
private static function to_html($Array) {
global $SSL, $Debug;
self::$Levels++;
/*
* Hax prevention
* That's the original comment on this.
* Most likely this was implemented to avoid anyone nesting enough
* elements to reach PHP's memory limit as nested elements are
* solved recursively.
* Original value of 10, it is now replaced in favor of
* $MaximumNests.
* If this line is ever executed then something is, infact
* being haxed as the if before the block type switch for different
* tags should always be limiting ahead of this line.
* (Larger than vs. smaller than.)
*/
if (self::$Levels > self::$MaximumNests) {
return $Block['Val']; // Hax prevention, breaks upon exceeding nests.
}
$Str = '';
foreach ($Array as $Block) {
if (is_string($Block)) {
$Block = str_replace('[hr]', '<hr class="bbcode_hr">', $Block);
$Str .= self::smileys($Block);
continue;
}
if (self::$Levels < self::$MaximumNests) {
switch ($Block['Type']) {
case 'b':
$Str .= '<strong>' . self::to_html($Block['Val']) . '</strong>';
break;
case 'u':
$Str .= '<span style="text-decoration: underline;">' . self::to_html($Block['Val']) . '</span>';
break;
case 'i':
$Str .= '<span style="font-style: italic;">' . self::to_html($Block['Val']) . "</span>";
break;
case 's':
$Str .= '<span style="text-decoration: line-through;">' . self::to_html($Block['Val']) . '</span>';
break;
case 'important':
$Str .= '<strong class="important_text">' . self::to_html($Block['Val']) . '</strong>';
break;
case 'user':
$Str .= '<a href="user.php?action=search&search=' . urlencode($Block['Val']) . '">' . $Block['Val'] . '</a>';
break;
case 'artist':
$Str .= '<a href="artist.php?artistname=' . urlencode(Format::undisplay_str($Block['Val'])) . '">' . $Block['Val'] . '</a>';
break;
case 'rule':
$Rule = trim(strtolower($Block['Val']));
if ($Rule[0] != 'r' && $Rule[0] != 'h') {
$Rule = 'r' . $Rule;
}
$Str .= '<a href="rules.php?p=upload#' . urlencode(Format::undisplay_str($Rule)) . '">' . preg_replace('/[aA-zZ]/', '', $Block['Val']) . '</a>';
break;
case 'torrent':
$Pattern = '/(' . SITELINK_REGEX . '\/torrents\.php.*[\?&]id=)?(\d+)($|&|\#).*/i';
$Matches = array();
if (preg_match($Pattern, $Block['Val'], $Matches)) {
if (isset($Matches[2])) {
$GroupID = $Matches[2];
$Groups = Torrents::get_groups(array($GroupID), true, true, false);
if ($Groups[$GroupID]) {
$Group = $Groups[$GroupID];
$Str .= '<a href="torrents.php?id=' . $GroupID . '">' . Torrents::torrent_group_name($Group, true) . '</a>';
} else {
$Str .= '[torrent]' . str_replace('[inlineurl]', '', $Block['Val']) . '[/torrent]';
}
}
} else {
$Str .= '[torrent]' . str_replace('[inlineurl]', '', $Block['Val']) . '[/torrent]';
}
break;
case 'wiki':
$Str .= '<a href="wiki.php?action=article&name=' . urlencode($Block['Val']) . '">' . $Block['Val'] . '</a>';
break;
case 'tex':
$Str .= '<img style="vertical-align: middle;" src="' . STATIC_SERVER . 'blank.gif" onload="if (this.src.substr(this.src.length - 9, this.src.length) == \'blank.gif\') { this.src = \'https://chart.googleapis.com/chart?cht=tx&chf=bg,s,FFFFFF00&chl=' . urlencode(mb_convert_encoding($Block['Val'], 'UTF-8', 'HTML-ENTITIES')) . '&chco=\' + hexify(getComputedStyle(this.parentNode, null).color); }" alt="' . $Block['Val'] . '" />';
break;
case 'plain':
$Str .= $Block['Val'];
break;
case 'pre':
$Str .= '<pre>' . $Block['Val'] . '</pre>';
break;
case 'code':
$Str .= '<code>' . $Block['Val'] . '</code>';
break;
case 'list':
$Str .= "<$Block[ListType] class=\"postlist\">";
foreach ($Block['Val'] as $Line) {
$Str .= '<li>' . self::to_html($Line) . '</li>';
}
$Str .= '</' . $Block['ListType'] . '>';
break;
case 'align':
$ValidAttribs = array('left', 'center', 'right');
if (!in_array($Block['Attr'], $ValidAttribs)) {
$Str .= '[align=' . $Block['Attr'] . ']' . self::to_html($Block['Val']) . '[/align]';
} else {
$Str .= '<div style="text-align: ' . $Block['Attr'] . ';">' . self::to_html($Block['Val']) . '</div>';
}
break;
case 'color':
case 'colour':
$ValidAttribs = array('aqua', 'black', 'blue', 'fuchsia', 'green', 'grey', 'lime', 'maroon', 'navy', 'olive', 'purple', 'red', 'silver', 'teal', 'white', 'yellow');
if (!in_array($Block['Attr'], $ValidAttribs) && !preg_match('/^#[0-9a-f]{6}$/', $Block['Attr'])) {
$Str .= '[color=' . $Block['Attr'] . ']' . self::to_html($Block['Val']) . '[/color]';
} else {
$Str .= '<span style="color: ' . $Block['Attr'] . ';">' . self::to_html($Block['Val']) . '</span>';
}
break;
case 'headline':
$text = self::to_html($Block['Val']);
$raw = self::raw_text($Block['Val']);
if (!in_array($Block['Attr'], self::$HeadlineLevels)) {
$Str .= sprintf('%1$s%2$s%1$s', str_repeat('=', $Block['Attr'] + 1), $text);
} else {
$id = '_' . crc32($raw . self::$HeadlineID);
if (self::$InQuotes === 0) {
self::$Headlines[] = array($Block['Attr'], $raw, $id);
}
$Str .= sprintf('<h%1$d id="%3$s">%2$s</h%1$d>', ($Block['Attr'] + 2), $text, $id);
self::$HeadlineID++;
}
break;
case 'inlinesize':
case 'size':
$ValidAttribs = array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10');
if (!in_array($Block['Attr'], $ValidAttribs)) {
$Str .= '[size=' . $Block['Attr'] . ']' . self::to_html($Block['Val']) . '[/size]';
} else {
$Str .= '<span class="size' . $Block['Attr'] . '">' . self::to_html($Block['Val']) . '</span>';
}
break;
case 'quote':
self::$NoImg++; // No images inside quote tags
self::$InQuotes++;
if (self::$InQuotes == self::$NestsBeforeHide) { //Put quotes that are nested beyond the specified limit in [hide] tags.
$Str .= '<strong>Older quotes</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">Show</a>';
$Str .= '<blockquote class="hidden spoiler">';
}
if (!empty($Block['Attr'])) {
$Exploded = explode('|', self::to_html($Block['Attr']));
if (isset($Exploded[1]) && (is_numeric($Exploded[1]) || (in_array($Exploded[1][0], array('a', 't', 'c', 'r')) && is_numeric(substr($Exploded[1], 1))))) {
// the part after | is either a number or starts with a, t, c or r, followed by a number (forum post, artist comment, torrent comment, collage comment or request comment, respectively)
$PostID = trim($Exploded[1]);
$Str .= '<a href="#" onclick="QuoteJump(event, \'' . $PostID . '\'); return false;"><strong class="quoteheader">' . $Exploded[0] . '</strong> wrote: </a>';
} else {
$Str .= '<strong class="quoteheader">' . $Exploded[0] . '</strong> wrote: ';
}
}
$Str .= '<blockquote>' . self::to_html($Block['Val']) . '</blockquote>';
if (self::$InQuotes == self::$NestsBeforeHide) { //Close quote the deeply nested quote [hide].
$Str .= '</blockquote><br />'; // Ensure new line after quote train hiding
}
self::$NoImg--;
self::$InQuotes--;
break;
case 'hide':
$Str .= '<strong>' . (($Block['Attr']) ? $Block['Attr'] : Lang::get('user', 'hidden_text')) . '</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">Show</a>';
$Str .= '<blockquote class="hidden spoiler">' . self::to_html($Block['Val']) . '</blockquote>';
break;
case 'mature':
if (G::$LoggedUser['EnableMatureContent']) {
if (!empty($Block['Attr'])) {
$Str .= '<strong class="mature" style="font-size: 1.2em;">Mature content:</strong><strong> ' . $Block['Attr'] . '</strong><br /> <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">Show</a>';
$Str .= '<blockquote class="hidden spoiler">' . self::to_html($Block['Val']) . '</blockquote>';
} else {
$Str .= '<strong>Use of the [mature] tag requires a description.</strong> The correct format is as follows: <strong>[mature=description] ...content... [/mature]</strong>, where "description" is a mandatory description of the post. Misleading descriptions will be penalized. For further information on our mature content policies, please refer to this <a href="wiki.php?action=article&id=1063">wiki</a>.';
}
} else {
$Str .= '<span class="mature_blocked" style="font-style: italic;"><a href="wiki.php?action=article&id=1063">Mature content</a> has been blocked. You can choose to view mature content by editing your <a href="user.php?action=edit&userid=' . G::$LoggedUser['ID'] . '">settings</a>.</span>';
}
break;
case 'img':
if (self::$NoImg > 0 && self::valid_url($Block['Val'])) {