. */ declare(strict_types=1); namespace FireflyIII\Transformers; use FireflyIII\Models\AvailableBudget; use FireflyIII\Repositories\Budget\BudgetRepositoryInterface; use FireflyIII\Repositories\Budget\NoBudgetRepositoryInterface; use FireflyIII\Repositories\Budget\OperationsRepositoryInterface; /** * Class AvailableBudgetTransformer */ class AvailableBudgetTransformer extends AbstractTransformer { private NoBudgetRepositoryInterface $noBudgetRepository; private OperationsRepositoryInterface $opsRepository; private BudgetRepositoryInterface $repository; /** * CurrencyTransformer constructor. * */ public function __construct() { $this->repository = app(BudgetRepositoryInterface::class); $this->opsRepository = app(OperationsRepositoryInterface::class); $this->noBudgetRepository = app(NoBudgetRepositoryInterface::class); } /** * Transform the note. * * @param AvailableBudget $availableBudget * * @return array */ public function transform(AvailableBudget $availableBudget): array { $this->repository->setUser($availableBudget->user); $currency = $availableBudget->transactionCurrency; $data = [ 'id' => (string)$availableBudget->id, 'created_at' => $availableBudget->created_at->toAtomString(), 'updated_at' => $availableBudget->updated_at->toAtomString(), 'currency_id' => (string)$currency->id, 'currency_code' => $currency->code, 'currency_symbol' => $currency->symbol, 'currency_decimal_places' => (int)$currency->decimal_places, 'amount' => app('steam')->bcround($availableBudget->amount, $currency->decimal_places), 'start' => $availableBudget->start_date->toAtomString(), 'end' => $availableBudget->end_date->endOfDay()->toAtomString(), 'spent_in_budgets' => [], 'spent_no_budget' => [], 'links' => [ [ 'rel' => 'self', 'uri' => '/available_budgets/' . $availableBudget->id, ], ], ]; $start = $this->parameters->get('start'); $end = $this->parameters->get('end'); if (null !== $start && null !== $end) { $data['spent_in_budgets'] = $this->getSpentInBudgets(); $data['spent_no_budget'] = $this->spentOutsideBudgets(); } return $data; } /** * @return array */ private function getSpentInBudgets(): array { $allActive = $this->repository->getActiveBudgets(); $sums = $this->opsRepository->sumExpenses($this->parameters->get('start'), $this->parameters->get('end'), null, $allActive); return array_values($sums); } /** * @return array */ private function spentOutsideBudgets(): array { $sums = $this->noBudgetRepository->sumExpenses($this->parameters->get('start'), $this->parameters->get('end')); return array_values($sums); } }