mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
103 lines
2.5 KiB
PHP
103 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* BudgetFactory.php
|
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @noinspection MultipleReturnStatementsInspection */
|
|
declare(strict_types=1);
|
|
|
|
|
|
namespace FireflyIII\Factory;
|
|
|
|
use FireflyIII\Models\Budget;
|
|
use FireflyIII\User;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Class BudgetFactory.
|
|
*/
|
|
class BudgetFactory
|
|
{
|
|
/** @var User */
|
|
private $user;
|
|
|
|
|
|
/**
|
|
* @param int|null $budgetId
|
|
* @param null|string $budgetName
|
|
*
|
|
* @return Budget|null
|
|
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
|
|
*/
|
|
public function find(?int $budgetId, ?string $budgetName): ?Budget
|
|
{
|
|
$budgetId = (int)$budgetId;
|
|
$budgetName = (string)$budgetName;
|
|
|
|
if (0 === $budgetId && '' === $budgetName) {
|
|
return null;
|
|
}
|
|
|
|
// first by ID:
|
|
if ($budgetId > 0) {
|
|
/** @var Budget $budget */
|
|
$budget = $this->user->budgets()->find($budgetId);
|
|
if (null !== $budget) {
|
|
return $budget;
|
|
}
|
|
}
|
|
|
|
if ('' !== $budgetName) {
|
|
$budget = $this->findByName($budgetName);
|
|
if (null !== $budget) {
|
|
return $budget;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
*
|
|
* @return Budget|null
|
|
*/
|
|
public function findByName(string $name): ?Budget
|
|
{
|
|
/** @var Collection $collection */
|
|
$collection = $this->user->budgets()->get();
|
|
/** @var Budget $budget */
|
|
foreach ($collection as $budget) {
|
|
if ($budget->name === $name) {
|
|
return $budget;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
*/
|
|
public function setUser(User $user): void
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
}
|