mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
72 lines
1.5 KiB
PHP
72 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Binder.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
use Closure;
|
|
use FireflyIII\Support\Domain;
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
/**
|
|
* 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 $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);
|
|
}
|
|
|
|
/**
|
|
* @param $key
|
|
* @param $value
|
|
* @param $route
|
|
*
|
|
* @return mixed
|
|
*/
|
|
private function performBinding($key, $value, $route)
|
|
{
|
|
$class = $this->binders[$key];
|
|
|
|
return $class::routeBinder($value, $route);
|
|
}
|
|
}
|