firefly-iii/app/Http/Middleware/Binder.php

55 lines
1.1 KiB
PHP
Raw Normal View History

2016-01-09 08:39:02 -06:00
<?php
namespace FireflyIII\Http\Middleware;
use Closure;
use FireflyIII\Support\Domain;
class Binder
{
protected $binders = [];
2016-01-09 08:53:11 -06:00
/**
* Binder constructor.
*/
2016-01-09 08:39:02 -06:00
public function __construct()
{
$this->binders = Domain::getBindables();
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
*
* @return mixed
*/
public function handle($request, Closure $next)
{
foreach ($request->route()->parameters() as $key => $value) {
if (isset($this->binders[$key])) {
$boundObject = $this->performBinding($key, $value, $request->route());
$request->route()->setParameter($key, $boundObject);
}
}
return $next($request);
//return $next($request);
}
/**
* @param $key
* @param $value
* @param $route
*
* @return mixed
*/
private function performBinding($key, $value, $route)
{
2016-01-09 09:10:12 -06:00
$class = $this->binders[$key];
return $class::routeBinder($value, $route);
2016-01-09 08:39:02 -06:00
}
}