template.class.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. private static $regex = [
  11. 'match'=>'/\{([^#\/][^}\n]+?)\}/i',
  12. 'each'=>'/\{#each ([^}]*)\}([\S\s]*)\{\/each\}/i',
  13. 'exist'=>'/\{#exist ([^}]*)\}([\S\s]*)\{\/exist\}/i',
  14. 'existelse'=>'/\{#exist ([^}]*)\}([\S\s]*)\{#else\}([\S\s]*)\{\/exist\}/i',
  15. 'ignore'=>'/\{#ignore\}([\S\s]*)\{\/ignore\}/i',
  16. 'ignored'=>'/\{#ignored (\d+?)\}/i',
  17. 'gettext'=>"/{_([^,}]+)(?:, ?([^},]+))*\}/i",
  18. 'gettext_string'=>'/^([\'"])(.+)\1$/i'
  19. ];
  20. private $template;
  21. private $name;
  22. public function __construct(string $name, string $template, bool $is_file = false){
  23. if(isset(static::$templates[$name])){
  24. throw new Exception("Template {$name} already exists");
  25. }
  26. if($is_file){
  27. $path = realpath($template);
  28. if(!file_exists($path)){
  29. throw new Exception("Template file {$template} doesn't exist");
  30. }
  31. $template = file_get_contents($path);
  32. }
  33. $this->template = $template;
  34. $this->name = $name;
  35. static::$templates[$name] = $this;
  36. }
  37. public function run(array $data) : string{
  38. $data = EArray::from($data);
  39. if($this->fire('before', $data) === false){
  40. throw new Exception("Render on template {$this->name} cancelled. Before.");
  41. }
  42. $output = static::parse($this->template, $data);
  43. if($this->fire('after', $output) === false){
  44. throw new Exception("Render on template {$this->name} cancelled. After");
  45. }
  46. return (string)$output;
  47. }
  48. public static function from(string $name, array $data = []) : string{
  49. $template = static::$templates[$name] ?? null;
  50. if(is_null($template)){
  51. throw new Exception("Template {$name} does not exist");
  52. }
  53. return $template->run($data);
  54. }
  55. public static function parse(string $template, $data){
  56. $ignored = [];
  57. // Handle {#ignore code}
  58. $output = preg_replace_callback(static::$regex['ignore'], function($matches) use(&$ignored){
  59. $ignored[] = $matches[1];
  60. return '{#ignored '.(count($ignored) - 1).'}';
  61. }, $template);
  62. // Handle {#each name}{/each}
  63. $output = preg_replace_callback(static::$regex['each'], function($matches) use($data){
  64. $output = '';
  65. if(isset($data[$matches[1]])){
  66. foreach($data[$matches[1]] as $item){
  67. $output = static::parse($matches[2], $item);
  68. }
  69. }
  70. return $output;
  71. }, $output);
  72. // Handle {#exist name}{#else}{/exist}
  73. $output = preg_replace_callback(static::$regex['existelse'], function($matches) use($data){
  74. if(isset($data[$matches[1]])){
  75. $output = static::parse($matches[2], $data);
  76. }else{
  77. $output = static::parse($matches[3], $data);
  78. }
  79. return $output;
  80. }, $output);
  81. // Handle {#exist name}{/exist}
  82. $output = preg_replace_callback(static::$regex['exist'], function($matches) use($data){
  83. if(isset($data[$matches[1]])){
  84. return static::parse($data[$matches[2]], $data);
  85. }
  86. return '';
  87. }, $output);
  88. // Handle {gettext}
  89. $output = preg_replace_callback(static::$regex['gettext'], function($matches) use($data){
  90. $args = array_map(function($item) use($data){
  91. if(preg_match(static::$regex['gettext_string'], $item)){
  92. return preg_replace(static::$regex['gettext_string'], '\2', $item);
  93. }else{
  94. return $data[$item] ?? '';
  95. }
  96. }, array_slice($matches, 1));
  97. return _(sprintf(...$args));
  98. }, $output);
  99. // Handle {name}
  100. $output = preg_replace_callback(static::$regex['match'], function($matches) use($data){
  101. return $data[$matches[1]] ?? '';
  102. }, $output);
  103. return preg_replace_callback(static::$regex['ignored'], function($matches) use(&$ignored){
  104. return $ignored[(int)$matches[1]] ?? '';
  105. }, $output);
  106. }
  107. }
  108. ?>