Files
firefly-iii/app/Support/Http/Api/ExchangeRateConverter.php

293 lines
9.6 KiB
PHP
Raw Normal View History

2023-07-25 09:01:44 +02:00
<?php
2023-07-28 16:14:55 +02:00
2023-07-25 09:01:44 +02:00
/*
* ExchangeRateConverter.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);
2023-07-25 09:01:44 +02:00
namespace FireflyIII\Support\Http\Api;
use Carbon\Carbon;
use FireflyIII\Exceptions\FireflyException;
2023-08-12 18:21:29 +02:00
use FireflyIII\Models\CurrencyExchangeRate;
2023-07-25 09:01:44 +02:00
use FireflyIII\Models\TransactionCurrency;
use FireflyIII\Models\UserGroup;
2023-08-12 18:21:29 +02:00
use FireflyIII\Support\CacheProperties;
2024-12-28 10:52:46 +01:00
use FireflyIII\Support\Facades\Steam;
2024-07-06 15:42:50 +02:00
use Illuminate\Support\Facades\Cache;
2023-12-21 04:42:39 +01:00
use Illuminate\Support\Facades\Log;
2023-07-25 09:01:44 +02:00
/**
* Class ExchangeRateConverter
*/
class ExchangeRateConverter
{
2023-12-20 19:35:52 +01:00
// use ConvertsExchangeRates;
2025-01-05 07:31:26 +01:00
private bool $ignoreSettings = false;
private array $prepared = [];
private int $queryCount = 0;
2024-08-01 20:45:42 +02:00
private UserGroup $userGroup;
public function __construct()
{
if (auth()->check()) {
$this->userGroup = auth()->user()->userGroup;
}
}
public function setUserGroup(UserGroup $userGroup): void
{
$this->userGroup = $userGroup;
}
2023-08-06 07:04:09 +02:00
/**
* @throws FireflyException
*/
public function convert(TransactionCurrency $from, TransactionCurrency $to, Carbon $date, string $amount): string
{
2024-08-01 20:45:42 +02:00
if (false === $this->enabled()) {
2024-07-06 15:42:50 +02:00
Log::debug('ExchangeRateConverter: disabled, return amount as is.');
2024-06-30 18:20:52 +02:00
return $amount;
}
2023-08-06 07:04:09 +02:00
$rate = $this->getCurrencyRate($from, $to, $date);
2023-12-20 19:35:52 +01:00
2024-12-28 10:52:46 +01:00
return Steam::bcround(bcmul($amount, $rate), $to->decimal_places);
2023-08-06 07:04:09 +02:00
}
2024-12-22 08:43:12 +01:00
public function enabled(): bool
{
return false !== config('cer.enabled') || true === $this->ignoreSettings;
}
2023-07-25 09:01:44 +02:00
/**
* @throws FireflyException
*/
public function getCurrencyRate(TransactionCurrency $from, TransactionCurrency $to, Carbon $date): string
{
2024-08-01 20:45:42 +02:00
if (false === $this->enabled()) {
2024-07-06 15:42:50 +02:00
Log::debug('ExchangeRateConverter: disabled, return "1".');
2024-06-30 18:20:52 +02:00
return '1';
}
2025-02-08 10:51:52 +01:00
if($from->id === $to->id) {
Log::debug('ExchangeRateConverter: From and to are the same, return "1".');
return '1';
}
2023-08-12 18:21:29 +02:00
$rate = $this->getRate($from, $to, $date);
2023-12-20 19:35:52 +01:00
2023-08-12 18:21:29 +02:00
return '0' === $rate ? '1' : $rate;
}
/**
* @throws FireflyException
*/
private function getRate(TransactionCurrency $from, TransactionCurrency $to, Carbon $date): string
{
$key = $this->getCacheKey($from, $to, $date);
$res = Cache::get($key, null);
2023-12-29 09:16:13 +01:00
2024-07-06 15:42:50 +02:00
// find in cache
if (null !== $res) {
2025-02-08 10:51:52 +01:00
Log::debug(sprintf('ExchangeRateConverter: Return cached rate from %s to %s on %s.', $from->code, $to->code, $date->format('Y-m-d')));
2024-07-06 15:42:50 +02:00
return $res;
2023-12-29 09:01:42 +01:00
}
2024-07-06 15:42:50 +02:00
// find in database
$rate = $this->getFromDB($from->id, $to->id, $date->format('Y-m-d'));
2023-08-12 18:21:29 +02:00
if (null !== $rate) {
2024-07-06 15:42:50 +02:00
Cache::forever($key, $rate);
2025-02-08 10:51:52 +01:00
Log::debug(sprintf('ExchangeRateConverter: Return DB rate from %s to %s on %s.', $from->code, $to->code, $date->format('Y-m-d')));
2023-08-12 18:21:29 +02:00
return $rate;
}
2024-07-06 15:42:50 +02:00
// find reverse in database
$rate = $this->getFromDB($to->id, $from->id, $date->format('Y-m-d'));
2023-08-12 18:21:29 +02:00
if (null !== $rate) {
2024-07-06 15:42:50 +02:00
$rate = bcdiv('1', $rate);
Cache::forever($key, $rate);
2025-02-08 10:51:52 +01:00
Log::debug(sprintf('ExchangeRateConverter: Return inverse DB rate from %s to %s on %s.', $from->code, $to->code, $date->format('Y-m-d')));
2024-07-06 15:42:50 +02:00
return $rate;
2023-08-12 18:21:29 +02:00
}
2024-07-06 15:42:50 +02:00
// fallback scenario.
2023-08-12 18:21:29 +02:00
$first = $this->getEuroRate($from, $date);
$second = $this->getEuroRate($to, $date);
// combined (if present), they can be used to calculate the necessary conversion rate.
2023-12-21 04:42:39 +01:00
if (0 === bccomp('0', $first) || 0 === bccomp('0', $second)) {
2025-02-08 10:51:52 +01:00
Log::warning(sprintf('There is not enough information to convert %s to %s on date %d', $from->code, $to->code, $date->format('Y-m-d')));
2023-12-21 04:42:39 +01:00
2024-07-06 15:42:50 +02:00
return '1';
2023-08-12 18:21:29 +02:00
}
$second = bcdiv('1', $second);
2024-07-06 15:42:50 +02:00
$rate = bcmul($first, $second);
2025-02-08 10:51:52 +01:00
Log::debug(sprintf('ExchangeRateConverter: Return DB rate from %s to %s on %s.', $from->code, $to->code, $date->format('Y-m-d')));
2024-07-06 15:42:50 +02:00
Cache::forever($key, $rate);
2024-07-06 15:42:50 +02:00
return $rate;
2023-08-12 18:21:29 +02:00
}
2024-12-22 08:43:12 +01:00
private function getCacheKey(TransactionCurrency $from, TransactionCurrency $to, Carbon $date): string
{
return sprintf('cer-%d-%d-%s', $from->id, $to->id, $date->format('Y-m-d'));
}
2023-08-12 18:21:29 +02:00
private function getFromDB(int $from, int $to, string $date): ?string
{
2023-12-22 06:27:46 +01:00
if ($from === $to) {
2025-02-08 10:51:52 +01:00
Log::debug('ExchangeRateConverter: From and to are the same, return "1".');
2023-12-22 06:25:38 +01:00
return '1';
}
$key = sprintf('cer-%d-%d-%s', $from, $to, $date);
2023-08-12 18:21:29 +02:00
// perhaps the rate has been cached during this particular run
$preparedRate = $this->prepared[$date][$from][$to] ?? null;
if (null !== $preparedRate && 0 !== bccomp('0', $preparedRate)) {
2024-07-06 15:42:50 +02:00
Log::debug(sprintf('ExchangeRateConverter: Found prepared rate from #%d to #%d on %s.', $from, $to, $date));
2023-12-29 09:16:13 +01:00
return $preparedRate;
}
$cache = new CacheProperties();
2023-08-12 18:21:29 +02:00
$cache->addProperty($key);
if ($cache->has()) {
$rate = $cache->get();
if ('' === $rate) {
return null;
}
2025-02-08 10:51:52 +01:00
Log::debug(sprintf('ExchangeRateConverter: Found cached rate from #%d to #%d on %s.', $from, $to, $date));
2023-12-20 19:35:52 +01:00
2023-08-12 18:21:29 +02:00
return $rate;
2023-07-25 09:01:44 +02:00
}
2023-12-20 19:35:52 +01:00
/** @var null|CurrencyExchangeRate $result */
$result = $this->userGroup->currencyExchangeRates()
->where('from_currency_id', $from)
->where('to_currency_id', $to)
->where('date', '<=', $date)
->orderBy('date', 'DESC')
->first()
;
++$this->queryCount;
$rate = (string) $result?->rate;
2023-12-22 10:16:10 +01:00
if ('' === $rate) {
2024-07-06 15:42:50 +02:00
app('log')->debug(sprintf('ExchangeRateConverter: Found no rate for #%d->#%d (%s) in the DB.', $from, $to, $date));
2023-12-29 09:01:42 +01:00
2023-12-22 10:16:10 +01:00
return null;
}
2023-12-27 20:11:50 +01:00
if (0 === bccomp('0', $rate)) {
2024-07-06 15:42:50 +02:00
app('log')->debug(sprintf('ExchangeRateConverter: Found rate for #%d->#%d (%s) in the DB, but it\'s zero.', $from, $to, $date));
2023-12-29 09:16:13 +01:00
2023-12-22 10:16:10 +01:00
return null;
}
2024-07-06 15:42:50 +02:00
app('log')->debug(sprintf('ExchangeRateConverter: Found rate for #%d->#%d (%s) in the DB: %s.', $from, $to, $date, $rate));
2023-08-12 18:21:29 +02:00
$cache->store($rate);
// if the rate has not been cached during this particular run, save it
$this->prepared[$date] ??= [
$from => [
$to => $rate,
],
];
// also save the exchange rate the other way around:
$this->prepared[$date] ??= [
$to => [
$from => bcdiv('1', $rate),
],
];
2023-08-12 18:21:29 +02:00
return $rate;
}
/**
* @throws FireflyException
*/
private function getEuroRate(TransactionCurrency $currency, Carbon $date): string
{
$euroId = $this->getEuroId();
2023-11-05 19:41:37 +01:00
if ($euroId === $currency->id) {
2023-07-25 09:01:44 +02:00
return '1';
}
$rate = $this->getFromDB($currency->id, $euroId, $date->format('Y-m-d'));
2023-07-25 09:01:44 +02:00
2023-08-12 18:21:29 +02:00
if (null !== $rate) {
// app('log')->debug(sprintf('Rate for %s to EUR is %s.', $currency->code, $rate));
return $rate;
}
$rate = $this->getFromDB($euroId, $currency->id, $date->format('Y-m-d'));
2023-08-12 18:21:29 +02:00
if (null !== $rate) {
return bcdiv('1', $rate);
// app('log')->debug(sprintf('Inverted rate for %s to EUR is %s.', $currency->code, $rate));
2023-12-20 19:35:52 +01:00
// return $rate;
2023-08-12 18:21:29 +02:00
}
// grab backup values from config file:
$backup = config(sprintf('cer.rates.%s', $currency->code));
if (null !== $backup) {
2024-07-06 15:42:50 +02:00
return bcdiv('1', (string) $backup);
2023-08-12 18:21:29 +02:00
// app('log')->debug(sprintf('Backup rate for %s to EUR is %s.', $currency->code, $backup));
2023-12-20 19:35:52 +01:00
// return $backup;
2023-08-12 18:21:29 +02:00
}
// app('log')->debug(sprintf('No rate for %s to EUR.', $currency->code));
return '0';
2023-07-25 09:01:44 +02:00
}
2023-08-12 18:21:29 +02:00
/**
* @throws FireflyException
*/
private function getEuroId(): int
{
2023-12-29 09:16:13 +01:00
Log::debug('getEuroId()');
2023-08-12 18:21:29 +02:00
$cache = new CacheProperties();
$cache->addProperty('cer-euro-id');
if ($cache->has()) {
2024-07-06 15:42:50 +02:00
return (int) $cache->get();
2023-08-12 18:21:29 +02:00
}
$euro = TransactionCurrency::whereCode('EUR')->first();
++$this->queryCount;
2023-08-12 18:21:29 +02:00
if (null === $euro) {
throw new FireflyException('Cannot find EUR in system, cannot do currency conversion.');
}
2023-11-05 19:41:37 +01:00
$cache->store($euro->id);
2023-12-20 19:35:52 +01:00
2023-11-05 19:41:37 +01:00
return $euro->id;
2023-08-12 18:21:29 +02:00
}
2023-12-29 09:01:42 +01:00
2024-12-22 08:43:12 +01:00
public function setIgnoreSettings(bool $ignoreSettings): void
{
$this->ignoreSettings = $ignoreSettings;
}
public function summarize(): void
{
2024-08-01 20:45:42 +02:00
if (false === $this->enabled()) {
2024-06-30 18:20:52 +02:00
return;
}
Log::debug(sprintf('ExchangeRateConverter ran %d queries.', $this->queryCount));
}
2023-07-25 09:01:44 +02:00
}