Files
firefly-iii/app/Repositories/UserGroups/Budget/AvailableBudgetRepository.php

77 lines
3.4 KiB
PHP
Raw Normal View History

2023-08-06 07:04:09 +02:00
<?php
/*
* AvailableBudgetRepository.php
* Copyright (c) 2023 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/>.
*/
2023-09-20 06:36:43 +02:00
declare(strict_types=1);
namespace FireflyIII\Repositories\UserGroups\Budget;
2023-08-06 07:04:09 +02:00
use Carbon\Carbon;
use FireflyIII\Models\AvailableBudget;
use FireflyIII\Support\Http\Api\ExchangeRateConverter;
use FireflyIII\Support\Repositories\UserGroup\UserGroupTrait;
2023-12-29 08:21:14 +01:00
use Illuminate\Support\Facades\Log;
2023-08-06 07:04:09 +02:00
/**
* Class AvailableBudgetRepository
*/
class AvailableBudgetRepository implements AvailableBudgetRepositoryInterface
{
use UserGroupTrait;
2023-08-06 07:04:09 +02:00
public function getAvailableBudgetWithCurrency(Carbon $start, Carbon $end): array
{
2023-12-29 12:00:15 +01:00
Log::debug(sprintf('Created new ExchangeRateConverter in %s', __METHOD__));
2023-08-06 07:04:09 +02:00
$return = [];
$converter = new ExchangeRateConverter();
$default = app('amount')->getDefaultCurrency();
$availableBudgets = $this->userGroup->availableBudgets()
->where('start_date', $start->format('Y-m-d'))
->where('end_date', $end->format('Y-m-d'))->get()
;
2023-12-20 19:35:52 +01:00
2023-08-06 07:04:09 +02:00
/** @var AvailableBudget $availableBudget */
foreach ($availableBudgets as $availableBudget) {
2023-11-05 19:41:37 +01:00
$currencyId = $availableBudget->transaction_currency_id;
$return[$currencyId] ??= [
2023-12-29 19:59:19 +01:00
'currency_id' => $currencyId,
'currency_code' => $availableBudget->transactionCurrency->code,
'currency_symbol' => $availableBudget->transactionCurrency->symbol,
'currency_name' => $availableBudget->transactionCurrency->name,
'currency_decimal_places' => $availableBudget->transactionCurrency->decimal_places,
'native_currency_id' => $default->id,
'native_currency_code' => $default->code,
'native_currency_symbol' => $default->symbol,
'native_currency_name' => $default->name,
'native_currency_decimal_places' => $default->decimal_places,
'amount' => '0',
'native_amount' => '0',
2023-08-06 07:04:09 +02:00
];
$nativeAmount = $converter->convert($availableBudget->transactionCurrency, $default, $availableBudget->start_date, $availableBudget->amount);
$return[$currencyId]['amount'] = bcadd($return[$currencyId]['amount'], $availableBudget->amount);
$return[$currencyId]['native_amount'] = bcadd($return[$currencyId]['native_amount'], $nativeAmount);
}
$converter->summarize();
2023-12-20 19:35:52 +01:00
2023-08-06 07:04:09 +02:00
return $return;
}
}