blade.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. <?php namespace Laravel; use FilesystemIterator as fIterator; use Closure;
  2. class Blade {
  3. /**
  4. * All of the compiler functions used by Blade.
  5. *
  6. * @var array
  7. */
  8. protected static $compilers = array(
  9. 'extensions',
  10. 'layouts',
  11. 'comments',
  12. 'echos',
  13. 'forelse',
  14. 'empty',
  15. 'endforelse',
  16. 'structure_openings',
  17. 'structure_closings',
  18. 'else',
  19. 'unless',
  20. 'endunless',
  21. 'includes',
  22. 'render_each',
  23. 'render',
  24. 'yields',
  25. 'yield_sections',
  26. 'section_start',
  27. 'section_end',
  28. );
  29. /**
  30. * An array of user defined compilers.
  31. *
  32. * @var array
  33. */
  34. protected static $extensions = array();
  35. /**
  36. * Register the Blade view engine with Laravel.
  37. *
  38. * @return void
  39. */
  40. public static function sharpen()
  41. {
  42. Event::listen(View::engine, function($view)
  43. {
  44. // The Blade view engine should only handle the rendering of views which
  45. // end with the Blade extension. If the given view does not, we will
  46. // return false so the View can be rendered as normal.
  47. if ( ! str_contains($view->path, BLADE_EXT))
  48. {
  49. return;
  50. }
  51. $compiled = Blade::compiled($view->path);
  52. // If the view doesn't exist or has been modified since the last time it
  53. // was compiled, we will recompile the view into pure PHP from it's
  54. // Blade representation, writing it to cached storage.
  55. if ( ! file_exists($compiled) or Blade::expired($view->view, $view->path))
  56. {
  57. file_put_contents($compiled, Blade::compile($view));
  58. }
  59. $view->path = $compiled;
  60. // Once the view has been compiled, we can simply set the path to the
  61. // compiled view on the view instance and call the typical "get"
  62. // method on the view to evaluate the compiled PHP view.
  63. return $view->get();
  64. });
  65. }
  66. /**
  67. * Register a custom Blade compiler.
  68. *
  69. * <code>
  70. * Blade::extend(function($view)
  71. * {
  72. * return str_replace('foo', 'bar', $view);
  73. * });
  74. * </code>
  75. *
  76. * @param Closure $compiler
  77. * @return void
  78. */
  79. public static function extend(Closure $compiler)
  80. {
  81. static::$extensions[] = $compiler;
  82. }
  83. /**
  84. * Determine if a view is "expired" and needs to be re-compiled.
  85. *
  86. * @param string $view
  87. * @param string $path
  88. * @param string $compiled
  89. * @return bool
  90. */
  91. public static function expired($view, $path)
  92. {
  93. return filemtime($path) > filemtime(static::compiled($path));
  94. }
  95. /**
  96. * Compiles the specified file containing Blade pseudo-code into valid PHP.
  97. *
  98. * @param string $path
  99. * @return string
  100. */
  101. public static function compile($view)
  102. {
  103. return static::compile_string(file_get_contents($view->path), $view);
  104. }
  105. /**
  106. * Compiles the given string containing Blade pseudo-code into valid PHP.
  107. *
  108. * @param string $value
  109. * @param View $view
  110. * @return string
  111. */
  112. public static function compile_string($value, $view = null)
  113. {
  114. foreach (static::$compilers as $compiler)
  115. {
  116. $method = "compile_{$compiler}";
  117. $value = static::$method($value, $view);
  118. }
  119. return $value;
  120. }
  121. /**
  122. * Rewrites Blade "@layout" expressions into valid PHP.
  123. *
  124. * @param string $value
  125. * @return string
  126. */
  127. protected static function compile_layouts($value)
  128. {
  129. // If the Blade template is not using "layouts", we'll just return it
  130. // unchanged since there is nothing to do with layouts and we will
  131. // just let the other Blade compilers handle the rest.
  132. if ( ! starts_with($value, '@layout'))
  133. {
  134. return $value;
  135. }
  136. // First we'll get the layout from the top of the template and remove it.
  137. // Then it is replaced with @include and attached to the end.
  138. // By convention it must be located on the first line of the template contents.
  139. preg_replace_callback(
  140. '/^@layout(\s*?\(.+?\))(\r?\n)?/',
  141. function($matches) use (&$value)
  142. {
  143. $value = substr( $value, strlen( $matches[0] ) ).CRLF.'@include'.$matches[1];
  144. },
  145. $value
  146. );
  147. return $value;
  148. }
  149. /**
  150. * Extract a variable value out of a Blade expression.
  151. *
  152. * @param string $value
  153. * @return string
  154. */
  155. protected static function extract($value, $expression)
  156. {
  157. if ( preg_match("/@layout\s*?\(\s*?'(.+?)'\s*?\)/", $value, $matches))
  158. {
  159. return trim( $matches[1] );
  160. }
  161. }
  162. /**
  163. * Rewrites Blade comments into PHP comments.
  164. *
  165. * @param string $value
  166. * @return string
  167. */
  168. protected static function compile_comments($value)
  169. {
  170. $value = preg_replace('/\{\{--(.+?)(--\}\})?\n/', "<?php // $1 ?>", $value);
  171. return preg_replace('/\{\{--((.|\s)*?)--\}\}/', "<?php /* $1 */ ?>\n", $value);
  172. }
  173. /**
  174. * Rewrites Blade echo statements into PHP echo statements.
  175. *
  176. * @param string $value
  177. * @return string
  178. */
  179. protected static function compile_echos($value)
  180. {
  181. return preg_replace('/\{\{(.+?)\}\}/', '<?php echo $1; ?>', $value);
  182. }
  183. /**
  184. * Rewrites Blade "for else" statements into valid PHP.
  185. *
  186. * @param string $value
  187. * @return string
  188. */
  189. protected static function compile_forelse($value)
  190. {
  191. preg_match_all('/@forelse\s*?\(\s*?\$(.+?)\s*?as\s*?\$(.+?)\s*?\)/', $value, $matches, PREG_SET_ORDER );
  192. if ( count($matches) < 1 ) return $value;
  193. foreach ($matches as $forelse)
  194. {
  195. // Once we have extracted the variable being looped against, we can add
  196. // an if statement to the start of the loop that checks if the count
  197. // of the variable being looped against is greater than zero.
  198. $replace = '<?php if (count($'.$forelse[1].') > 0): foreach ($'.$forelse[1].' as $'.$forelse[2].'): ?>';
  199. // Finally, once we have the check prepended to the loop we'll replace
  200. // all instances of this forelse syntax in the view content of the
  201. // view being compiled to Blade syntax with real PHP syntax.
  202. $value = str_replace($forelse[0], $replace, $value);
  203. }
  204. return $value;
  205. }
  206. /**
  207. * Rewrites Blade "empty" statements into valid PHP.
  208. *
  209. * @param string $value
  210. * @return string
  211. */
  212. protected static function compile_empty($value)
  213. {
  214. return str_replace('@empty', '<?php endforeach; else: ?>', $value);
  215. }
  216. /**
  217. * Rewrites Blade "forelse" endings into valid PHP.
  218. *
  219. * @param string $value
  220. * @return string
  221. */
  222. protected static function compile_endforelse($value)
  223. {
  224. return str_replace('@endforelse', '<?php endif; ?>', $value);
  225. }
  226. /**
  227. * Rewrites Blade structure openings into PHP structure openings.
  228. *
  229. * @param string $value
  230. * @return string
  231. */
  232. protected static function compile_structure_openings($value)
  233. {
  234. $pattern = '/@(if|elseif|foreach|for|while)\s*?(\(.+?\))/';
  235. return preg_replace($pattern, '<?php $1$2: ?>', $value);
  236. }
  237. /**
  238. * Rewrites Blade structure closings into PHP structure closings.
  239. *
  240. * @param string $value
  241. * @return string
  242. */
  243. protected static function compile_structure_closings($value)
  244. {
  245. $pattern = '/@(endif|endforeach|endfor|endwhile|break)/';
  246. return preg_replace($pattern, '<?php $1; ?>', $value);
  247. }
  248. /**
  249. * Rewrites Blade else statements into PHP else statements.
  250. *
  251. * @param string $value
  252. * @return string
  253. */
  254. protected static function compile_else($value)
  255. {
  256. return str_replace( '@else', '<?php else: ?>', $value);
  257. }
  258. /**
  259. * Rewrites Blade "unless" statements into valid PHP.
  260. *
  261. * @param string $value
  262. * @return string
  263. */
  264. protected static function compile_unless($value)
  265. {
  266. $pattern = static::matcher('unless');
  267. return preg_replace($pattern, '<?php if( ! ($1)): ?>', $value);
  268. }
  269. /**
  270. * Rewrites Blade "unless" endings into valid PHP.
  271. *
  272. * @param string $value
  273. * @return string
  274. */
  275. protected static function compile_endunless($value)
  276. {
  277. return str_replace('@endunless', '<?php endif; ?>', $value);
  278. }
  279. /**
  280. * Rewrites Blade @include statements into valid PHP.
  281. *
  282. * @param string $value
  283. * @return string
  284. */
  285. protected static function compile_includes($value)
  286. {
  287. $pattern = static::matcher('include');
  288. return preg_replace($pattern, '<?php echo view$1->with(get_defined_vars())->render(); ?>', $value);
  289. }
  290. /**
  291. * Rewrites Blade @render statements into valid PHP.
  292. *
  293. * @param string $value
  294. * @return string
  295. */
  296. protected static function compile_render($value)
  297. {
  298. $pattern = static::matcher('render');
  299. return preg_replace($pattern, '<?php echo render$1; ?>', $value);
  300. }
  301. /**
  302. * Rewrites Blade @render_each statements into valid PHP.
  303. *
  304. * @param string $value
  305. * @return string
  306. */
  307. protected static function compile_render_each($value)
  308. {
  309. $pattern = static::matcher('render_each');
  310. return preg_replace($pattern, '<?php echo render_each$1; ?>', $value);
  311. }
  312. /**
  313. * Rewrites Blade @yield statements into Section statements.
  314. *
  315. * The Blade @yield statement is a shortcut to the Section::yield method.
  316. *
  317. * @param string $value
  318. * @return string
  319. */
  320. protected static function compile_yields($value)
  321. {
  322. $pattern = static::matcher('yield');
  323. return preg_replace($pattern, '<?php echo \\Laravel\\Section::yield$1; ?>', $value);
  324. }
  325. /**
  326. * Rewrites Blade yield section statements into valid PHP.
  327. *
  328. * @return string
  329. */
  330. protected static function compile_yield_sections($value)
  331. {
  332. return str_replace('@yield_section', '<?php echo \\Laravel\\Section::yield_section(); ?>', $value);
  333. }
  334. /**
  335. * Rewrites Blade @section statements into Section statements.
  336. *
  337. * The Blade @section statement is a shortcut to the Section::start method.
  338. *
  339. * @param string $value
  340. * @return string
  341. */
  342. protected static function compile_section_start($value)
  343. {
  344. $pattern = static::matcher('section');
  345. return preg_replace($pattern, '<?php \\Laravel\\Section::start$1; ?>', $value);
  346. }
  347. /**
  348. * Rewrites Blade @endsection statements into Section statements.
  349. *
  350. * The Blade @endsection statement is a shortcut to the Section::stop method.
  351. *
  352. * @param string $value
  353. * @return string
  354. */
  355. protected static function compile_section_end($value)
  356. {
  357. return str_replace('@endsection', '<?php \\Laravel\\Section::stop(); ?>', $value);
  358. }
  359. /**
  360. * Execute user defined compilers.
  361. *
  362. * @param string $value
  363. * @return string
  364. */
  365. protected static function compile_extensions($value)
  366. {
  367. foreach (static::$extensions as $compiler)
  368. {
  369. $value = $compiler($value);
  370. }
  371. return $value;
  372. }
  373. /**
  374. * Get the regular expression for a generic Blade function.
  375. *
  376. * @param string $function
  377. * @return string
  378. */
  379. public static function matcher($function)
  380. {
  381. return '/@'.$function.'\s*?(\(.+?\))/';
  382. }
  383. /**
  384. * Get the fully qualified path for a compiled view.
  385. *
  386. * @param string $view
  387. * @return string
  388. */
  389. public static function compiled($path)
  390. {
  391. return path('storage').'views/'.md5($path);
  392. }
  393. }