1
0

template.class.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. private static $regex = [
  12. 'match'=>'/\{([^#\/][^}\n]+?)\}/i',
  13. 'each'=>'/\{#each ([^}]*)\}([\S\s]*)\{\/each\}/i',
  14. 'exist'=>'/\{#exist ([^}]*)\}([\S\s]*)\{\/exist\}/i',
  15. 'existelse'=>'/\{#exist ([^}]*)\}([\S\s]*)\{#else\}([\S\s]*)\{\/exist\}/i',
  16. 'ignore'=>'/\{#ignore\}([\S\s]*)\{\/ignore\}/i',
  17. 'ignored'=>'/\{#ignored (\d+?)\}/i',
  18. 'gettext'=>"/{_([^,}]+)(?:, ?([^},]+))*\}/i",
  19. 'gettext_string'=>'/^([\'"])(.+)\1$/i',
  20. 'echo'=>'/\{=([^}]+)\}/i',
  21. 'eval'=>'/\{\?([\W\w\S\s]+)\?\}/i'
  22. ];
  23. private $template;
  24. private $name;
  25. private $path;
  26. public function __construct(string $name, string $template, bool $is_file = false){
  27. if(isset(static::$templates[$name])){
  28. throw new Exception("Template {$name} already exists");
  29. }
  30. if($is_file){
  31. $path = realpath($template);
  32. if(!file_exists($path)){
  33. throw new Exception("Template file {$template} doesn't exist");
  34. }
  35. $template = file_get_contents($path);
  36. }
  37. $this->template = $template;
  38. $this->name = $name;
  39. $this->path = static::$cachedir."/{$this->name}.".md5($this->template).'.php';
  40. static::$templates[$name] = $this;
  41. }
  42. public function run(array $data) : string{
  43. $data = EArray::from($data);
  44. if($this->fire('before', $data) === false){
  45. throw new Exception("Render on template {$this->name} cancelled. Before.");
  46. }
  47. if(!file_exists($this->path)){
  48. file_put_contents($this->path, static::compile($this->template));
  49. }
  50. $output = static::execute($this->path, $data);
  51. if($this->fire('after', $output) === false){
  52. throw new Exception("Render on template {$this->name} cancelled. After");
  53. }
  54. return (string)$output;
  55. }
  56. public static function from(string $name, array $data = []) : string{
  57. $template = static::$templates[$name] ?? null;
  58. if(is_null($template)){
  59. throw new Exception("Template {$name} does not exist");
  60. }
  61. return $template->run($data);
  62. }
  63. public static function compile(string $template) : string{
  64. $ignored = [];
  65. // Handle {#ignore code}
  66. $output = preg_replace_callback(static::$regex['ignore'], function($matches) use(&$ignored){
  67. $ignored[] = $matches[1];
  68. return '{#ignored '.(count($ignored) - 1).'}';
  69. }, $template);
  70. // Handle {#each name}{/each}
  71. $output = preg_replace_callback(static::$regex['each'], function($matches){
  72. $output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ";
  73. $output .= "foreach(\$data[".var_export($matches[1], true)."] as \$item): ";
  74. $output .= "\$parent = \$data; ?>";
  75. $output .= static::compile($matches[2]);
  76. $output .= "<?php \$data = \$parent;";
  77. $output .= "endforeach;endif; ?>";
  78. return $output;
  79. }, $output);
  80. // Handle {#exist name}{#else}{/exist}
  81. $output = preg_replace_callback(static::$regex['existelse'], function($matches){
  82. $output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
  83. $output .= static::compile($matches[2]);
  84. $output .= "<php else: ?>";
  85. $output .= static::compile($matches[3]);
  86. $output .= "<?php endif; ?>";
  87. return $output;
  88. }, $output);
  89. // Handle {#exist name}{/exist}
  90. $output = preg_replace_callback(static::$regex['exist'], function($matches){
  91. $output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
  92. $output .= static::compile($matches[2]);
  93. $output .= "<?php endif; ?>";
  94. }, $output);
  95. // Handle {gettext}
  96. $output = preg_replace_callback(static::$regex['gettext'], function($matches){
  97. $output = "<?= _(sprintf(";
  98. foreach(array_slice($matches, 1) as $item){
  99. if(preg_match(static::$regex['gettext_string'], $item)){
  100. $output .= $item;
  101. }else{
  102. $output .= "(\$data['{$item}'] ?? '')";
  103. }
  104. }
  105. return "{$output})); ?>";
  106. }, $output);
  107. // Handle {=expression}
  108. $output = preg_replace_callback(static::$regex['echo'], function($matches){
  109. return "<?= {$matches[1]}; ?>";
  110. }, $output);
  111. // Handle {? expression ?}
  112. $output = preg_replace_callback(static::$regex['eval'], function($matches){
  113. return "<?php {$matches[1]}; ?>";
  114. }, $output);
  115. // Handle {name}
  116. $output = preg_replace_callback(static::$regex['match'], function($matches){
  117. return "<?=(\$data[".var_export($matches[1], true)."] ?? ''); ?>";
  118. }, $output);
  119. // Handle {#ignored i}
  120. return preg_replace_callback(static::$regex['ignored'], function($matches) use(&$ignored){
  121. return htmlentities($ignored[(int)$matches[1]] ?? '');
  122. }, $output);
  123. }
  124. public static function parse(string $template, $data) : string{
  125. $ignored = [];
  126. // Handle {#ignore code}
  127. $output = preg_replace_callback(static::$regex['ignore'], function($matches) use(&$ignored){
  128. $ignored[] = $matches[1];
  129. return '{#ignored '.(count($ignored) - 1).'}';
  130. }, $template);
  131. // Handle {#each name}{/each}
  132. $output = preg_replace_callback(static::$regex['each'], function($matches) use($data){
  133. $output = '';
  134. if(isset($data[$matches[1]])){
  135. foreach($data[$matches[1]] as $item){
  136. $output = static::parse($matches[2], $item);
  137. }
  138. }
  139. return $output;
  140. }, $output);
  141. // Handle {#exist name}{#else}{/exist}
  142. $output = preg_replace_callback(static::$regex['existelse'], function($matches) use($data){
  143. if(isset($data[$matches[1]])){
  144. $output = static::parse($matches[2], $data);
  145. }else{
  146. $output = static::parse($matches[3], $data);
  147. }
  148. return $output;
  149. }, $output);
  150. // Handle {#exist name}{/exist}
  151. $output = preg_replace_callback(static::$regex['exist'], function($matches) use($data){
  152. if(isset($data[$matches[1]])){
  153. return static::parse($data[$matches[2]], $data);
  154. }
  155. return '';
  156. }, $output);
  157. // Handle {gettext}
  158. $output = preg_replace_callback(static::$regex['gettext'], function($matches) use($data){
  159. $args = array_map(function($item) use($data){
  160. if(preg_match(static::$regex['gettext_string'], $item)){
  161. return preg_replace(static::$regex['gettext_string'], '\2', $item);
  162. }else{
  163. return $data[$item] ?? '';
  164. }
  165. }, array_slice($matches, 1));
  166. return _(sprintf(...$args));
  167. }, $output);
  168. // Handle {=expression}
  169. $output = preg_replace_callback(static::$regex['echo'], function($matches) use($data){
  170. return eval("return {$matches[1]};");
  171. }, $output);
  172. // Handle {? expression ?}
  173. $output = preg_replace_callback(static::$regex['eval'], function($matches) use($data){
  174. ob_start();
  175. eval($matches[1]);
  176. $output = ob_get_contents();
  177. ob_end_clean();
  178. return $output;
  179. }, $output);
  180. // Handle {name}
  181. $output = preg_replace_callback(static::$regex['match'], function($matches) use($data){
  182. return $data[$matches[1]] ?? '';
  183. }, $output);
  184. // Handle {#ignored i}
  185. return preg_replace_callback(static::$regex['ignored'], function($matches) use(&$ignored){
  186. return $ignored[(int)$matches[1]] ?? '';
  187. }, $output);
  188. }
  189. public static function execute(string $path, $data) : string{
  190. ob_start();
  191. include($path);
  192. $output = ob_get_contents();
  193. ob_end_clean();
  194. return $output;
  195. }
  196. }
  197. ?>