LCRun3.php
29.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
<?php
namespace WebPlugin;
/**
* LightnCandy static class for compiled template runtime methods.
*/
class LCRun3 {
const DEBUG_ERROR_LOG = 1;
const DEBUG_ERROR_EXCEPTION = 2;
const DEBUG_TAGS = 4;
const DEBUG_TAGS_ANSI = 12;
const DEBUG_TAGS_HTML = 20;
/**
* LightnCandy runtime method for output debug info.
*
* @param string $v expression
* @param string $f runtime function name
* @param array<string,array|string|integer> $cx render time context
*
* @expect '{{123}}' when input '123', 'miss', array('flags' => array('debug' => LCRun3::DEBUG_TAGS), 'lcrun' => 'LCRun3'), ''
* @expect '<!--MISSED((-->{{#123}}<!--))--><!--SKIPPED--><!--MISSED((-->{{/123}}<!--))-->' when input '123', 'wi', array('flags' => array('debug' => LCRun3::DEBUG_TAGS_HTML), 'lcrun' => 'LCRun3'), false, false, function () {return 'A';}
*/
public static function debug($v, $f, $cx) {
$params = array_slice(func_get_args(), 2);
$r = call_user_func_array((isset($cx['funcs'][$f]) ? $cx['funcs'][$f] : "{$cx['lcrun']}::$f"), $params);
if ($cx['flags']['debug'] & self::DEBUG_TAGS) {
$ansi = $cx['flags']['debug'] & (self::DEBUG_TAGS_ANSI - self::DEBUG_TAGS);
$html = $cx['flags']['debug'] & (self::DEBUG_TAGS_HTML - self::DEBUG_TAGS);
$cs = ($html ? (($r !== '') ? '<!!--OK((-->' : '<!--MISSED((-->') : '')
. ($ansi ? (($r !== '') ? "\033[0;32m" : "\033[0;31m") : '');
$ce = ($html ? '<!--))-->' : '')
. ($ansi ? "\033[0m" : '');
switch ($f) {
case 'sec':
case 'ifv':
case 'unl':
case 'wi':
if ($r == '') {
if ($ansi) {
$r = "\033[0;33mSKIPPED\033[0m";
}
if ($html) {
$r = '<!--SKIPPED-->';
}
}
return "$cs{{#{$v}}}$ce{$r}$cs{{/{$v}}}$ce";
default:
return "$cs{{{$v}}}$ce";
}
} else {
return $r;
}
}
/**
* LightnCandy runtime method for missing data error.
*
* @param array<string,array|string|integer> $cx render time context
* @param string $v expression
*/
public static function miss($cx, $v) {
$e = "LCRun3: $v is not exist";
if ($cx['flags']['debug'] & self::DEBUG_ERROR_LOG) {
error_log($e);
return;
}
if ($cx['flags']['debug'] & self::DEBUG_ERROR_EXCEPTION) {
throw new Exception($e);
}
}
/**
* LightnCandy runtime method for variable lookup. It is slower and only be used for instance property or method detection.
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer> $base current variable context
* @param array<string|integer> $path array of names for path
*
* @return null|string Return the value or null when not found
*
* @expect null when input array('scopes' => array(), 'flags' => array('prop' => 0, 'method' => 0, 'mustlok' => 0)), 0, array('a', 'b')
* @expect 3 when input array('scopes' => array(), 'flags' => array('prop' => 0, 'method' => 0), 'mustlok' => 0), array('a' => array('b' => 3)), array('a', 'b')
* @expect null when input array('scopes' => array(), 'flags' => array('prop' => 0, 'method' => 0, 'mustlok' => 0)), (Object) array('a' => array('b' => 3)), array('a', 'b')
* @expect 3 when input array('scopes' => array(), 'flags' => array('prop' => 1, 'method' => 0, 'mustlok' => 0)), (Object) array('a' => array('b' => 3)), array('a', 'b')
*/
public static function v($cx, $base, $path) {
$count = count($cx['scopes']);
while ($base) {
$v = $base;
foreach ($path as $name) {
if (is_array($v) && isset($v[$name])) {
$v = $v[$name];
continue;
}
if (is_object($v)) {
if ($cx['flags']['prop'] && isset($v->$name)) {
$v = $v->$name;
continue;
}
if ($cx['flags']['method'] && is_callable(array($v, $name))) {
$v = $v->$name();
continue;
}
}
if ($cx['flags']['mustlok']) {
unset($v);
break;
}
return null;
}
if (isset($v)) {
return $v;
}
$count--;
switch ($count) {
case -1:
$base = $cx['sp_vars']['root'];
break;
case -2:
return null;
default:
$base = $cx['scopes'][$count];
}
}
}
/**
* LightnCandy runtime method for {{#if var}}.
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $v value to be tested
*
* @return boolean Return true when the value is not null nor false.
*
* @expect false when input array(), null
* @expect false when input array(), 0
* @expect false when input array(), false
* @expect true when input array(), true
* @expect true when input array(), 1
* @expect false when input array(), ''
* @expect false when input array(), array()
* @expect true when input array(), array('')
* @expect true when input array(), array(0)
*/
public static function ifvar($cx, $v) {
return !is_null($v) && ($v !== false) && ($v !== 0) && ($v !== 0.0) && ($v !== '') && (is_array($v) ? (count($v) > 0) : true);
}
/**
* LightnCandy runtime method for {{#if var}} when {{../var}} used.
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $v value to be tested
* @param array<array|string|integer> $in input data with current scope
* @param Closure|null $truecb callback function when test result is true
* @param Closure|null $falsecb callback function when test result is false
*
* @return string The rendered string of the section
*
* @expect '' when input array('scopes' => array()), null, array(), null
* @expect '' when input array('scopes' => array()), null, array(), function () {return 'Y';}
* @expect 'Y' when input array('scopes' => array()), 1, array(), function () {return 'Y';}
* @expect 'N' when input array('scopes' => array()), null, array(), function () {return 'Y';}, function () {return 'N';}
*/
public static function ifv($cx, $v, $in, $truecb, $falsecb = null) {
$ret = '';
if (self::ifvar($cx, $v)) {
if ($truecb) {
$cx['scopes'][] = $in;
$ret = $truecb($cx, $in);
array_pop($cx['scopes']);
}
} else {
if ($falsecb) {
$cx['scopes'][] = $in;
$ret = $falsecb($cx, $in);
array_pop($cx['scopes']);
}
}
return $ret;
}
/**
* LightnCandy runtime method for {{#unless var}} when {{../var}} used.
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $var value be tested
* @param array<array|string|integer>|string|integer|null $in input data with current scope
* @param Closure $truecb callback function when test result is true
* @param Closure|null $falsecb callback function when test result is false
*
* @return string Return rendered string when the value is not null nor false.
*
* @expect '' when input array('scopes' => array()), null, array(), null
* @expect 'Y' when input array('scopes' => array()), null, array(), function () {return 'Y';}
* @expect '' when input array('scopes' => array()), 1, array(), function () {return 'Y';}
* @expect 'Y' when input array('scopes' => array()), null, array(), function () {return 'Y';}, function () {return 'N';}
* @expect 'N' when input array('scopes' => array()), true, array(), function () {return 'Y';}, function () {return 'N';}
*/
public static function unl($cx, $var, $in, $truecb, $falsecb = null) {
return self::ifv($cx, $var, $in, $falsecb, $truecb);
}
/**
* LightnCandy runtime method for {{^var}} inverted section.
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $v value to be tested
*
* @return boolean Return true when the value is not null nor false.
*
* @expect true when input array(), null
* @expect false when input array(), 0
* @expect true when input array(), false
* @expect false when input array(), 'false'
* @expect true when input array(), array()
* @expect false when input array(), array('1')
*/
public static function isec($cx, $v) {
return is_null($v) || ($v === false) || (is_array($v) && (count($v) === 0));
}
/**
* LightnCandy runtime method for {{{var}}} .
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $v value to be output
*
* @return string The raw value of the specified variable
*
* @expect true when input array('flags' => array('jstrue' => 0)), true
* @expect 'true' when input array('flags' => array('jstrue' => 1)), true
* @expect '' when input array('flags' => array('jstrue' => 0)), false
* @expect 'false' when input array('flags' => array('jstrue' => 1)), false
* @expect 'false' when input array('flags' => array('jstrue' => 1)), false, true
* @expect 'Array' when input array('flags' => array('jstrue' => 1, 'jsobj' => 0)), array('a', 'b')
* @expect 'a,b' when input array('flags' => array('jstrue' => 1, 'jsobj' => 1)), array('a', 'b')
* @expect '[object Object]' when input array('flags' => array('jstrue' => 1, 'jsobj' => 1)), array('a', 'c' => 'b')
* @expect '[object Object]' when input array('flags' => array('jstrue' => 1, 'jsobj' => 1)), array('c' => 'b')
* @expect 'a,true' when input array('flags' => array('jstrue' => 1, 'jsobj' => 1)), array('a', true)
* @expect 'a,1' when input array('flags' => array('jstrue' => 0, 'jsobj' => 1)), array('a',true)
* @expect 'a,' when input array('flags' => array('jstrue' => 0, 'jsobj' => 1)), array('a',false)
* @expect 'a,false' when input array('flags' => array('jstrue' => 1, 'jsobj' => 1)), array('a',false)
*/
public static function raw($cx, $v) {
if ($v === true) {
if ($cx['flags']['jstrue']) {
return 'true';
}
}
if (($v === false)) {
if ($cx['flags']['jstrue']) {
return 'false';
}
}
if (is_array($v)) {
if ($cx['flags']['jsobj']) {
if (count(array_diff_key($v, array_keys(array_keys($v)))) > 0) {
return '[object Object]';
} else {
$ret = array();
foreach ($v as $k => $vv) {
$ret[] = self::raw($cx, $vv);
}
return join(',', $ret);
}
} else {
return 'Array';
}
}
return "$v";
}
/**
* LightnCandy runtime method for {{var}} .
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $var value to be htmlencoded
*
* @return string The htmlencoded value of the specified variable
*
* @expect 'a' when input array(), 'a'
* @expect 'a&b' when input array(), 'a&b'
* @expect 'a'b' when input array(), 'a\'b'
*/
public static function enc($cx, $var) {
return htmlentities(self::raw($cx, $var), ENT_QUOTES, 'UTF-8');
}
/**
* LightnCandy runtime method for {{var}} , and deal with single quote to same as handlebars.js .
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $var value to be htmlencoded
*
* @return string The htmlencoded value of the specified variable
*
* @expect 'a' when input array(), 'a'
* @expect 'a&b' when input array(), 'a&b'
* @expect 'a'b' when input array(), 'a\'b'
* @expect '`a'b' when input array(), '`a\'b'
*/
public static function encq($cx, $var) {
return preg_replace('/`/', '`', preg_replace('/'/', ''', htmlentities(self::raw($cx, $var), ENT_QUOTES, 'UTF-8')));
}
/**
* LightnCandy runtime method for {{#var}} section.
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $v value for the section
* @param array<array|string|integer>|string|integer|null $in input data with current scope
* @param boolean $each true when rendering #each
* @param Closure $cb callback function to render child context
* @param Closure|null $else callback function to render child context when {{else}}
*
* @return string The rendered string of the section
*
* @expect '' when input array('flags' => array('spvar' => 0)), false, false, false, function () {return 'A';}
* @expect '' when input array('flags' => array('spvar' => 0)), null, null, false, function () {return 'A';}
* @expect 'A' when input array('flags' => array('spvar' => 0)), true, true, false, function () {return 'A';}
* @expect 'A' when input array('flags' => array('spvar' => 0)), 0, 0, false, function () {return 'A';}
* @expect '-a=' when input array('flags' => array('spvar' => 0)), array('a'), array('a'), false, function ($c, $i) {return "-$i=";}
* @expect '-a=-b=' when input array('flags' => array('spvar' => 0)), array('a','b'), array('a','b'), false, function ($c, $i) {return "-$i=";}
* @expect '' when input array('flags' => array('spvar' => 0)), 'abc', 'abc', true, function ($c, $i) {return "-$i=";}
* @expect '-b=' when input array('flags' => array('spvar' => 0)), array('a' => 'b'), array('a' => 'b'), true, function ($c, $i) {return "-$i=";}
* @expect '1' when input array('flags' => array('spvar' => 0)), 'b', 'b', false, function ($c, $i) {return count($i);}
* @expect '1' when input array('flags' => array('spvar' => 0)), 1, 1, false, function ($c, $i) {return print_r($i, true);}
* @expect '0' when input array('flags' => array('spvar' => 0)), 0, 0, false, function ($c, $i) {return print_r($i, true);}
* @expect '{"b":"c"}' when input array('flags' => array('spvar' => 0)), array('b' => 'c'), array('b' => 'c'), false, function ($c, $i) {return json_encode($i);}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), array(), 0, true, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), array(), 0, false, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), false, 0, true, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), false, 0, false, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), '', 0, true, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'cb' when input array('flags' => array('spvar' => 0)), '', 0, false, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), 0, 0, true, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'cb' when input array('flags' => array('spvar' => 0)), 0, 0, false, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'inv' when input array('flags' => array('spvar' => 0)), new stdClass, 0, true, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect 'cb' when input array('flags' => array('spvar' => 0)), new stdClass, 0, false, function ($c, $i) {return 'cb';}, function ($c, $i) {return 'inv';}
* @expect '268' when input array('flags' => array('spvar' => 1), 'sp_vars'=>array('root' => 0)), array(1,3,4), 0, false, function ($c, $i) {return $i * 2;}
* @expect '038' when input array('flags' => array('spvar' => 1), 'sp_vars'=>array('root' => 0)), array(1,3,'a'=>4), 0, true, function ($c, $i) {return $i * $c['sp_vars']['index'];}
*/
public static function sec($cx, $v, $in, $each, $cb, $else = null) {
$isAry = is_array($v) || ($v instanceof ArrayObject);
$isTrav = $v instanceof Traversable;
$loop = $each;
$keys = null;
$last = null;
$isObj = false;
if ($isAry && $else !== null && count($v) === 0) {
$cx['scopes'][] = $in;
$ret = $else($cx, $in);
array_pop($cx['scopes']);
return $ret;
}
// #var, detect input type is object or not
if (!$loop && $isAry) {
$keys = array_keys($v);
$loop = (count(array_diff_key($v, array_keys($keys))) == 0);
$isObj = !$loop;
}
if (($loop && $isAry) || $isTrav) {
if ($each && !$isTrav) {
// Detect input type is object or not when never done once
if ($keys == null) {
$keys = array_keys($v);
$isObj = (count(array_diff_key($v, array_keys($keys))) > 0);
}
}
$ret = array();
$cx['scopes'][] = $in;
$i = 0;
if ($cx['flags']['spvar']) {
$old_spvar = $cx['sp_vars'];
$cx['sp_vars'] = array(
'_parent' => $old_spvar,
'root' => $old_spvar['root'],
);
if (!$isTrav) {
$last = count($keys) - 1;
}
}
foreach ($v as $index => $raw) {
if ($cx['flags']['spvar']) {
$cx['sp_vars']['first'] = ($i === 0);
$cx['sp_vars']['last'] = ($i == $last);
$cx['sp_vars']['key'] = $index;
$cx['sp_vars']['index'] = $i;
$i++;
}
$ret[] = $cb($cx, $raw);
}
if ($cx['flags']['spvar']) {
if ($isObj) {
unset($cx['sp_vars']['key']);
} else {
unset($cx['sp_vars']['last']);
}
unset($cx['sp_vars']['index']);
unset($cx['sp_vars']['first']);
$cx['sp_vars'] = $old_spvar;
}
array_pop($cx['scopes']);
return join('', $ret);
}
if ($each) {
if ($else !== null) {
$cx['scopes'][] = $in;
$ret = $else($cx, $v);
array_pop($cx['scopes']);
return $ret;
}
return '';
}
if ($isAry) {
$cx['scopes'][] = $in;
$ret = $cb($cx, $v);
array_pop($cx['scopes']);
return $ret;
}
if ($v === true) {
return $cb($cx, $in);
}
if (!is_null($v) && ($v !== false)) {
return $cb($cx, $v);
}
if ($else !== null) {
$cx['scopes'][] = $in;
$ret = $else($cx, $in);
array_pop($cx['scopes']);
return $ret;
}
return '';
}
/**
* LightnCandy runtime method for {{#with var}} .
*
* @param array<string,array|string|integer> $cx render time context
* @param array<array|string|integer>|string|integer|null $v value to be the new context
* @param array<array|string|integer>|string|integer|null $in input data with current scope
* @param Closure $cb callback function to render child context
* @param Closure|null $else callback function to render child context when {{else}}
*
* @return string The rendered string of the token
*
* @expect '' when input array(), false, false, function () {return 'A';}
* @expect '' when input array(), null, null, function () {return 'A';}
* @expect '{"a":"b"}' when input array(), array('a'=>'b'), array('a'=>'c'), function ($c, $i) {return json_encode($i);}
* @expect '-b=' when input array(), 'b', array('a'=>'b'), function ($c, $i) {return "-$i=";}
*/
public static function wi($cx, $v, $in, $cb, $else = null) {
if (($v === false) || ($v === null)) {
return $else ? $else($cx, $in) : '';
}
$cx['scopes'][] = $in;
$ret = $cb($cx, $v);
array_pop($cx['scopes']);
return $ret;
}
/**
* LightnCandy runtime method for {{> partial}} .
*
* @param array<string,array|string|integer> $cx render time context
* @param string $p partial name
* @param array<array|string|integer>|string|integer|null $v value to be the new context
*
* @return string The rendered string of the partial
*
*/
public static function p($cx, $p, $v, $sp = '') {
$param = $v[0][0];
if (is_array($v[1])) {
if (is_array($v[0][0])) {
$param = array_merge($v[0][0], $v[1]);
} else if (($cx['flags']['method'] || $cx['flags']['prop']) && is_object($v[0][0])) {
foreach ($v[1] as $i => $v) {
$param->$i = $v;
}
}
}
return call_user_func($cx['partials'][$p], $cx, $param, $sp);
}
/**
* LightnCandy runtime method for custom helpers.
*
* @param array<string,array|string|integer> $cx render time context
* @param string $ch the name of custom helper to be executed
* @param array<array> $vars variables for the helper
* @param string $op the name of variable resolver. should be one of: 'raw', 'enc', or 'encq'.
*
* @return string The rendered string of the token
*
* @expect '=-=' when input array('helpers' => array('a' => function ($i) {return "=$i[0]=";})), 'a', array(array('-'),array()), 'raw'
* @expect '=&=' when input array('helpers' => array('a' => function ($i) {return "=$i[0]=";})), 'a', array(array('&'),array()), 'enc'
* @expect '='=' when input array('helpers' => array('a' => function ($i) {return "=$i[0]=";})), 'a', array(array('\''),array()), 'encq'
* @expect '=b=' when input array('helpers' => array('a' => function ($i,$j) {return "={$j['a']}=";})), 'a', array(array(),array('a' => 'b')), 'raw'
*/
public static function ch($cx, $ch, $vars, $op) {
return self::chret(call_user_func_array($cx['helpers'][$ch], $vars), $op);
}
/**
* LightnCandy runtime method to handle response of custom helpers.
*
* @param string|array<string,array|string|integer> $ret return value from custom helper
* @param string $op the name of variable resolver. should be one of: 'raw', 'enc', or 'encq'.
*
* @return string The rendered string of the token
*
* @expect '=&=' when input '=&=', 'raw'
* @expect '=&'=' when input '=&\'=', 'enc'
* @expect '=&'=' when input '=&\'=', 'encq'
* @expect '=&'=' when input array('=&\'='), 'enc'
* @expect '=&'=' when input array('=&\'='), 'encq'
* @expect '=&=' when input array('=&=', false), 'enc'
* @expect '=&=' when input array('=&=', false), 'raw'
* @expect '=&=' when input array('=&=', 'raw'), 'enc'
* @expect '=&'=' when input array('=&\'=', 'encq'), 'raw'
*/
public static function chret($ret, $op) {
if (is_array($ret)) {
if (isset($ret[1]) && $ret[1]) {
$op = $ret[1];
}
$ret = $ret[0];
}
switch ($op) {
case 'enc':
return htmlentities($ret, ENT_QUOTES, 'UTF-8');
case 'encq':
return preg_replace('/'/', ''', htmlentities($ret, ENT_QUOTES, 'UTF-8'));
}
return $ret;
}
/**
* LightnCandy runtime method for Handlebars.js style custom helpers.
*
* @param array<string,array|string|integer> $cx render time context
* @param string $ch the name of custom helper to be executed
* @param array<array|string|integer>|string|integer|null $vars variables for the helper
* @param string $op the name of variable resolver. should be one of: 'raw', 'enc', or 'encq'.
* @param boolean $inverted the logic will be inverted
* @param Closure|null $cb callback function to render child context
* @param Closure|null $else callback function to render child context when {{else}}
*
* @return string The rendered string of the token
*/
public static function hbch($cx, $ch, $vars, $op, $inverted, $cb = null, $else = null) {
$isBlock = (is_object($cb) && ($cb instanceof Closure));
$args = $vars[0];
$options = array(
'name' => $ch,
'hash' => $vars[1],
'_this' => $isBlock ? $op : $inverted,
);
// $invert the logic
if ($inverted) {
$tmp = $else;
$else = $cb;
$cb = $tmp;
}
if ($isBlock) {
$options['fn'] = function ($context = '_NO_INPUT_HERE_') use ($cx, $op, $cb) {
if ($cx['flags']['echo']) {
ob_start();
}
if ($context === '_NO_INPUT_HERE_') {
$cx['scopes'][] = $op;
$ret = $cb($cx, $op);
} else {
$cx['scopes'][] = $op;
$ret = $cb($cx, $context);
}
array_pop($cx['scopes']);
return $cx['flags']['echo'] ? ob_get_clean() : $ret;
};
}
if ($else) {
$options['inverse'] = function ($context = '_NO_INPUT_HERE_') use ($cx, $op, $else) {
if ($cx['flags']['echo']) {
ob_start();
}
if ($context === '_NO_INPUT_HERE_') {
$ret = $else($cx, $op);
} else {
$cx['scopes'][] = $op;
$ret = $else($cx, $context);
array_pop($cx['scopes']);
}
return $cx['flags']['echo'] ? ob_get_clean() : $ret;
};
}
// prepare $options['data']
if ($cx['flags']['spvar']) {
$options['data'] = $cx['sp_vars'];
}
$args[] = $options;
$e = null;
$r = true;
try {
$r = call_user_func_array($cx['hbhelpers'][$ch], $args);
} catch (Exception $E) {
$e = "LCRun3: call custom helper '$ch' error: " . $E->getMessage();
}
if($e !== null) {
if ($cx['flags']['debug'] & self::DEBUG_ERROR_LOG) {
error_log($e);
}
if ($cx['flags']['debug'] & self::DEBUG_ERROR_EXCEPTION) {
throw new Exception($e);
}
}
return self::chret($r, $isBlock ? 'raw' : $op);
}
/**
* LightnCandy runtime method for block custom helpers.
*
* @param array<string,array|string|integer> $cx render time context
* @param string $ch the name of custom helper to be executed
* @param array<array|string|integer>|string|integer|null $vars variables for the helper
* @param array<array|string|integer>|string|integer|null $in input data with current scope
* @param boolean $inverted the logic will be inverted
* @param Closure $cb callback function to render child context
* @param Closure|null $else callback function to render child context when {{else}}
*
* @return string The rendered string of the token
*
* @expect '4.2.3' when input array('blockhelpers' => array('a' => function ($cx) {return array($cx,2,3);})), 'a', array(0, 0), 4, false, function($cx, $i) {return implode('.', $i);}
* @expect '2.6.5' when input array('blockhelpers' => array('a' => function ($cx,$in) {return array($cx,$in[0],5);})), 'a', array('6', 0), 2, false, function($cx, $i) {return implode('.', $i);}
* @expect '' when input array('blockhelpers' => array('a' => function ($cx,$in) {})), 'a', array('6', 0), 2, false, function($cx, $i) {return implode('.', $i);}
*/
public static function bch($cx, $ch, $vars, $in, $inverted, $cb, $else = null) {
$r = call_user_func($cx['blockhelpers'][$ch], $in, $vars[0], $vars[1]);
// $invert the logic
if ($inverted) {
$tmp = $else;
$else = $cb;
$cb = $tmp;
}
$ret = '';
if (is_null($r)) {
if ($else) {
$cx['scopes'][] = $in;
$ret = $else($cx, $r);
array_pop($cx['scopes']);
}
} else {
if ($cb) {
$cx['scopes'][] = $in;
$ret = $cb($cx, $r);
array_pop($cx['scopes']);
}
}
return $ret;
}
}