-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathTemplateEngine.class.php
More file actions
executable file
·1130 lines (1005 loc) · 34.2 KB
/
TemplateEngine.class.php
File metadata and controls
executable file
·1130 lines (1005 loc) · 34.2 KB
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
<?php
namespace wcf\system\template;
use Laminas\Diactoros\Stream;
use Psr\Http\Message\StreamInterface;
use wcf\data\template\group\TemplateGroup;
use wcf\data\template\Template;
use wcf\system\cache\builder\TemplateGroupCacheBuilder;
use wcf\system\cache\builder\TemplateListenerCodeCacheBuilder;
use wcf\system\event\EventHandler;
use wcf\system\exception\SystemException;
use wcf\system\Regex;
use wcf\system\SingletonFactory;
use wcf\system\template\plugin\IBlockTemplatePlugin;
use wcf\system\template\plugin\IPrefilterTemplatePlugin;
use wcf\util\DirectoryUtil;
use wcf\util\HeaderUtil;
use wcf\util\StringUtil;
/**
* Loads and displays template.
*
* @author Alexander Ebert
* @copyright 2001-2019 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
*/
class TemplateEngine extends SingletonFactory
{
public const SHARED_TEMPLATES = [
'__wysiwygPreviewFormButton' => 'shared_wysiwygPreviewFormButton',
'__formButton' => 'shared_formButton',
'__wysiwygSmileyFormContainer' => 'shared_wysiwygSmileyFormContainer',
'__wysiwygTabMenuFormContainer' => 'shared_wysiwygTabMenuFormContainer',
'__formContainer' => 'shared_formContainer',
'__rowFormContainer' => 'shared_rowFormContainer',
'__rowFormFieldContainer' => 'shared_rowFormFieldContainer',
'__suffixFormFieldContainer' => 'shared_suffixFormFieldContainer',
'__tabFormContainer' => 'shared_tabFormContainer',
'__tabMenuFormContainer' => 'shared_tabMenuFormContainer',
'__tabTabMenuFormContainer' => 'shared_tabTabMenuFormContainer',
'__simpleAclFormField' => 'shared_simpleAclFormField',
'__aclFormField' => 'shared_aclFormField',
'__bbcodeAttributesFormField' => 'shared_bbcodeAttributesFormField',
'__emptyFormFieldDependency' => 'shared_emptyFormFieldDependency',
'__isNotClickedFormFieldDependency' => 'shared_isNotClickedFormFieldDependency',
'__nonEmptyFormFieldDependency' => 'shared_nonEmptyFormFieldDependency',
'__valueFormFieldDependency' => 'shared_valueFormFieldDependency',
'__valueIntervalFormFieldDependency' => 'shared_valueIntervalFormFieldDependency',
'__labelFormField' => 'shared_labelFormField',
'__contentLanguageFormField' => 'shared_contentLanguageFormField',
'__singleMediaSelectionFormField' => 'shared_singleMediaSelectionFormField',
'__pollOptionsFormField' => 'shared_pollOptionsFormField',
'__tagFormField' => 'shared_tagFormField',
'__userFormField' => 'shared_userFormField',
'__usernameFormField' => 'shared_usernameFormField',
'__userPasswordFormField' => 'shared_userPasswordFormField',
'__formFieldError' => 'shared_formFieldError',
'__wysiwygAttachmentFormField' => 'shared_wysiwygAttachmentFormField',
'__wysiwygFormField' => 'shared_wysiwygFormField',
'__numericFormField' => 'shared_numericFormField',
'__booleanFormField' => 'shared_booleanFormField',
'__buttonFormField' => 'shared_buttonFormField',
'__captchaFormField' => 'shared_captchaFormField',
'__checkboxFormField' => 'shared_checkboxFormField',
'__colorFormField' => 'shared_colorFormField',
'__dateFormField' => 'shared_dateFormField',
'__emailFormField' => 'shared_emailFormField',
'__hiddenFormField' => 'shared_hiddenFormField',
'__iconFormField' => 'shared_iconFormField',
'__itemListFormField' => 'shared_itemListFormField',
'__multilineTextFormField' => 'shared_multilineTextFormField',
'__multipleSelectionFormField' => 'shared_multipleSelectionFormField',
'__passwordFormField' => 'shared_passwordFormField',
'__radioButtonFormField' => 'shared_radioButtonFormField',
'__ratingFormField' => 'shared_ratingFormField',
'__selectFormField' => 'shared_selectFormField',
'__sourceCodeFormField' => 'shared_sourceCodeFormField',
'__uploadFormField' => 'shared_uploadFormField',
'__wysiwygSmileyFormNode' => 'shared_wysiwygSmileyFormNode',
'__form' => 'shared_form',
'__formContainerChildren' => 'shared_formContainerChildren',
'__formContainerDependencies' => 'shared_formContainerDependencies',
'__formField' => 'shared_formField',
'__formFieldDependencies' => 'shared_formFieldDependencies',
'__formFieldDescription' => 'shared_formFieldDescription',
'__formFieldErrors' => 'shared_formFieldErrors',
'__formFieldDataHandler' => 'shared_formFieldDataHandler',
'__singleSelectionFormField' => 'shared_singleSelectionFormField',
'__mediaSetCategoryDialog' => 'shared_mediaSetCategoryDialog',
'__messageQuoteManager' => 'shared_messageQuoteManager',
'__topReaction' => 'shared_topReaction',
'__wysiwygCmsToolbar' => 'shared_wysiwygCmsToolbar',
'aclPermissionJavaScript' => 'shared_aclPermissionJavaScript',
'aclSimple' => 'shared_aclSimple',
'articleAddDialog' => 'shared_articleAddDialog',
'benchmark' => 'shared_benchmark',
'booleanOptionType' => 'shared_booleanOptionType',
'booleanSearchableOptionType' => 'shared_booleanSearchableOptionType',
'captcha' => 'shared_captcha',
'captchaQuestion' => 'shared_captchaQuestion',
'categoryOptionList' => 'shared_categoryOptionList',
'checkboxesOptionType' => 'shared_checkboxesOptionType',
'checkboxesSearchableOptionType' => 'shared_checkboxesSearchableOptionType',
'codeMetaCode' => 'shared_codeMetaCode',
'codemirror' => 'shared_codemirror',
'colorPickerJavaScript' => 'shared_colorPickerJavaScript',
'fontAwesomeJavaScript' => 'shared_fontAwesomeJavaScript',
'formError' => 'shared_formError',
'formNotice' => 'shared_formNotice',
'formSuccess' => 'shared_formSuccess',
'googleMapsElement' => 'shared_googleMapsElement',
'languageChooser' => 'shared_languageChooser',
'lineBreakSeparatedTextOptionType' => 'shared_lineBreakSeparatedTextOptionType',
'mediaManager' => 'shared_mediaManager',
'messageFormAttachments' => 'shared_messageFormAttachments',
'messageTableOfContents' => 'shared_messageTableOfContents',
'messageUserConsent' => 'shared_messageUserConsent',
'multipleLanguageInputJavascript' => 'shared_multipleLanguageInputJavascript',
'passwordStrengthLanguage' => 'shared_passwordStrengthLanguage',
'quoteMetaCode' => 'shared_quoteMetaCode',
'radioButtonSearchableOptionType' => 'shared_radioButtonSearchableOptionType',
'recaptcha' => 'shared_recaptcha',
'scrollablePageCheckboxList' => 'shared_scrollablePageCheckboxList',
'sitemapEnd' => 'shared_sitemapEnd',
'sitemapEntry' => 'shared_sitemapEntry',
'sitemapIndex' => 'shared_sitemapIndex',
'sitemapStart' => 'shared_sitemapStart',
'trophyBadge' => 'shared_trophyBadge',
'trophyImage' => 'shared_trophyImage',
'unfurlUrl' => 'shared_unfurlUrl',
'uploadFieldComponent' => 'shared_uploadFieldComponent',
'userBBCodeTag' => 'shared_bbcode_user',
'userConditions' => 'shared_userConditions',
'userOptionsCondition' => 'shared_userOptionsCondition',
'worker' => 'shared_worker',
'wysiwyg' => 'shared_wysiwyg',
'groupBBCodeTag' => 'shared_bbcode_group',
'__videoAttachmentBBCode' => 'shared_bbcode_attach_video',
'__audioAttachmentBBCode' => 'shared_bbcode_attach_audio',
'mediaBBCodeTag' => 'shared_bbcode_wsm',
'articleBBCodeTag' => 'shared_bbcode_wsa',
'__multiPageCondition' => 'shared_multiPageCondition',
'__multilineItemListFormField' => 'shared_multilineItemListFormField',
'imageViewer' => 'shared_imageViewer',
'messageFormSmilies' => 'shared_messageFormSmileyTab',
'__messageFormSmilies' => 'shared_messageFormSmilies',
];
/**
* directory used to cache previously compiled templates
* @var string
*/
public $compileDir = '';
/**
* active language id used to identify specific language versions of compiled templates
* @var int
*/
public $languageID = 0;
/**
* directories used as template source
* @var string[]
*/
public $templatePaths = [];
/**
* namespace containing template modifiers and plugins
* @var string
*/
public $pluginNamespace = '';
/**
* active template compiler
* @var TemplateCompiler
*/
protected $compilerObj;
/**
* forces the template engine to recompile all included templates
* @var bool
*/
protected $forceCompile = false;
/**
* list of registered prefilters
* @var string[]
*/
protected $prefilters = [];
/**
* cached list of known template groups
* @var array<int, TemplateGroup>
*/
protected $templateGroupCache = [];
/**
* active template group id
* @var int
*/
protected $templateGroupID = 0;
/**
* all available template variables and those assigned during runtime
* @var array<string, mixed|array<string, mixed>>
*/
protected $v = [];
/**
* sandboxed values of currently active foreach loops' `item` and `key` variables
*
* for each currently active `foreach` loop, an array is added:
* $foreachHash => [
* (optional) 'item' => sandboxed value of an existing variable with the same name,
* (optional) 'key' => (optional) sandboxed value of an existing variable with the same name
* ]
*
* @var mixed[][][]
*/
protected $foreachVars = [];
/**
* all cached variables for usage after execution in sandbox
* @var mixed[][]
*/
protected $sandboxVars = [];
/**
* contains all templates with assigned template listeners.
* @var string[][][]
*/
protected $templateListeners = [];
/**
* true, if template listener code was already loaded
* @var bool
*/
protected $templateListenersLoaded = false;
/**
* current environment
* @var string
*/
protected $environment = 'user';
/**
* @var array<string, IBlockTemplatePlugin>
*/
protected $pluginObjects = [];
/**
* @var list<array{0: string, 1: list<string>}>
*/
protected $tagStack = [];
private int $sharedTemplateGroupID;
/**
* @inheritDoc
*/
protected function init()
{
$this->templatePaths = ['wcf' => WCF_DIR . 'templates/'];
$this->pluginNamespace = 'wcf\system\template\plugin\\';
$this->compileDir = WCF_DIR . 'templates/compiled/';
$this->loadTemplateGroupCache();
$this->assignSystemVariables();
}
/**
* Adds a new application.
*
* @param string $abbreviation
* @param string $templatePath
* @return void
*/
public function addApplication($abbreviation, $templatePath)
{
$this->templatePaths[$abbreviation] = $templatePath;
}
/**
* Sets active language id.
*
* @param int $languageID
* @return void
*/
public function setLanguageID($languageID)
{
$this->languageID = $languageID;
}
/**
* Assigns some system variables.
*
* @return void
*/
protected function assignSystemVariables()
{
$this->v['tpl'] = [];
// system info
$this->v['tpl']['template'] = '';
$this->v['tpl']['includedTemplates'] = [];
// section / foreach / capture arrays
$this->v['tpl']['section'] = $this->v['tpl']['foreach'] = $this->v['tpl']['capture'] = [];
}
/**
* Assigns a template variable.
*
* @param mixed $variable
* @param mixed $value
* @return void
*/
public function assign($variable, $value = '')
{
if (\is_array($variable)) {
foreach ($variable as $key => $value) {
if (empty($key)) {
continue;
}
$this->assign($key, $value);
}
} else {
$this->v[$variable] = $value;
}
}
/**
* Appends content to an existing template variable.
*
* @param mixed $variable
* @param mixed $value
* @return void
*/
public function append($variable, $value = '')
{
if (\is_array($variable)) {
foreach ($variable as $key => $val) {
if ($key != '') {
$this->append($key, $val);
}
}
} else {
if (!empty($variable)) {
if (isset($this->v[$variable])) {
if (\is_array($this->v[$variable]) && \is_array($value)) {
$keys = \array_keys($value);
foreach ($keys as $key) {
if (isset($this->v[$variable][$key])) {
$this->v[$variable][$key] .= $value[$key];
} else {
$this->v[$variable][$key] = $value[$key];
}
}
} else {
$this->v[$variable] .= $value;
}
} else {
$this->v[$variable] = $value;
}
}
}
}
/**
* Prepends content to an existing template variable.
*
* @param mixed $variable
* @param mixed $value
* @return void
*/
public function prepend($variable, $value = '')
{
if (\is_array($variable)) {
foreach ($variable as $key => $val) {
if ($key != '') {
$this->prepend($key, $val);
}
}
} else {
if (!empty($variable)) {
if (isset($this->v[$variable])) {
if (\is_array($this->v[$variable]) && \is_array($value)) {
$keys = \array_keys($value);
foreach ($keys as $key) {
if (isset($this->v[$variable][$key])) {
$this->v[$variable][$key] = $value[$key] . $this->v[$variable][$key];
} else {
$this->v[$variable][$key] = $value[$key];
}
}
} else {
$this->v[$variable] = $value . $this->v[$variable];
}
} else {
$this->v[$variable] = $value;
}
}
}
}
/**
* Assigns a template variable by reference.
*
* @param string $variable
* @param mixed $value
* @return void
*/
public function assignByRef($variable, &$value)
{
if (!empty($variable)) {
$this->v[$variable] = &$value;
}
}
/**
* Clears an assignment of template variables.
*
* @param string[] $variables
* @return void
*/
public function clearAssign(array $variables)
{
foreach ($variables as $key) {
unset($this->v[$key]);
}
}
/**
* Clears assignment of all template variables. This should not be called
* during runtime as it could leed to an unexpected behaviour.
*
* @return void
*/
public function clearAllAssign()
{
$this->v = [];
}
/**
* Outputs a template.
*
* @param string $templateName
* @param string $application
* @param bool $sendHeaders
* @return void
*/
public function display($templateName, $application = 'wcf', $sendHeaders = true)
{
if ($sendHeaders) {
HeaderUtil::sendHeaders();
EventHandler::getInstance()->fireAction($this, 'beforeDisplay');
}
$sourceFilename = $this->getSourceFilename($templateName, $application);
$compiledFilename = $this->getCompiledFilename($templateName, $application);
$metaDataFilename = $this->getMetaDataFilename($templateName);
$metaData = $this->getMetaData($templateName, $metaDataFilename);
// check if compilation is necessary
if (
$metaData === null
|| !$this->isCompiled($templateName, $sourceFilename, $compiledFilename, $application, $metaData)
) {
// compile
$this->compileTemplate($templateName, $sourceFilename, $compiledFilename, [
'application' => $application,
'data' => $metaData,
'filename' => $metaDataFilename,
]);
}
// assign current package id
$this->assign('__APPLICATION', $application);
include($compiledFilename);
if ($sendHeaders) {
EventHandler::getInstance()->fireAction($this, 'afterDisplay');
}
}
/**
* Returns the absolute filename of a template source.
*
* @param string $templateName
* @param string $application
* @return string $path
* @throws SystemException
*/
public function getSourceFilename($templateName, $application)
{
// Map old template names to new shared template names
if (\array_key_exists($templateName, TemplateEngine::SHARED_TEMPLATES)) {
$templateName = TemplateEngine::SHARED_TEMPLATES[$templateName];
}
if (TemplateEngine::isSharedTemplate($templateName)) {
$sourceFilename = $this->getPath(TemplateEngine::getInstance()->templatePaths[$application], $templateName);
} else {
$sourceFilename = $this->getPath($this->templatePaths[$application], $templateName);
}
if (!empty($sourceFilename)) {
return $sourceFilename;
}
// try to find template within WCF if not already searching WCF
if ($application != 'wcf') {
$sourceFilename = $this->getSourceFilename($templateName, 'wcf');
if (!empty($sourceFilename)) {
return $sourceFilename;
}
}
throw new SystemException("Unable to find template '" . $templateName . "'");
}
/**
* Returns path if template was found.
*
* @param string $templatePath
* @param string $templateName
* @return string
*/
protected function getPath($templatePath, $templateName)
{
if (!Template::isSystemCritical($templateName)) {
if (TemplateEngine::isSharedTemplate($templateName)) {
$templateGroupID = $this->getSharedTemplateGroupID();
} else {
$templateGroupID = $this->getTemplateGroupID();
}
while ($templateGroupID != 0) {
$templateGroup = $this->templateGroupCache[$templateGroupID];
$path = $templatePath . $templateGroup->templateGroupFolderName . $templateName . '.tpl';
if (\file_exists($path)) {
return $path;
}
$templateGroupID = $templateGroup->parentTemplateGroupID;
}
}
// use default template
$path = $templatePath . $templateName . '.tpl';
if (\file_exists($path)) {
return $path;
}
return '';
}
/**
* Returns the absolute filename of a compiled template.
*
* @param string $templateName
* @param string $application
* @return string
*/
public function getCompiledFilename($templateName, $application)
{
return $this->getCompileFilePrefix($templateName) . '_' . $application . '_' . $this->languageID . '_' . $templateName . '.php';
}
/**
* Returns the absolute filename for template's meta data.
*
* @param string $templateName
* @return string
*/
public function getMetaDataFilename($templateName)
{
return $this->getCompileFilePrefix($templateName) . '_' . $templateName . '.meta.php';
}
/**
* Returns true if the template with the given data is already compiled.
*
* @param string $templateName
* @param string $sourceFilename
* @param string $compiledFilename
* @param string $application
* @param mixed[] $metaData
* @return bool
*/
protected function isCompiled($templateName, $sourceFilename, $compiledFilename, $application, array $metaData)
{
if ($this->forceCompile || !\file_exists($compiledFilename)) {
return false;
}
$sourceMTime = @\filemtime($sourceFilename);
$compileMTime = @\filemtime($compiledFilename);
if ($sourceMTime >= $compileMTime) {
return false;
}
// check for meta data
if (!empty($metaData['include'])) {
foreach ($metaData['include'] as $application => $includedTemplates) {
foreach ($includedTemplates as $includedTemplate) {
$includedTemplateFilename = $this->getSourceFilename($includedTemplate, $application);
$includedMTime = @\filemtime($includedTemplateFilename);
if ($includedMTime >= $compileMTime) {
return false;
}
}
}
}
return true;
}
/**
* Compiles a template.
*
* @param string $templateName
* @param string $sourceFilename
* @param string $compiledFilename
* @param array{application: string, data: string[], filename: string} $metaData
* @return void
*/
protected function compileTemplate($templateName, $sourceFilename, $compiledFilename, array $metaData)
{
// get source
$sourceContent = $this->getSourceContent($sourceFilename);
// compile template
$this->getCompiler()->compile($templateName, $sourceContent, $compiledFilename, $metaData);
}
/**
* Returns the template compiler.
*
* @return TemplateCompiler
*/
public function getCompiler()
{
if ($this->compilerObj === null) {
$this->compilerObj = new TemplateCompiler($this);
}
return $this->compilerObj;
}
/**
* Reads the content of a template file.
*
* @param string $sourceFilename
* @return string
* @throws SystemException
*/
public function getSourceContent($sourceFilename)
{
/** @noinspection PhpUnusedLocalVariableInspection */
$sourceContent = '';
if (!\file_exists($sourceFilename) || (($sourceContent = @\file_get_contents($sourceFilename)) === false)) {
throw new SystemException("Could not open template '{$sourceFilename}' for reading");
} else {
return $sourceContent;
}
}
/**
* Returns the class name of a plugin.
*
* @param string $type
* @param string $tag
* @return string
*/
public function getPluginClassName($type, $tag)
{
return $this->pluginNamespace . StringUtil::firstCharToUpperCase($tag) . StringUtil::firstCharToUpperCase(\mb_strtolower($type)) . 'TemplatePlugin';
}
/**
* Enables execution in sandbox.
*
* @return void
*/
public function enableSandbox()
{
$index = \count($this->sandboxVars);
$this->sandboxVars[$index] = [
'foreachVars' => $this->foreachVars,
'v' => $this->v,
];
}
/**
* Disables execution in sandbox.
*
* @return void
*/
public function disableSandbox()
{
if (empty($this->sandboxVars)) {
throw new SystemException('TemplateEngine is currently not running in a sandbox.');
}
$values = \array_pop($this->sandboxVars);
$this->foreachVars = $values['foreachVars'];
$this->v = $values['v'];
}
/**
* Returns the output of a template.
*
* @param string $templateName
* @param string $application
* @param array<string, mixed> $variables
* @param bool $sandbox enables execution in sandbox
* @return string
*
* @deprecated 6.2 use `render()` instead, will be removed in 7.0
*/
public function fetch($templateName, $application = 'wcf', array $variables = [], $sandbox = false)
{
if ($sandbox) {
return $this->render($application, $templateName, $variables);
}
// add new template variables
if (!empty($variables)) {
$this->v = \array_merge($this->v, $variables);
}
// get output
try {
\ob_start();
$this->display($templateName, $application, false);
$output = \ob_get_contents();
} finally {
\ob_end_clean();
}
return $output;
}
/**
* Returns the output of a template.
*
* @param array<string, mixed> $variables
* @since 6.2
*/
public function render(string $application, string $templateName, array $variables): string
{
$this->enableSandbox();
if ($variables !== []) {
$this->v = \array_merge($this->v, $variables);
}
// get output
try {
\ob_start();
$this->display($templateName, $application, false);
$output = \ob_get_contents();
\assert($output !== false);
} finally {
\ob_end_clean();
}
$this->disableSandbox();
return $output;
}
/**
* Renders the template into a fresh PSR-7 StreamInterface.
*
* @param array<string, mixed> $variables
* @since 6.0
*/
public function fetchStream(
string $templateName,
string $application = 'wcf',
array $variables = [],
bool $sandbox = false
): StreamInterface {
// enable sandbox
if ($sandbox) {
$this->enableSandbox();
}
// add new template variables
if (!empty($variables)) {
$this->v = \array_merge($this->v, $variables);
}
// get output
try {
$stream = new Stream(\fopen('php://temp', 'r+'));
\ob_start(static function (string $buffer, int $phase) use (&$stream) {
$stream->write($buffer);
return '';
}, 1024 * 1024);
$this->display($templateName, $application, false);
} finally {
\ob_end_clean();
}
// disable sandbox
if ($sandbox) {
$this->disableSandbox();
}
$stream->rewind();
return $stream;
}
/**
* Executes a compiled template scripting source and returns the result.
*
* @param string $compiledSource
* @param array<string, mixed> $variables
* @param bool $sandbox enables execution in sandbox
* @return string
*/
public function fetchString($compiledSource, array $variables = [], $sandbox = true)
{
// enable sandbox
if ($sandbox) {
$this->enableSandbox();
}
// add new template variables
if (!empty($variables)) {
$this->v = \array_merge($this->v, $variables);
}
// get output
\ob_start();
eval('?>' . $compiledSource);
$output = \ob_get_contents();
\ob_end_clean();
// disable sandbox
if ($sandbox) {
$this->disableSandbox();
}
return $output;
}
/**
* Deletes all compiled templates.
*
* @param string $compileDir
* @return void
*/
public static function deleteCompiledTemplates($compileDir = '')
{
if (empty($compileDir)) {
$compileDir = WCF_DIR . 'templates/compiled/';
}
// delete compiled templates
DirectoryUtil::getInstance($compileDir)->removePattern(new Regex('.*_.*\.php$'));
}
/**
* Returns an array with all prefilters.
*
* @return (string|IPrefilterTemplatePlugin)[]
*/
public function getPrefilters()
{
return $this->prefilters;
}
/**
* Returns the active template group id.
*
* @return int
*/
public function getTemplateGroupID()
{
return $this->templateGroupID;
}
/**
* Sets the active template group id.
*
* @param int $templateGroupID
* @return void
*/
public function setTemplateGroupID($templateGroupID)
{
if ($templateGroupID && !isset($this->templateGroupCache[$templateGroupID])) {
$templateGroupID = 0;
}
$this->templateGroupID = $templateGroupID;
}
/**
* Loads cached template group information.
*
* @return void
*/
protected function loadTemplateGroupCache()
{
$this->templateGroupCache = TemplateGroupCacheBuilder::getInstance()->getData();
}
/**
* Registers prefilters.
*
* @param string[] $prefilters
* @return void
*/
public function registerPrefilter(array $prefilters)
{
foreach ($prefilters as $name) {
$this->prefilters[$name] = $name;
}
}
/**
* Removes a prefilter by its internal name.
*
* @param string $name internal prefilter identifier
* @return void
*/
public function removePrefilter($name)
{
unset($this->prefilters[$name]);
}
/**
* Sets the dir for the compiled templates.
*
* @param string $compileDir
* @return void
* @throws SystemException
*/
public function setCompileDir($compileDir)
{
if (!\is_dir($compileDir)) {
throw new SystemException("'" . $compileDir . "' is not a valid dir");
}
$this->compileDir = $compileDir;
}
/**
* Includes a template.
*
* @param string $templateName
* @param string $application
* @param array<string, mixed> $variables
* @param bool $sandbox enables execution in sandbox
* @return void
*/
protected function includeTemplate($templateName, $application, array $variables = [], $sandbox = true)
{
// enable sandbox
if ($sandbox) {
$this->enableSandbox();
}
// add new template variables
if (!empty($variables)) {
$this->v = \array_merge($this->v, $variables);
}
// display template
$this->display($templateName, $application, false);
// disable sandbox
if ($sandbox) {
$this->disableSandbox();
}
}
/**
* Returns the value of a template variable.
*
* @param string $varname
* @return mixed
*/
public function get($varname)
{