mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 04:59:25 -06:00
57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* BudgetList.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\Support\Binder;
|
|
|
|
use FireflyIII\Models\Budget;
|
|
use Illuminate\Support\Collection;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
|
|
/**
|
|
* Class BudgetList
|
|
*
|
|
* @package FireflyIII\Support\Binder
|
|
*/
|
|
class BudgetList implements BinderInterface
|
|
{
|
|
|
|
/**
|
|
* @param $value
|
|
* @param $route
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public static function routeBinder($value, $route): Collection
|
|
{
|
|
if (auth()->check()) {
|
|
$ids = explode(',', $value);
|
|
/** @var \Illuminate\Support\Collection $object */
|
|
$object = Budget::where('active', 1)
|
|
->whereIn('id', $ids)
|
|
->where('user_id', auth()->user()->id)
|
|
->get();
|
|
|
|
// add empty budget if applicable.
|
|
if (in_array('0', $ids)) {
|
|
$object->push(new Budget);
|
|
}
|
|
|
|
if ($object->count() > 0) {
|
|
return $object;
|
|
}
|
|
}
|
|
throw new NotFoundHttpException;
|
|
}
|
|
}
|