blade.php 10.6 KB
Newer Older
1
<?php namespace Laravel; use FilesystemIterator as fIterator; use Closure;
2 3 4 5 6 7 8 9 10

class Blade {

	/**
	 * All of the compiler functions used by Blade.
	 *
	 * @var array
	 */
	protected static $compilers = array(
11
		'extensions',
12
		'layouts',
13
		'comments',
14
		'echos',
15 16 17
		'forelse',
		'empty',
		'endforelse',
18 19 20
		'structure_openings',
		'structure_closings',
		'else',
21 22
		'unless',
		'endunless',
23
		'includes',
24 25
		'render_each',
		'render',
26 27
		'yields',
		'yield_sections',
28 29 30 31 32
		'section_start',
		'section_end',
	);

	/**
33 34 35 36
	 * An array of user defined compilers.
	 *
	 * @var array
	 */
37
	protected static $extensions = array();
38 39

	/**
40 41 42 43 44 45 46 47 48 49 50 51 52
	 * Register the Blade view engine with Laravel.
	 *
	 * @return void
	 */
	public static function sharpen()
	{
		Event::listen(View::engine, function($view)
		{
			// The Blade view engine should only handle the rendering of views which
			// end with the Blade extension. If the given view does not, we will
			// return false so the View can be rendered as normal.
			if ( ! str_contains($view->path, BLADE_EXT))
			{
53
				return;
54 55
			}

hamuz committed
56
			$compiled = Blade::compiled($view->path);
57 58 59 60

			// If the view doesn't exist or has been modified since the last time it
			// was compiled, we will recompile the view into pure PHP from it's
			// Blade representation, writing it to cached storage.
61
			if ( ! file_exists($compiled) or Blade::expired($view->view, $view->path))
62
			{
63
				file_put_contents($compiled, Blade::compile($view));
64 65 66 67 68 69 70
			}

			$view->path = $compiled;

			// Once the view has been compiled, we can simply set the path to the
			// compiled view on the view instance and call the typical "get"
			// method on the view to evaluate the compiled PHP view.
71
			return ltrim($view->get());
72 73 74 75
		});
	}

	/**
Taylor Otwell committed
76
	 * Register a custom Blade compiler.
77 78
	 *
	 * <code>
Taylor Otwell committed
79 80 81
	 * 		Blade::extend(function($view)
	 *		{
	 * 			return str_replace('foo', 'bar', $view);
82 83 84
	 * 		});
	 * </code>
	 *
Taylor Otwell committed
85 86
	 * @param  Closure  $compiler
	 * @return void
87
	 */
Taylor Otwell committed
88
	public static function extend(Closure $compiler)
89
	{
90
		static::$extensions[] = $compiler;
91 92 93
	}

	/**
94 95 96 97 98 99 100 101
	 * Determine if a view is "expired" and needs to be re-compiled.
	 *
	 * @param  string  $view
	 * @param  string  $path
	 * @return bool
	 */
	public static function expired($view, $path)
	{
102
		return filemtime($path) > filemtime(static::compiled($path));
103 104 105
	}

	/**
106 107
	 * Compiles the specified file containing Blade pseudo-code into valid PHP.
	 *
108
	 * @param  string  $path
109 110
	 * @return string
	 */
111
	public static function compile($view)
112
	{
113
		return static::compile_string(file_get_contents($view->path), $view);
114 115 116 117 118 119
	}

	/**
	 * Compiles the given string containing Blade pseudo-code into valid PHP.
	 *
	 * @param  string  $value
120
	 * @param  View    $view
121 122
	 * @return string
	 */
123
	public static function compile_string($value, $view = null)
124 125 126 127 128
	{
		foreach (static::$compilers as $compiler)
		{
			$method = "compile_{$compiler}";

129
			$value = static::$method($value, $view);
130 131 132 133 134
		}

		return $value;
	}

135 136 137 138 139 140
	/**
	 * Rewrites Blade "@layout" expressions into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
141
	protected static function compile_layouts($value)
142
	{
143
		// If the Blade template is not using "layouts", we'll just return it
144
		// unchanged since there is nothing to do with layouts and we will
145
		// just let the other Blade compilers handle the rest.
146
		if ( ! starts_with($value, '@layout'))
147 148 149 150
		{
			return $value;
		}

151
		// First we'll split out the lines of the template so we can get the
152
		// layout from the top of the template. By convention it must be
153
		// located on the first line of the template contents.
154
		$lines = preg_split("/(\r?\n)/", $value);
155

156 157 158 159 160 161 162 163
		$pattern = static::matcher('layout');

		$lines[] = preg_replace($pattern, '$1@include$2', $lines[0]);

		// We will add a "render" statement to the end of the templates and
		// then slice off the "@layout" shortcut from the start so the
		// sections register before the parent template renders.
		return implode(CRLF, array_slice($lines, 1));
164 165 166
	}

	/**
167
	 * Extract a variable value out of a Blade expression.
168 169 170 171
	 *
	 * @param  string  $value
	 * @return string
	 */
172
	protected static function extract($value, $expression)
173
	{
174 175 176
		preg_match('/@layout(\s*\(.*\))(\s*)/', $value, $matches);

		return str_replace(array("('", "')"), '', $matches[1]);
177 178 179
	}

	/**
180 181 182 183 184 185 186
	 * Rewrites Blade comments into PHP comments.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_comments($value)
	{
187 188 189
		$value = preg_replace('/\{\{--(.+?)(--\}\})?\n/', "<?php // $1 ?>", $value);

		return preg_replace('/\{\{--((.|\s)*?)--\}\}/', "<?php /* $1 */ ?>\n", $value);
190 191 192
	}

	/**
193 194 195 196 197 198 199
	 * Rewrites Blade echo statements into PHP echo statements.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_echos($value)
	{
200
		return preg_replace('/\{\{(.+?)\}\}/', '<?php echo $1; ?>', $value);
201 202 203
	}

	/**
204 205 206 207 208 209 210
	 * Rewrites Blade "for else" statements into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_forelse($value)
	{
211
		preg_match_all('/(\s*)@forelse(\s*\(.*\))(\s*)/', $value, $matches);
212

213
		foreach ($matches[0] as $forelse)
214
		{
215 216
			preg_match('/\s*\(\s*(\S*)\s/', $forelse, $variable);

217
			// Once we have extracted the variable being looped against, we can add
Taylor Otwell committed
218
			// an if statement to the start of the loop that checks if the count
219
			// of the variable being looped against is greater than zero.
220 221 222 223 224 225 226
			$if = "<?php if (count({$variable[1]}) > 0): ?>";

			$search = '/(\s*)@forelse(\s*\(.*\))/';

			$replace = '$1'.$if.'<?php foreach$2: ?>';

			$blade = preg_replace($search, $replace, $forelse);
227

228
			// Finally, once we have the check prepended to the loop we'll replace
229 230
			// all instances of this forelse syntax in the view content of the
			// view being compiled to Blade syntax with real PHP syntax.
231
			$value = str_replace($forelse, $blade, $value);
232 233 234 235 236 237 238 239 240 241 242 243 244
		}

		return $value;
	}

	/**
	 * Rewrites Blade "empty" statements into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_empty($value)
	{
245
		return str_replace('@empty', '<?php endforeach; ?><?php else: ?>', $value);
246 247 248 249 250 251 252 253 254 255 256 257 258 259
	}

	/**
	 * Rewrites Blade "forelse" endings into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_endforelse($value)
	{
		return str_replace('@endforelse', '<?php endif; ?>', $value);
	}

	/**
260 261 262 263 264 265 266
	 * Rewrites Blade structure openings into PHP structure openings.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_structure_openings($value)
	{
267 268 269
		$pattern = '/(\s*)@(if|elseif|foreach|for|while)(\s*\(.*\))/';

		return preg_replace($pattern, '$1<?php $2$3: ?>', $value);
270 271 272 273 274 275 276 277 278 279
	}

	/**
	 * Rewrites Blade structure closings into PHP structure closings.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_structure_closings($value)
	{
280
		$pattern = '/(\s*)@(endif|endforeach|endfor|endwhile)(\s*)/';
281

282
		return preg_replace($pattern, '$1<?php $2; ?>$3', $value);
283 284 285 286 287 288 289 290 291 292
	}

	/**
	 * Rewrites Blade else statements into PHP else statements.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_else($value)
	{
293
		return preg_replace('/(\s*)@(else)(\s*)/', '$1<?php $2: ?>$3', $value);
294 295 296
	}

	/**
297 298 299 300 301 302 303
	 * Rewrites Blade "unless" statements into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_unless($value)
	{
304
		$pattern = '/(\s*)@unless(\s*\(.*\))/';
305

306
		return preg_replace($pattern, '$1<?php if( ! ($2)): ?>', $value);
307 308 309 310 311 312 313 314 315 316 317 318 319 320
	}

	/**
	 * Rewrites Blade "unless" endings into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_endunless($value)
	{
		return str_replace('@endunless', '<?php endif; ?>', $value);
	}

	/**
321 322 323 324 325 326 327 328 329
	 * Rewrites Blade @include statements into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_includes($value)
	{
		$pattern = static::matcher('include');

330
		return preg_replace($pattern, '$1<?php echo view$2->with(get_defined_vars())->render(); ?>', $value);
331 332 333
	}

	/**
334 335 336 337 338 339 340 341 342
	 * Rewrites Blade @render statements into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_render($value)
	{
		$pattern = static::matcher('render');

343
		return preg_replace($pattern, '$1<?php echo render$2; ?>', $value);
344 345 346 347 348 349 350 351 352 353 354 355
	}

	/**
	 * Rewrites Blade @render_each statements into valid PHP.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_render_each($value)
	{
		$pattern = static::matcher('render_each');

356
		return preg_replace($pattern, '$1<?php echo render_each$2; ?>', $value);
357 358 359
	}

	/**
360 361 362 363 364 365 366 367 368 369 370
	 * Rewrites Blade @yield statements into Section statements.
	 *
	 * The Blade @yield statement is a shortcut to the Section::yield method.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_yields($value)
	{
		$pattern = static::matcher('yield');

371
		return preg_replace($pattern, '$1<?php echo \\Laravel\\Section::yield$2; ?>', $value);
372 373 374 375 376 377 378 379 380
	}

	/**
	 * Rewrites Blade yield section statements into valid PHP.
	 *
	 * @return string
	 */
	protected static function compile_yield_sections($value)
	{
381 382 383
		$replace = '<?php echo \\Laravel\\Section::yield_section(); ?>';

		return str_replace('@yield_section', $replace, $value);
384 385 386
	}

	/**
387 388 389 390 391 392 393 394 395 396 397
	 * Rewrites Blade @section statements into Section statements.
	 *
	 * The Blade @section statement is a shortcut to the Section::start method.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_section_start($value)
	{
		$pattern = static::matcher('section');

398
		return preg_replace($pattern, '$1<?php \\Laravel\\Section::start$2; ?>', $value);
399 400 401 402 403 404 405 406 407 408 409 410
	}

	/**
	 * Rewrites Blade @endsection statements into Section statements.
	 *
	 * The Blade @endsection statement is a shortcut to the Section::stop method.
	 *
	 * @param  string  $value
	 * @return string
	 */
	protected static function compile_section_end($value)
	{
411
		return preg_replace('/@endsection/', '<?php \\Laravel\\Section::stop(); ?>', $value);
412 413 414
	}

	/**
415 416 417 418 419
	 * Execute user defined compilers.
	 *
	 * @param  string  $value
	 * @return string
	 */
420
	protected static function compile_extensions($value)
421
	{
422
		foreach (static::$extensions as $compiler)
423 424 425 426 427
		{
			$value = $compiler($value);
		}

		return $value;
428
	}	
429 430

	/**
431 432 433 434 435
	 * Get the regular expression for a generic Blade function.
	 *
	 * @param  string  $function
	 * @return string
	 */
436
	public static function matcher($function)
437
	{
438
		return '/(\s*)@'.$function.'(\s*\(.*\))/';
439 440
	}

441
	/**
442
	 * Get the fully qualified path for a compiled view.
443
	 *
444
	 * @param  string  $view
445
	 * @return string
446
	 */
447
	public static function compiled($path)
448
	{
449
		return path('storage').'views/'.md5($path);
450 451
	}

452
}