template.class.php 12 KB

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