template.class.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <?php
  2. namespace Juju\Data;
  3. require_once(realpath(dirname(__DIR__).'/events.trait.php'));
  4. require_once('earray.class.php');
  5. use Juju\{Events, Data\EArray};
  6. use \Exception;
  7. class Template {
  8. use Events;
  9. private static $templates = [];
  10. public static $cachedir;
  11. public static $basedir = __DIR__;
  12. private static $regex = [
  13. 'match'=>'/\{([^#\/?_][^}\n]*?)\}/i',
  14. 'parentmatch'=>'/\{\.\.\/([^#\/?_][^}\n]*?)\}/i',
  15. 'each'=>'/\{#each ([^}]*)\}([\S\s]*)\{\/each \1\}/i',
  16. 'exist'=>'/\{#exist ([^}]*)\}([\S\s]*)\{\/exist \1\}/i',
  17. 'existelse'=>'/\{#exist ([^}]*)\}([\S\s]*)\{#else \1\}([\S\s]*)\{\/exist \1\}/i',
  18. 'ignore'=>'/\{#ignore\}([\S\s]*)\{\/ignore\}/i',
  19. 'ignored'=>'/\{#ignored (\d+?)\}/i',
  20. 'gettext'=>"/{_([^,}]+)(?:, ?([^},]+))*\}/i",
  21. 'gettext_string'=>'/^([\'"])(.+)\1$/i',
  22. 'echo'=>'/\{=([^}]+)\}/i',
  23. 'eval'=>'/\{\?([\W\w\S\s]+)\?\}/i',
  24. 'include'=>'/{#include ([^}]+)}/i'
  25. ];
  26. protected static $parsers;
  27. private $template;
  28. private $name;
  29. private $path;
  30. public function __construct(string $name, string $template, bool $is_file = false){
  31. if(is_null(static::$parsers)){
  32. static::$parsers = [
  33. 'ignore'=>function(&$output, &$ignored){
  34. $output = preg_replace_callback(static::$regex['ignore'], function($matches) use(&$ignored){
  35. $ignored[] = $matches[1];
  36. return '{#ignored '.(count($ignored) - 1).'}';
  37. }, $output);
  38. },
  39. 'include'=>function(&$output, &$ignored = null){
  40. $output = preg_replace_callback(static::$regex['include'], function($matches) use(&$ignored){
  41. $path = static::$basedir.'/'.$matches[1];
  42. if(file_exists($path)){
  43. $output = file_get_contents($path);
  44. if(!is_null($ignored)){
  45. static::$parsers['ignore']($output, $ignored);
  46. }
  47. return $output;
  48. }
  49. return '';
  50. }, $output);
  51. },
  52. 'each'=>[
  53. function(&$output, $data){
  54. $output = preg_replace_callback(static::$regex['each'], function($matches) use($data){
  55. $output = '';
  56. if(isset($data[$matches[1]])){
  57. foreach($data[$matches[1]] as $item){
  58. $output = static::parse($matches[2], $item);
  59. }
  60. }
  61. return $output;
  62. }, $output);
  63. },
  64. function(&$output){
  65. $output = preg_replace_callback(static::$regex['each'], function($matches){
  66. $output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ";
  67. $output .= "foreach(\$data[".var_export($matches[1], true)."] as \$item): ";
  68. $output .= "\$parent[] = \$data; \$data = \$item; ?>";
  69. $output .= static::compile($matches[2]);
  70. $output .= "<?php \$data = array_pop(\$parent);";
  71. $output .= "endforeach;endif; ?>";
  72. return $output;
  73. }, $output);
  74. }
  75. ],
  76. 'existelse'=>[
  77. function(&$output, $data){
  78. $output = preg_replace_callback(static::$regex['existelse'], function($matches) use($data){
  79. if(isset($data[$matches[1]])){
  80. $output = static::parse($matches[2], $data);
  81. }else{
  82. $output = static::parse($matches[3], $data);
  83. }
  84. return $output;
  85. }, $output);
  86. },
  87. function(&$output){
  88. $output = preg_replace_callback(static::$regex['existelse'], function($matches){
  89. $output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
  90. $output .= static::compile($matches[2]);
  91. $output .= "<php else: ?>";
  92. $output .= static::compile($matches[3]);
  93. $output .= "<?php endif; ?>";
  94. return $output;
  95. }, $output);
  96. }
  97. ],
  98. 'exist'=>[
  99. function(&$output, $data){
  100. $output = preg_replace_callback(static::$regex['exist'], function($matches) use($data){
  101. if(isset($data[$matches[1]])){
  102. return static::parse($data[$matches[2]], $data);
  103. }
  104. return '';
  105. }, $output);
  106. },
  107. function(&$output){
  108. $output = preg_replace_callback(static::$regex['exist'], function($matches){
  109. $output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
  110. $output .= static::compile($matches[2]);
  111. $output .= "<?php endif; ?>";
  112. }, $output);
  113. }
  114. ],
  115. 'gettext'=>[
  116. function(&$output, $data){
  117. $output = preg_replace_callback(static::$regex['gettext'], function($matches) use($data){
  118. $args = array_map(function($item) use($data){
  119. if(preg_match(static::$regex['gettext_string'], $item)){
  120. return preg_replace(static::$regex['gettext_string'], '\2', $item);
  121. }else{
  122. return $data[$item] ?? '';
  123. }
  124. }, array_slice($matches, 1));
  125. return _(sprintf(...$args));
  126. }, $output);
  127. },
  128. function(&$output){
  129. $output = preg_replace_callback(static::$regex['gettext'], function($matches){
  130. if(count($matches) > 2){
  131. $output = "<?= sprintf(_({$matches[1]})";
  132. foreach(array_slice($matches, 2) as $item){
  133. if(preg_match(static::$regex['gettext_string'], $item)){
  134. $output .= ", $item";
  135. }else{
  136. $output .= ", (\$data['{$item}'] ?? '')";
  137. }
  138. }
  139. }else{
  140. $output = "<?= _({$matches[1]}";
  141. }
  142. return "{$output}); ?>";
  143. }, $output);
  144. }
  145. ],
  146. 'echo'=>[
  147. function(&$output){
  148. $output = preg_replace_callback(static::$regex['echo'], function($matches){
  149. return eval("return {$matches[1]};");
  150. }, $output);
  151. },
  152. function(&$output){
  153. $output = preg_replace_callback(static::$regex['echo'], function($matches){
  154. return "<?= {$matches[1]}; ?>";
  155. }, $output);
  156. }
  157. ],
  158. 'eval'=>[
  159. function(&$output){
  160. $output = preg_replace_callback(static::$regex['eval'], function($matches){
  161. ob_start();
  162. eval($matches[1]);
  163. $output = ob_get_contents();
  164. ob_end_clean();
  165. return $output;
  166. }, $output);
  167. },
  168. function(&$output){
  169. $output = preg_replace_callback(static::$regex['eval'], function($matches){
  170. return "<?php {$matches[1]}; ?>";
  171. }, $output);
  172. }
  173. ],
  174. 'match'=>[
  175. function(&$output, $data){
  176. $output = preg_replace_callback(static::$regex['match'], function($matches) use($data){
  177. return $data[$matches[1]] ?? '';
  178. }, $output);
  179. },
  180. function(&$output){
  181. $output = preg_replace_callback(static::$regex['match'], function($matches){
  182. return "<?=(\$data[".var_export($matches[1], true)."] ?? ''); ?>";
  183. }, $output);
  184. }
  185. ],
  186. 'parentmatch'=>[
  187. function(&$output, $data){
  188. throw new \Exception("Not supported in non-compiled templates");
  189. },
  190. function(&$output){
  191. $output = preg_replace_callback(static::$regex['parentmatch'], function($matches){
  192. return "<?=(\$parent[count(\$parent)-1][".var_export($matches[1], true)."] ?? ''); ?>";
  193. }, $output);
  194. }
  195. ],
  196. 'ignored'=>function(&$output, $ignored){
  197. $output = preg_replace_callback(static::$regex['ignored'], function($matches) use($ignored){
  198. return htmlentities($ignored[(int)$matches[1]] ?? '');
  199. }, $output);
  200. }
  201. ];
  202. }
  203. if(isset(static::$templates[$name])){
  204. throw new Exception("Template {$name} already exists");
  205. }
  206. if($is_file){
  207. $path = realpath($template);
  208. if(!file_exists($path)){
  209. throw new Exception("Template file {$template} doesn't exist");
  210. }
  211. $template = file_get_contents($path);
  212. }
  213. static::$parsers['include']($template);
  214. $this->template = $template;
  215. $this->name = $name;
  216. $this->path = static::$cachedir."/{$this->name}.".md5($this->template).'.php';
  217. static::$templates[$name] = $this;
  218. }
  219. public function run(array $data) : string{
  220. $data = EArray::from($data);
  221. if($this->fire('before', $data) === false){
  222. throw new Exception("Render on template {$this->name} cancelled. Before.");
  223. }
  224. if(!file_exists($this->path)){
  225. file_put_contents($this->path, static::compile($this->template));
  226. }
  227. try{
  228. $output = static::execute($this->path, $data);
  229. }catch(Exception $e){
  230. file_put_contents($this->path, static::compile($this->template));
  231. $output = static::execute($this->path, $data);
  232. }
  233. if($this->fire('after', $output) === false){
  234. throw new Exception("Render on template {$this->name} cancelled. After");
  235. }
  236. return (string)$output;
  237. }
  238. public static function from(string $name, array $data = []) : string{
  239. $template = static::$templates[$name] ?? null;
  240. if(is_null($template)){
  241. throw new Exception("Template {$name} does not exist");
  242. }
  243. return $template->run($data);
  244. }
  245. public static function compile(string $template) : string{
  246. $ignored = [];
  247. $output = $template;
  248. // Handle {#ignore code}
  249. static::$parsers['ignore']($output, $ignored);
  250. // Handle {#include path/to/file}
  251. static::$parsers['include']($output, $ignored);
  252. // Handle {#each name}{/each}
  253. static::$parsers['each'][1]($output);
  254. // Handle {#exist name}{#else}{/exist}
  255. static::$parsers['existelse'][1]($output);
  256. // Handle {#exist name}{/exist}
  257. static::$parsers['exist'][1]($output);
  258. // Handle {gettext}
  259. static::$parsers['gettext'][1]($output);
  260. // Handle {=expression}
  261. static::$parsers['echo'][1]($output);
  262. // Handle {? expression ?}
  263. static::$parsers['eval'][1]($output);
  264. // Handle {../name}
  265. static::$parsers['parentmatch'][1]($output);
  266. // Handle {name}
  267. static::$parsers['match'][1]($output);
  268. // Handle {#ignored i}
  269. static::$parsers['ignored']($output, $ignored);
  270. return $output;
  271. }
  272. public static function parse(string $template, $data) : string{
  273. $ignored = [];
  274. $output = $template;
  275. // Handle {#ignore code}
  276. static::$parsers['ignore']($output, $ignored);
  277. // Handle {#include path/to/file}
  278. static::$parsers['include']($output, $ignored);
  279. // Handle {#each name}{/each}
  280. static::$parsers['each'][0]($output, $data);
  281. // Handle {#exist name}{#else}{/exist}
  282. static::$parsers['existelse'][0]($output, $data);
  283. // Handle {#exist name}{/exist}
  284. static::$parsers['exist'][0]($output, $data);
  285. // Handle {gettext}
  286. static::$parsers['gettext'][0]($output, $data);
  287. // Handle {=expression}
  288. static::$parsers['echo'][0]($output);
  289. // Handle {? expression ?}
  290. static::$parsers['eval'][0]($output);
  291. // Handle {../name}
  292. static::$parsers['parentmatch'][1]($output, $data);
  293. // Handle {name}
  294. static::$parsers['match'][0]($output, $data);
  295. // Handle {#ignored i}
  296. static::$parsers['ignored']($output, $ignored);
  297. return $output;
  298. }
  299. public static function execute(string $path, $data) : string{
  300. ob_start();
  301. include($path);
  302. $output = ob_get_contents();
  303. ob_end_clean();
  304. return $output;
  305. }
  306. }
  307. ?>