mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
61 lines
1.2 KiB
PHP
61 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
use Closure;
|
|
use FireflyIII\Support\Domain;
|
|
|
|
/**
|
|
* Class Binder
|
|
*
|
|
* @package FireflyIII\Http\Middleware
|
|
*/
|
|
class Binder
|
|
{
|
|
protected $binders = [];
|
|
|
|
/**
|
|
* Binder constructor.
|
|
*/
|
|
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)
|
|
{
|
|
$class = $this->binders[$key];
|
|
|
|
return $class::routeBinder($value, $route);
|
|
}
|
|
}
|