-
Notifications
You must be signed in to change notification settings - Fork 77
/
LightnCandy.php
173 lines (146 loc) · 6.2 KB
/
LightnCandy.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
<?php
/*
MIT License
Copyright 2013-2018 Zordius Chen. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Origin: https://github.com/zordius/lightncandy
*/
/**
* the major file of LightnCandy compiler
*
* @package LightnCandy
* @author Zordius <[email protected]>
*/
namespace LightnCandy;
use \LightnCandy\Context;
use \LightnCandy\Compiler;
use \LightnCandy\Partial;
use \LightnCandy\Exporter;
/**
* LightnCandy major static class
*/
class LightnCandy extends Flags
{
protected static $lastContext;
public static $lastParsed;
/**
* Compile handlebars template into PHP code.
*
* @param string $template handlebars template string
* @param array<string,array|string|integer> $options LightnCandy compile time and run time options, default is array('flags' => LightnCandy::FLAG_BESTPERFORMANCE)
*
* @return string|false Compiled PHP code when successed. If error happened and compile failed, return false.
*/
public static function compile($template, $options = array('flags' => self::FLAG_BESTPERFORMANCE))
{
$context = Context::create($options);
if (static::handleError($context)) {
return false;
}
$code = Compiler::compileTemplate($context, SafeString::escapeTemplate($template));
static::$lastParsed = Compiler::$lastParsed;
// return false when fatal error
if (static::handleError($context)) {
return false;
}
// Or, return full PHP render codes as string
return Compiler::composePHPRender($context, $code);
}
/**
* Compile handlebars partial into PHP function code.
*
* @param string $template handlebars template string
* @param array<string,array|string|integer> $options LightnCandy compile time and run time options, default is array('flags' => LightnCandy::FLAG_BESTPERFORMANCE)
*
* @return string|false Compiled PHP code when successed. If error happened and compile failed, return false.
*
* @expect false when input '{{"}}', array('flags' => LightnCandy::FLAG_HANDLEBARS)
*/
public static function compilePartial($template, $options = array('flags' => self::FLAG_BESTPERFORMANCE))
{
$context = Context::create($options);
if (static::handleError($context)) {
return false;
}
$code = Partial::compile($context, SafeString::escapeTemplate($template));
static::$lastParsed = Compiler::$lastParsed;
// return false when fatal error
if (static::handleError($context)) {
return false;
}
return $code;
}
/**
* Handle exists error and return error status.
*
* @param array<string,array|string|integer> $context Current context of compiler progress.
*
* @throws \Exception
* @return boolean True when error detected
*
* @expect false when input array('error' => array())
* @expect true when input array('error' => array('some error'), 'flags' => array('errorlog' => 0, 'exception' => 0))
*/
protected static function handleError(&$context)
{
static::$lastContext = $context;
if (count($context['error'])) {
if ($context['flags']['errorlog']) {
error_log(implode("\n", $context['error']));
}
if ($context['flags']['exception']) {
throw new \Exception(implode("\n", $context['error']));
}
return true;
}
return false;
}
/**
* Get last compiler context.
*
* @return array<string,array|string|integer> Context data
*/
public static function getContext()
{
return static::$lastContext;
}
/**
* Get a working render function by a string of PHP code. This method may requires php setting allow_url_include=1 and allow_url_fopen=1 , or access right to tmp file system.
*
* @param string $php PHP code
* @param string|null $tmpDir Optional, change temp directory for php include file saved by prepare() when cannot include PHP code with data:// format.
* @param boolean $delete Optional, delete temp php file when set to tru. Default is true, set it to false for debug propose
*
* @return Closure|false result of include()
*
* @deprecated
*/
public static function prepare($php, $tmpDir = null, $delete = true)
{
$php = "<?php $php ?>";
if (!ini_get('allow_url_include') || !ini_get('allow_url_fopen')) {
if (!is_string($tmpDir) || !is_dir($tmpDir)) {
$tmpDir = sys_get_temp_dir();
}
}
if (is_dir($tmpDir)) {
$fn = tempnam($tmpDir, 'lci_');
if (!$fn) {
error_log("Can not generate tmp file under $tmpDir!!\n");
return false;
}
if (!file_put_contents($fn, $php)) {
error_log("Can not include saved temp php code from $fn, you should add $tmpDir into open_basedir!!\n");
return false;
}
$phpfunc = include($fn);
if ($delete) {
unlink($fn);
}
return $phpfunc;
}
return include('data://text/plain,' . urlencode($php));
}
}