Files
firefly-iii/app/Transformers/AvailableBudgetTransformer.php

96 lines
3.8 KiB
PHP
Raw Normal View History

2018-06-24 08:33:06 +02:00
<?php
2018-06-24 08:33:06 +02:00
/**
* AvailableBudgetTransformer.php
2020-02-16 13:57:18 +01:00
* Copyright (c) 2019 james@firefly-iii.org
2018-06-24 08:33:06 +02:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-06-24 08:33:06 +02:00
*
* 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.
2018-06-24 08:33:06 +02:00
*
* This program is distributed in the hope that it will be useful,
2018-06-24 08:33:06 +02:00
* 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.
2018-06-24 08:33:06 +02:00
*
* 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/>.
2018-06-24 08:33:06 +02:00
*/
declare(strict_types=1);
namespace FireflyIII\Transformers;
2021-04-06 13:30:09 +02:00
2018-06-24 08:33:06 +02:00
use FireflyIII\Models\AvailableBudget;
2025-01-18 17:20:39 +01:00
use FireflyIII\Models\TransactionCurrency;
use FireflyIII\Support\Facades\Amount;
2018-06-24 08:33:06 +02:00
2018-06-24 13:20:29 +02:00
/**
* Class AvailableBudgetTransformer
*/
2018-12-16 13:55:19 +01:00
class AvailableBudgetTransformer extends AbstractTransformer
2018-06-24 08:33:06 +02:00
{
2025-08-03 07:53:36 +02:00
private readonly bool $convertToPrimary;
private readonly TransactionCurrency $primary;
2018-06-24 08:33:06 +02:00
/**
* CurrencyTransformer constructor.
*/
2018-12-16 13:55:19 +01:00
public function __construct()
2018-06-24 08:33:06 +02:00
{
2025-08-03 07:53:36 +02:00
$this->primary = Amount::getPrimaryCurrency();
$this->convertToPrimary = Amount::convertToPrimary();
2018-06-24 08:33:06 +02:00
}
/**
* Transform the note.
*/
public function transform(AvailableBudget $availableBudget): array
{
2018-12-12 20:30:25 +01:00
$currency = $availableBudget->transactionCurrency;
$amount = app('steam')->bcround($availableBudget->amount, $currency->decimal_places);
$pcAmount = null;
if ($this->convertToPrimary) {
$pcAmount = app('steam')->bcround($availableBudget->native_amount, $this->primary->decimal_places);
2025-01-18 17:20:39 +01:00
}
return [
'id' => (string) $availableBudget->id,
'created_at' => $availableBudget->created_at->toAtomString(),
'updated_at' => $availableBudget->updated_at->toAtomString(),
// currencies according to 6.3.0
2025-08-03 10:24:49 +02:00
'object_has_currency_setting' => true,
'currency_id' => (string) $currency->id,
'currency_code' => $currency->code,
'currency_symbol' => $currency->symbol,
'currency_decimal_places' => $currency->decimal_places,
'primary_currency_id' => (string) $this->primary->id,
'primary_currency_code' => $this->primary->code,
'primary_currency_symbol' => $this->primary->symbol,
'primary_currency_decimal_places' => $this->primary->decimal_places,
'amount' => $amount,
'pc_amount' => $pcAmount,
'start' => $availableBudget->start_date->toAtomString(),
'end' => $availableBudget->end_date->endOfDay()->toAtomString(),
'spent_in_budgets' => $availableBudget->meta['spent_in_budgets'],
'pc_spent_in_budgets' => $availableBudget->meta['pc_spent_in_budgets'],
'spent_outside_budgets' => $availableBudget->meta['spent_outside_budgets'],
'pc_spent_outside_budgets' => $availableBudget->meta['pc_spent_outside_budgets'],
'links' => [
2018-06-24 08:33:06 +02:00
[
'rel' => 'self',
'uri' => '/available_budgets/'.$availableBudget->id,
2018-06-24 08:33:06 +02:00
],
],
];
}
}