mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-04 11:48:05 +00:00
76 lines
3.5 KiB
PHP
76 lines
3.5 KiB
PHP
<?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/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Repositories\UserGroups\Budget;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Models\AvailableBudget;
|
|
use FireflyIII\Support\Http\Api\ExchangeRateConverter;
|
|
use FireflyIII\Support\Repositories\UserGroup\UserGroupTrait;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* Class AvailableBudgetRepository
|
|
*/
|
|
class AvailableBudgetRepository implements AvailableBudgetRepositoryInterface
|
|
{
|
|
use UserGroupTrait;
|
|
|
|
public function getAvailableBudgetWithCurrency(Carbon $start, Carbon $end): array
|
|
{
|
|
Log::debug(sprintf('Created new ExchangeRateConverter in %s', __METHOD__));
|
|
$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();
|
|
|
|
/** @var AvailableBudget $availableBudget */
|
|
foreach ($availableBudgets as $availableBudget) {
|
|
$currencyId = $availableBudget->transaction_currency_id;
|
|
$return[$currencyId] ??= [
|
|
'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',
|
|
];
|
|
$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();
|
|
|
|
return $return;
|
|
}
|
|
}
|