Reader.php
33.5 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
<?PHP
/**
* Base class for patTemplate readers
*
* $Id: Reader.php,v 1.57 2004/09/07 19:09:56 schst Exp $
*
* This class is able to parse patTemplate tags from any string you hand it over
* It will emulate some kind of SAX parsing by calling start-, end- and CData-handlers.
*
* @package patTemplate
* @subpackage Readers
* @author Stephan Schmidt <schst@php.net>
*/
/**
* No input
*/
define( 'PATTEMPLATE_READER_ERROR_NO_INPUT', 6000 );
/**
* Unknown tag
*/
define( 'PATTEMPLATE_READER_ERROR_UNKNOWN_TAG', 6001 );
/**
* Invalid tag (missing attribute)
*/
define( 'PATTEMPLATE_READER_ERROR_INVALID_TAG', 6002 );
/**
* Closing tag is missing
*/
define( 'PATTEMPLATE_READER_ERROR_NO_CLOSING_TAG', 6003 );
/**
* Invalid closing tag
*/
define( 'PATTEMPLATE_READER_ERROR_INVALID_CLOSING_TAG', 6004 );
/**
* Invalid condition specified
*/
define( 'PATTEMPLATE_READER_ERROR_INVALID_CONDITION', 6005 );
/**
* No name has been specified
*/
define( 'PATTEMPLATE_READER_ERROR_NO_NAME_SPECIFIED', 6010 );
/**
* CData in a conditional template
*/
define( 'PATTEMPLATE_READER_NOTICE_INVALID_CDATA_SECTION', 6050 );
/**
* template already exists
*/
define( 'PATTEMPLATE_READER_NOTICE_TEMPLATE_EXISTS', 6051 );
/**
* Base class for patTemplate readers
*
* This class is able to parse patTemplate tags from any string you hand it over
* It will emulate some kind of SAX parsing by calling start-, end- and CData-handlers.
*
* @abstract
* @package patTemplate
* @subpackage Readers
* @author Stephan Schmidt <schst@php.net>
*/
class patTemplate_Reader extends patTemplate_Module
{
/**
* reference to the patTemplate object that instantiated the module
*
* @access protected
* @var object
*/
var $_tmpl;
/**
* stack for all open elements
* @access private
* @var array
*/
var $_elStack;
/**
* stack for all open templates
* @access private
* @var array
*/
var $_tmplStack;
/**
* character data
* @access private
* @var array
*/
var $_data;
/**
* tag depth
* @access private
* @var integer
*/
var $_depth;
/**
* templates that have been found
* @access protected
* @var array
*/
var $_templates = array();
/**
* path to the template
* @access protected
* @var array
*/
var $_path = array();
/**
* start tag for variables
* @access private
* @var string
*/
var $_startTag;
/**
* end tag for variables
* @access private
* @var string
*/
var $_endTag;
/**
* default attributes
*
* @access private
* @var array
*/
var $_defaultAtts = array();
/**
* root attributes
*
* This is used when reading the template content
* from an external file.
*
* @access private
* @var array
*/
var $_rootAtts = array();
/**
* inherit attributes
*
* @access private
* @var array
*/
var $_inheritAtts = array();
/**
* name of the first template that has been found
*
* @access private
* @var string
*/
var $_root = null;
/**
* all data that has been processed
*
* @access private
* @var string
*/
var $_processedData = null;
/**
* current input
*
* @access private
* @var string
*/
var $_currentInput = null;
/**
* all loaded functions
*
* @access private
* @var array
*/
var $_functions = array();
/**
* function aliases
*
* @access private
* @var array
*/
var $_funcAliases = array();
/**
* set a reference to the patTemplate object that instantiated the reader
*
* @access public
* @param object patTemplate object
*/
function setTemplateReference( &$tmpl )
{
$this->_tmpl = &$tmpl;
}
/**
* read templates from any input
*
* @abstract must be implemented in the template readers
* @param mixed input to read from.
* This can be a string, a filename, a resource or whatever the derived class needs to read from
* @param array options, not implemented in current versions, but future versions will allow passing of options
* @return array template structure
*/
function readTemplates( $input, $options = array() )
{
return array();
}
/**
* load template from any input
*
* If the a template is loaded, the content will not get
* analyzed but the whole content is returned as a string.
*
* @abstract must be implemented in the template readers
* @param mixed input to load from.
* This can be a string, a filename, a resource or whatever the derived class needs to read from
* @param array options, not implemented in current versions, but future versions will allow passing of options
* @return string template content
*/
function loadTemplate( $input, $options = array() )
{
return $input;
}
/**
* set options
*
* @access public
* @param array array containing options
*/
function setOptions( $options )
{
$this->_startTag = $options['startTag'];
$this->_endTag = $options['endTag'];
$this->_options = $options;
if (isset($options['functionAliases']))
{
$this->_funcAliases = $options['functionAliases'];
}
array_map('strtolower', $this->_funcAliases);
}
/**
* add an alias for a function
*
* @access public
* @param string alias
* @param string function name
*/
function addFunctionAlias($alias, $function)
{
$this->_funcAliases[strtolower($alias)] = $function;
}
/**
* set the root attributes
*
* @access public
* @param array array containing options
*/
function setRootAttributes( $attributes )
{
$this->_rootAtts = $attributes;
}
/**
* parse templates from string
*
* @access private
* @param string string to parse
* @return array templates
*/
function parseString( $string )
{
/**
* apply input filter before parsing
*/
$string = $this->_tmpl->applyInputFilters( $string );
$this->_inheritAtts = array();
$this->_elStack = array();
$this->_data = array( '' );
$this->_tmplStack = array();
$this->_depth = 0;
$this->_templates = array();
$this->_path = array();
$this->_processedData = '';
$this->_defaultAtts = $this->_tmpl->getDefaultAttributes();
if( !isset( $this->_defaultAtts['autoload'] ) )
$this->_defaultAtts['autoload'] = 'on';
/**
* create a special root template
*/
$attributes = $this->_rootAtts;
$attributes['name'] = '__ptroot';
$rootTemplate = $this->_initTemplate( $attributes );
unset( $rootTemplate['isRoot'] );
$this->_root = null;
array_push( $this->_tmplStack, $rootTemplate );
/**
*start parsing
*/
$patNamespace = strtolower( $this->_tmpl->getNamespace() );
$regexp = '/(<(\/?)([[:alnum:]]+):([[:alnum:]]+)[[:space:]]*([^>]*)>)/im';
$tokens = preg_split( $regexp, $string, -1, PREG_SPLIT_DELIM_CAPTURE );
/**
* the first token is always character data
* Though it could just be empty
*/
if( $tokens[0] != '' )
$this->_characterData( $tokens[0] );
$cnt = count( $tokens );
$i = 1;
// process all tokens
while( $i < $cnt )
{
$fullTag = $tokens[$i++];
$closing = $tokens[$i++];
$namespace = strtolower( $tokens[$i++] );
$tagname = strtolower( $tokens[$i++] );
$attString = $tokens[$i++];
$empty = substr( $attString, -1 );
$data = $tokens[$i++];
/**
* check, whether it's a known namespace
* currently only the template namespace is possible
*/
if( $patNamespace != $namespace )
{
$this->_characterData( $fullTag );
$this->_characterData( $data );
continue;
}
/**
* is it a closing tag?
*/
if( $closing === '/' )
{
$result = $this->_endElement( $namespace, $tagname );
if( patErrorManager::isError( $result ) )
{
return $result;
}
$this->_characterData( $data );
continue;
}
/**
* Is empty or opening tag!
*/
if( $empty === '/' )
$attString = substr( $attString, 0, -1 );
$attributes = $this->_parseAttributes( $attString );
$result = $this->_startElement( $namespace, $tagname, $attributes );
if( patErrorManager::isError( $result ) )
{
return $result;
}
/**
* check, if the tag is empty
*/
if( $empty === '/' )
{
$result = $this->_endElement( $namespace, $tagname );
if( patErrorManager::isError( $result ) )
{
return $result;
}
}
$this->_characterData( $data );
}
$rootTemplate = array_pop( $this->_tmplStack );
$this->_closeTemplate( $rootTemplate, $this->_data[0] );
/**
* check for tags that are still open
*/
if( $this->_depth > 0 )
{
$el = array_pop( $this->_elStack );
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_NO_CLOSING_TAG,
$this->_createErrorMessage( "No closing tag for {$el['ns']}:{$el['name']} found" )
);
}
return $this->_templates;
}
/**
* parse an attribute string and build an array
*
* @access private
* @param string attribute string
* @param array attribute array
*/
function _parseAttributes( $string )
{
static $entities = array(
'<' => '<',
'>' => '>',
'&' => '&',
'"' => '"',
''' => '\''
);
$attributes = array();
preg_match_all('/([a-zA-Z_0-9]+)="((?:\\\.|[^"\\\])*)"/U', $string, $match);
for ($i = 0; $i < count($match[1]); $i++)
{
$attributes[strtolower( $match[1][$i] )] = strtr( (string)$match[2][$i], $entities );
}
return $attributes;
}
/**
* handle start element
*
* @access private
* @param string element name
* @param array attributes
*/
function _startElement( $ns, $name, $attributes )
{
array_push( $this->_elStack, array(
'ns' => $ns,
'name' => $name,
'attributes' => $attributes,
)
);
$this->_depth++;
$this->_data[$this->_depth] = '';
/**
* handle tag
*/
switch( $name )
{
/**
* template
*/
case 'tmpl':
$result = $this->_initTemplate( $attributes );
break;
/**
* sub-template
*/
case 'sub':
$result = $this->_initSubTemplate( $attributes );
break;
/**
* link
*/
case 'link':
$result = $this->_initLink( $attributes );
break;
/**
* variable
*/
case 'var':
$result = false;
break;
/**
* instance
*/
case 'instance':
case 'comment':
$result = false;
break;
/**
* any other tag
*/
default:
if (isset($this->_funcAliases[strtolower($name)])) {
$name = $this->_funcAliases[strtolower($name)];
}
$name = ucfirst( $name );
if( !$this->_tmpl->moduleExists( 'Function', $name ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_UNKNOWN_TAG,
$this->_createErrorMessage( "Unknown tag {$ns}:{$name}." )
);
}
$result = array(
'type' => 'custom',
'function' => $name,
'attributes' => $attributes
);
break;
}
if( patErrorManager::isError( $result ) )
{
return $result;
}
array_push( $this->_tmplStack, $result );
}
/**
* handle end element
*
* @access private
* @param string element name
*/
function _endElement( $ns, $name )
{
$el = array_pop( $this->_elStack );
$data = $this->_getCData();
$this->_depth--;
if( $el['name'] != $name || $el['ns'] != $ns )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_CLOSING_TAG,
$this->_createErrorMessage( "Invalid closing tag {$ns}:{$name}, {$el['ns']}:{$el['name']} expected" )
);
}
$tmpl = array_pop( $this->_tmplStack );
/**
* handle tag
*/
switch( $name )
{
/**
* template
*/
case 'tmpl':
$this->_closeTemplate( $tmpl, $data );
break;
/**
* sub-template
*/
case 'sub':
$this->_closeSubTemplate( $tmpl, $data );
break;
/**
* link
*/
case 'link':
$this->_closeLink( $tmpl );
break;
/**
* variable
*/
case 'var':
$this->_handleVariable( $el['attributes'], $data );
break;
/**
* instance
*/
case 'instance':
break;
/**
* comment
*/
case 'comment':
$this->_handleComment( $el['attributes'], $data );
break;
/**
* custom function
*/
default:
if (isset($this->_funcAliases[strtolower($name)])) {
$name = $this->_funcAliases[strtolower($name)];
}
$name = ucfirst( $name );
if( !isset( $this->_functions[$name] ) )
{
$this->_functions[$name] = $this->_tmpl->loadModule( 'Function', $name );
$this->_functions[$name]->setReader( $this );
}
$result = $this->_functions[$name]->call( $tmpl['attributes'], $data );
if( patErrorManager::isError( $result ) )
{
return $result;
}
if( is_string( $result ) )
$this->_characterData( $result, false );
break;
}
}
/**
* handle character data
*
* @access private
* @param string data
*/
function _characterData( $data, $readFromTemplate = true )
{
$this->_data[$this->_depth] .= $data;
if( $readFromTemplate )
$this->_processedData .= $data;
return true;
}
/**
* handle a Link
*
* @access private
* @param array attributes
* @return boolean true on success
*/
function _initLink( $attributes )
{
/**
* needs a src attribute
*/
if( !isset( $attributes['src'] ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_TAG,
$this->_createErrorMessage( "Attribute 'src' missing for link" )
);
}
/**
* create a new template
*/
$tmpl = array(
'type' => 'link',
'src' => $attributes['src'],
);
return $tmpl;
}
/**
* close a link template
*
* It will be added to the dependecies of the parent template.
*
* @access private
* @param array template definition for the link
*/
function _closeLink( $tmpl )
{
/**
* add it to the dependencies
*/
if( !empty( $this->_tmplStack ) )
{
$this->_addToParentTag( 'dependencies',
strtolower( $tmpl['src'] )
);
$this->_characterData( sprintf( "%sTMPL:%s%s", $this->_startTag, strtoupper( $tmpl['src'] ), $this->_endTag ) );
}
return true;
}
/**
* create a new template
*
* @access private
* @param array attributes
* @return boolean true on success
*/
function _initTemplate( $attributes )
{
/**
* build name for the template
*/
if( !isset( $attributes['name'] ) )
$name = $this->_buildTemplateName();
else
{
$name = strtolower( $attributes['name'] );
unset( $attributes['name'] );
}
/**
* name must be unique
*/
if( isset( $this->_templates[$name] ) || $this->_tmpl->exists( $name ) )
{
patErrorManager::raiseNotice(
PATTEMPLATE_READER_NOTICE_TEMPLATE_EXISTS,
$this->_createErrorMessage( "Template $name already exists" ),
$name
);
}
/**
* update the path
*/
array_push( $this->_path, $name );
if( isset( $attributes['maxloop'] ) )
{
if( !isset( $attributes['parent'] ) )
$attributes['parent'] = $this->_getFromParentTemplate( 'name' );
}
$attributes = $this->_prepareTmplAttributes( $attributes, $name );
array_push( $this->_inheritAtts, array(
'whitespace' => $attributes['whitespace'],
'unusedvars' => $attributes['unusedvars'],
'autoclear' => $attributes['autoclear']
)
);
/**
* create a new template
*/
$tmpl = array(
'type' => 'tmpl',
'name' => $name,
'attributes' => $attributes,
'content' => '',
'dependencies' => array(),
'varspecs' => array(),
'comments' => array(),
'loaded' => false,
'parsed' => false,
'input' => $this->_name.'://'.$this->_currentInput
);
if( $this->_root == null )
{
$this->_root = $name;
$tmpl['isRoot'] = true;
}
/**
* prepare subtemplates
*/
switch( $attributes['type'] )
{
case 'condition':
case 'modulo':
$tmpl['subtemplates'] = array();
break;
}
return $tmpl;
}
/**
* prepare attributes
*
* @access private
* @param array attributes
* @param string template name (only used for error messages)
* @return array attributes
*/
function _prepareTmplAttributes( $attributes, $templatename )
{
/**
* do not prepare twice
*/
if( isset( $attributes['__prepared'] ) && $attributes['__prepared'] === true )
return $attributes;
$attributes = $this->_inheritAttributes( $attributes );
/**
* get the attributes
*/
$attributes = array_merge( $this->_tmpl->getDefaultAttributes(), $attributes );
$attributes['type'] = strtolower( $attributes['type'] );
if( !isset( $attributes['addsystemvars'] ) )
{
$attributes['addsystemvars'] = false;
}
else
{
switch ($attributes['addsystemvars'])
{
case 'on':
case 'boolean':
$attributes['addsystemvars'] = 'boolean';
break;
case 'int':
case 'integer':
$attributes['addsystemvars'] = 'integer';
break;
case 'off':
$attributes['addsystemvars'] = false;
break;
}
}
/**
* external template
*/
if( isset( $attributes['src'] ) )
{
if( !isset( $attributes['reader'] ) )
$attributes['reader'] = $this->getName();
if( !isset( $attributes['autoload'] ) )
$attributes['autoload'] = $this->_defaultAtts['autoload'];
}
/**
* varscope is set
*/
if( isset( $attributes['varscope'] ) )
{
/**
* varscope is parent
*/
if( $attributes['varscope'] === '__parent' )
{
$attributes['varscope'] = $this->_getFromParentTemplate( 'name' );
}
$attributes['varscope'] = strtolower( $attributes['varscope'] );
}
switch( $attributes['type'] )
{
/**
* validate condition template
*/
case 'condition':
if( !isset( $attributes['conditionvar'] ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_TAG,
$this->_createErrorMessage( "Attribute 'conditionvar' missing for $templatename" )
);
}
$attributes['conditionvar'] = strtoupper( $attributes['conditionvar'] );
if( strstr( $attributes['conditionvar'], '.' ) )
{
list( $attributes['conditiontmpl'], $attributes['conditionvar'] ) = explode( '.', $attributes['conditionvar'] );
$attributes['conditiontmpl'] = strtolower( $attributes['conditiontmpl'] );
}
$attributes['autoclear'] = 'yes';
if( !isset( $attributes['useglobals'] ) )
$attributes['useglobals'] = 'no';
break;
/**
* validate simplecondition template
*/
case 'simplecondition':
if( !isset( $attributes['requiredvars'] ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_TAG,
$this->_createErrorMessage( "Attribute 'requiredvars' missing for $templatename" )
);
}
$tmp = array_map( 'trim', explode( ',', strtoupper( $attributes['requiredvars'] ) ) );
$attributes['requiredvars'] = array();
foreach( $tmp as $var )
{
$pos = strpos( $var, '.' );
if( $pos === false )
{
array_push( $attributes['requiredvars'], array( $templatename, $var ) );
}
else
{
array_push( $attributes['requiredvars'], array(
strtolower( substr( $var, 0, $pos ) ),
substr( $var, $pos+1 )
)
);
}
}
$attributes['autoclear'] = 'yes';
break;
/**
* oddeven => switch to new modulo syntax
*/
case 'oddeven':
$attributes['type'] = 'modulo';
$attributes['modulo'] = 2;
$attributes['autoclear'] = 'yes';
break;
/**
* modulo => requires a module attribute
*/
case 'modulo':
if( !isset( $attributes['modulo'] ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_TAG,
$this->_createErrorMessage( "Attribute 'modulo' missing for $templatename" )
);
}
$attributes['autoclear'] = 'yes';
break;
/**
* standard template => do nothing
*/
case 'standard':
break;
/**
* unknown type
*/
default:
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_TAG,
$this->_createErrorMessage( "Unknown value for attribute type: {$attributes['type']}" )
);
break;
}
$attributes['__prepared'] = true;
return $attributes;
}
/**
* build a template name
*
* @access private
* @return string new template name
*/
function _buildTemplateName()
{
return strtolower( uniqid( 'tmpl' ) );
}
/**
* close the current template
*
* @access private
* @return boolean true on success
*/
function _closeTemplate( $tmpl, $data )
{
$name = array_pop( $this->_path );
$data = $this->_adjustWhitespace( $data, $tmpl['attributes']['whitespace'] );
array_pop( $this->_inheritAtts );
/**
* check for special templates
*/
switch( $tmpl['attributes']['type'] )
{
/**
* check for whitespace in conditional templates
* and raise a notice
*/
case 'condition':
case 'modulo':
if( trim( $data ) != '' )
{
patErrorManager::raiseNotice(
PATTEMPLATE_READER_NOTICE_INVALID_CDATA_SECTION,
$this->_createErrorMessage( sprintf( 'No cdata is allowed inside a template of type %s (cdata was found in %s)', $tmpl['attributes']['type'], $tmpl['name'] ) )
);
}
$data = null;
break;
}
/**
* store the content
*/
$tmpl['content'] = $data;
/**
* No external template
*/
if( !isset( $tmpl['attributes']['src'] ) )
{
$tmpl['loaded'] = true;
}
/**
* add it to the dependencies
*/
if( !empty( $this->_tmplStack ) )
{
$this->_addToParentTag( 'dependencies',
$name
);
if( isset( $tmpl['attributes']['placeholder'] ) )
{
if( $tmpl['attributes']['placeholder'] === 'none' )
$tmpl['attributes']['placeholder'] = '__none';
if( $tmpl['attributes']['placeholder'] !== '__none' )
$this->_characterData( $this->_startTag.(strtoupper( $tmpl['attributes']['placeholder'] ) ).$this->_endTag );
}
else
{
$this->_characterData( sprintf( "%sTMPL:%s%s", $this->_startTag, strtoupper( $name ), $this->_endTag ) );
}
}
unset( $tmpl['name'] );
unset( $tmpl['tag'] );
$this->_templates[$name] = $tmpl;
return true;
}
/**
* create a new sub-template
*
* @access private
* @param array attributes
* @return boolean true on success
*/
function _initSubTemplate( $attributes )
{
/**
* has to be embedded in a 'tmpl' tag
*/
if( !$this->_parentTagIs( 'tmpl' ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_TAG,
$this->_createErrorMessage( 'A subtemplate is only allowed in a TMPL tag' )
);
}
/**
* needs a condition attribute
*/
if( !isset( $attributes['condition'] ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_NO_CONDITION_SPECIFIED,
$this->_createErrorMessage( 'Missing \'condition\' attribute for subtemplate' )
);
}
/**
* maintain BC
*/
if( $this->shouldMaintainBc() && in_array( $attributes['condition'], array( 'default', 'empty', 'odd', 'even' ) ) )
{
$attributes['condition'] = '__' . $attributes['condition'];
}
if( $attributes['condition'] == '__odd' )
$attributes['condition'] = 1;
if( $attributes['condition'] == '__even' )
$attributes['condition'] = 0;
$parent = array_pop( $this->_tmplStack );
array_push( $this->_tmplStack, $parent );
if( $parent['attributes']['type'] == 'modulo' )
{
if( preg_match( '/^\d$/', $attributes['condition'] ) )
{
if( (integer)$attributes['condition'] >= $parent['attributes']['modulo'] )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_INVALID_CONDITION,
$this->_createErrorMessage( "Condition may only be between 0 and ".($parent['attributes']['modulo']-1) )
);
}
}
}
$attributes = $this->_inheritAttributes( $attributes );
$condition = $attributes['condition'];
unset( $attributes['condition'] );
$subTmpl = array(
'type' => 'sub',
'condition' => $condition,
'data' => '',
'attributes' => $attributes,
'comments' => array(),
'dependencies' => array()
);
return $subTmpl;
}
/**
* close subtemplate
*
* @access private
* @param string data
* @return boolean true on success
*/
function _closeSubTemplate( $subTmpl, $data )
{
$data = $this->_adjustWhitespace( $data, $subTmpl['attributes']['whitespace'] );
$subTmpl['data'] = $data;
$condition = $subTmpl['condition'];
unset( $subTmpl['condition'] );
$this->_addToParentTemplate( 'subtemplates',
$subTmpl,
$condition
);
return true;
}
/**
* handle a variable
*
* @access private
* @param array attributes of the var tag
* @param string cdata between the tags (will be used as default)
* @return boolean true on success
*/
function _handleVariable( $attributes, $data )
{
if( !isset( $attributes['name'] ) )
{
return patErrorManager::raiseError(
PATTEMPLATE_READER_ERROR_NO_NAME_SPECIFIED,
$this->_createErrorMessage( 'Variable needs a name attribute' )
);
}
$specs = array();
/**
* get name
*/
$name = strtoupper( $attributes['name'] );
unset( $attributes['name'] );
$specs['name'] = $name;
/**
* use data as default value
*/
if( isset( $attributes['default'] ) )
{
$data = $attributes['default'];
$specs['default'] = $data;
unset( $attributes['default'] );
}
else if( !empty( $data ) )
{
$specs['default'] = $data;
}
/**
* add it to template, if it's not hidden
*/
if( !isset( $attributes['hidden'] ) || $attributes['hidden'] == 'no' )
{
$this->_characterData( $this->_startTag . strtoupper( $name ) . $this->_endTag );
}
if( isset( $attributes['hidden'] ) )
unset( $attributes['hidden'] );
/**
* copy value from any other variable
*/
if( isset( $attributes['copyfrom'] ) )
{
$specs['copyfrom'] = strtoupper( $attributes['copyfrom'] );
if( strstr( $specs['copyfrom'], '.' ) )
{
$specs['copyfrom'] = explode( '.', $specs['copyfrom'] );
$specs['copyfrom'][0] = strtolower( $specs['copyfrom'][0] );
}
unset( $attributes['copyfrom'] );
}
if( isset( $attributes['modifier'] ) )
{
$modifier = $attributes['modifier'];
unset( $attributes['modifier'] );
$type = isset( $attributes['modifiertype'] ) ? $attributes['modifiertype'] : 'auto';
if( isset( $attributes['modifiertype'] ) )
unset( $attributes['modifiertype'] );
$specs['modifier'] = array( 'mod' => $modifier, 'type' => $type, 'params' => $attributes );
}
if( !empty( $specs ) )
{
$this->_addToParentTemplate(
'varspecs',
$specs,
$name
);
}
}
/**
* handle a comment
*
* @access private
* @param array attributes of the comment tag
* @param string cdata between the tags (will be used as default)
* @return boolean true on success
*/
function _handleComment( $attributes, $data )
{
$this->_addToParentTag(
'comments',
$data
);
}
/**
* get the character data of the element
*
* @access private
* @return string
*/
function _getCData()
{
if( $this->_depth == 0 )
{
return '';
}
return $this->_data[$this->_depth];
}
/**
* add to a property of the parent template
*
* @access private
* @param string property to add to
* @param mixed value to add
* @param string key
*/
function _addToParentTemplate( $property, $value, $key = null )
{
$cnt = count( $this->_tmplStack );
if( $cnt === 0 )
return false;
$pos = $cnt - 1;
while( $pos >= 0 )
{
if( $this->_tmplStack[$pos]['type'] != 'tmpl' )
{
$pos--;
continue;
}
if( $key === null )
{
if( !in_array( $value, $this->_tmplStack[$pos][$property] ) )
{
array_push( $this->_tmplStack[$pos][$property], $value );
}
}
else
$this->_tmplStack[$pos][$property][$key] = $value;
return true;
}
return false;
}
/**
* get a property of the parent template
*
* @access private
* @param string property to add to
* @return mixed value to add
*/
function _getFromParentTemplate( $property )
{
$cnt = count( $this->_tmplStack );
if( $cnt === 0 )
return false;
$pos = $cnt - 1;
while( $pos >= 0 )
{
if( $this->_tmplStack[$pos]['type'] != 'tmpl' )
{
$pos--;
continue;
}
if( isset( $this->_tmplStack[$pos][$property] ) )
return $this->_tmplStack[$pos][$property];
return false;
}
return false;
}
/**
* add to a property of the parent tag
*
* @access private
* @param string property to add to
* @param mixed value to add
* @param string key
*/
function _addToParentTag( $property, $value, $key = null )
{
$cnt = count( $this->_tmplStack );
if( $cnt === 0 )
return false;
$pos = $cnt - 1;
if( $key === null )
{
if( !in_array( $value, $this->_tmplStack[$pos][$property] ) )
{
array_push( $this->_tmplStack[$pos][$property], $value );
}
}
else
$this->_tmplStack[$pos][$property][$key] = $value;
return true;
}
/**
* adjust whitespace in a CData block
*
* @access private
* @param string data
* @param string behaviour
* @return string data
*/
function _adjustWhitespace( $data, $behaviour )
{
switch( $behaviour )
{
case 'trim':
$data = str_replace( '\n', ' ', $data );
$data = preg_replace( '/\s\s+/', ' ', $data );
$data = trim( $data );
break;
}
return $data;
}
/**
* inherit attributes from the parent template
*
* The following attributes are inherited automatically:
* - whitespace
* - unusedvars
*
* @access private
* @param array attributes
* @param array attributes with inherited attributes
* @return array new attribute collection
*/
function _inheritAttributes( $attributes )
{
if( !empty( $this->_inheritAtts ) )
$parent = end( $this->_inheritAtts );
else
$parent = array(
'whitespace' => $this->_defaultAtts['whitespace'],
'unusedvars' => $this->_defaultAtts['unusedvars'],
'autoclear' => $this->_defaultAtts['autoclear']
);
$attributes = array_merge( $parent, $attributes );
return $attributes;
}
/**
* checks, whether the parent tag is of a certain type
*
* This is needed to ensure, that subtemplates are only
* placed inside a template
*
* @access private
* @param string type (tmpl, sub, var, link)
* @return boolean
*/
function _parentTagIs( $type )
{
$parent = array_pop( $this->_tmplStack );
if( $parent === null )
return false;
array_push( $this->_tmplStack, $parent );
if( $parent['type'] == $type )
return true;
return false;
}
/**
* get the current line number
*
* @access private
* @return integer line number
*/
function _getCurrentLine()
{
$line = count( explode( "\n", $this->_processedData ) );
return $line;
}
/**
* create an error message
*
* This method takes an error messages and appends the
* current line number as well as a pointer to the input
* (filename)
*
* @access private
* @param string base error message
* @return strin error message
*/
function _createErrorMessage( $msg )
{
return sprintf( '%s in %s on line %d', $msg, $this->getCurrentInput(), $this->_getCurrentLine() );
}
/**
* get the current input
*
* @access public
* @return string
*/
function getCurrentInput()
{
return $this->_currentInput;
}
/**
* tests whether the reader should maintain backwards compatibility
*
* If enabled, you can still use 'default', 'empty', 'odd' and 'even'
* instead of '__default', '__empty', etc.
*
* This will be disabled by default in future versions.
*
* @access public
* @return boolean
*/
function shouldMaintainBc()
{
if( !isset( $this->_options['maintainBc'] ) )
return false;
return $this->_options['maintainBc'];
}
}
?>