firefly-iii/app/Transformers/BudgetTransformer.php

119 lines
3.9 KiB
PHP
Raw Normal View History

<?php
/**
* BudgetTransformer.php
2020-02-16 06:57:18 -06:00
* Copyright (c) 2019 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Transformers;
use FireflyIII\Models\AutoBudget;
use FireflyIII\Models\Budget;
2018-12-12 13:30:25 -06:00
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
2019-09-23 09:42:21 -05:00
use FireflyIII\Repositories\Budget\OperationsRepositoryInterface;
2018-02-17 03:47:06 -06:00
use Illuminate\Support\Collection;
use Log;
/**
* Class BudgetTransformer
*/
2018-12-16 06:55:19 -06:00
class BudgetTransformer extends AbstractTransformer
{
2019-09-23 09:42:21 -05:00
/** @var OperationsRepositoryInterface */
private $opsRepository;
/** @var BudgetRepositoryInterface */
private $repository;
/**
2018-02-17 03:47:06 -06:00
* BudgetTransformer constructor.
*
* @codeCoverageIgnore
*/
2018-12-16 06:55:19 -06:00
public function __construct()
{
2019-09-23 09:42:21 -05:00
$this->opsRepository = app(OperationsRepositoryInterface::class);
$this->repository = app(BudgetRepositoryInterface::class);
if ('testing' === config('app.env')) {
2019-06-07 11:20:15 -05:00
Log::warning(sprintf('%s should not be instantiated in the TEST environment!', get_class($this)));
}
}
2018-02-17 03:47:06 -06:00
/**
* Transform a budget.
*
* @param Budget $budget
*
* @return array
*/
public function transform(Budget $budget): array
{
2019-09-23 09:42:21 -05:00
$this->opsRepository->setUser($budget->user);
$start = $this->parameters->get('start');
$end = $this->parameters->get('end');
$autoBudget = $this->repository->getAutoBudget($budget);
$spent = [];
2018-12-12 13:30:25 -06:00
if (null !== $start && null !== $end) {
2019-09-23 09:42:21 -05:00
$spent = array_values($this->opsRepository->sumExpenses($start, $end, null, new Collection([$budget])));
2018-12-12 13:30:25 -06:00
}
$abCurrencyId = null;
$abCurrencyCode = null;
$abType = null;
$abAmount = null;
$abPeriod = null;
$types = [
AutoBudget::AUTO_BUDGET_RESET => 'reset',
AutoBudget::AUTO_BUDGET_ROLLOVER => 'rollover',
];
if (null !== $autoBudget) {
$abCurrencyId = $autoBudget->transactionCurrency->id;
$abCurrencyCode = $autoBudget->transactionCurrency->code;
$abType = $types[$autoBudget->auto_budget_type];
$abAmount = $autoBudget->amount;
$abPeriod = $autoBudget->period;
}
$data = [
'id' => (int)$budget->id,
'created_at' => $budget->created_at->toAtomString(),
'updated_at' => $budget->updated_at->toAtomString(),
'active' => $budget->active,
'name' => $budget->name,
2020-03-14 01:30:55 -05:00
'auto_budget_type' => $abType,
'auto_budget_period' => $abPeriod,
'auto_budget_currency_id' => $abCurrencyId,
'auto_budget_currency_code' => $abCurrencyCode,
'auto_budget_amount' => $abAmount,
'spent' => $spent,
'links' => [
[
'rel' => 'self',
'uri' => '/budgets/' . $budget->id,
],
],
];
return $data;
}
2018-03-05 12:35:58 -06:00
}