| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2024-11-25 04:18:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * BudgetTransformer.php | 
					
						
							| 
									
										
										
										
											2020-02-16 13:57:18 +01:00
										 |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +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-02-11 20:45:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * GNU Affero General Public License for more details. | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +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-02-11 20:45:33 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Transformers; | 
					
						
							| 
									
										
										
										
											2021-09-18 10:26:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-03 14:56:06 +01:00
										 |  |  | use FireflyIII\Enums\AutoBudgetType; | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  | use FireflyIII\Models\Budget; | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  | use FireflyIII\Models\TransactionCurrency; | 
					
						
							| 
									
										
										
										
											2018-12-12 20:30:25 +01:00
										 |  |  | use FireflyIII\Repositories\Budget\BudgetRepositoryInterface; | 
					
						
							| 
									
										
										
										
											2019-09-23 16:42:21 +02:00
										 |  |  | use FireflyIII\Repositories\Budget\OperationsRepositoryInterface; | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  | use FireflyIII\Support\Facades\Amount; | 
					
						
							| 
									
										
										
										
											2018-02-17 10:47:06 +01:00
										 |  |  | use Illuminate\Support\Collection; | 
					
						
							| 
									
										
										
										
											2020-11-15 14:02:29 +01:00
										 |  |  | use Symfony\Component\HttpFoundation\ParameterBag; | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class BudgetTransformer | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-12-16 13:55:19 +01:00
										 |  |  | class BudgetTransformer extends AbstractTransformer | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2025-05-04 13:04:33 +02:00
										 |  |  |     private readonly bool                          $convertToNative; | 
					
						
							|  |  |  |     private readonly TransactionCurrency           $default; | 
					
						
							| 
									
										
										
										
											2025-05-04 17:41:26 +02:00
										 |  |  |     private readonly OperationsRepositoryInterface $opsRepository; | 
					
						
							|  |  |  |     private readonly BudgetRepositoryInterface     $repository; | 
					
						
							| 
									
										
										
										
											2018-12-19 19:02:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2018-02-17 10:47:06 +01:00
										 |  |  |      * BudgetTransformer constructor. | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-12-16 13:55:19 +01:00
										 |  |  |     public function __construct() | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |         $this->opsRepository   = app(OperationsRepositoryInterface::class); | 
					
						
							|  |  |  |         $this->repository      = app(BudgetRepositoryInterface::class); | 
					
						
							|  |  |  |         $this->parameters      = new ParameterBag(); | 
					
						
							| 
									
										
										
										
											2025-01-19 19:07:19 +01:00
										 |  |  |         $this->default         = Amount::getNativeCurrency(); | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |         $this->convertToNative = Amount::convertToNative(); | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 10:47:06 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Transform a budget. | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function transform(Budget $budget): array | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-09-23 16:42:21 +02:00
										 |  |  |         $this->opsRepository->setUser($budget->user); | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |         $start      = $this->parameters->get('start'); | 
					
						
							|  |  |  |         $end        = $this->parameters->get('end'); | 
					
						
							|  |  |  |         $autoBudget = $this->repository->getAutoBudget($budget); | 
					
						
							|  |  |  |         $spent      = []; | 
					
						
							| 
									
										
										
										
											2018-12-12 20:30:25 +01:00
										 |  |  |         if (null !== $start && null !== $end) { | 
					
						
							| 
									
										
										
										
											2020-11-15 14:02:29 +01:00
										 |  |  |             $spent = $this->beautify($this->opsRepository->sumExpenses($start, $end, null, new Collection([$budget]))); | 
					
						
							| 
									
										
										
										
											2018-12-12 20:30:25 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |         // info for auto budget.
 | 
					
						
							| 
									
										
										
										
											2025-01-19 11:46:08 +01:00
										 |  |  |         $abType     = null; | 
					
						
							|  |  |  |         $abAmount   = null; | 
					
						
							|  |  |  |         $abNative   = null; | 
					
						
							|  |  |  |         $abPeriod   = null; | 
					
						
							|  |  |  |         $notes      = $this->repository->getNoteText($budget); | 
					
						
							| 
									
										
										
										
											2020-03-14 07:01:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-19 11:46:08 +01:00
										 |  |  |         $types      = [ | 
					
						
							| 
									
										
										
										
											2025-01-03 14:56:06 +01:00
										 |  |  |             AutoBudgetType::AUTO_BUDGET_RESET->value    => 'reset', | 
					
						
							|  |  |  |             AutoBudgetType::AUTO_BUDGET_ROLLOVER->value => 'rollover', | 
					
						
							|  |  |  |             AutoBudgetType::AUTO_BUDGET_ADJUSTED->value => 'adjusted', | 
					
						
							| 
									
										
										
										
											2020-03-14 07:01:31 +01:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2025-01-19 11:46:08 +01:00
										 |  |  |         $currency   = $autoBudget?->transactionCurrency; | 
					
						
							|  |  |  |         $default    = $this->default; | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |         if (!$this->convertToNative) { | 
					
						
							|  |  |  |             $default = null; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2025-01-19 11:46:08 +01:00
										 |  |  |         if (null === $autoBudget) { | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |             $currency = $default; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-03-14 07:01:31 +01:00
										 |  |  |         if (null !== $autoBudget) { | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |             $abType   = $types[$autoBudget->auto_budget_type]; | 
					
						
							|  |  |  |             $abAmount = app('steam')->bcround($autoBudget->amount, $currency->decimal_places); | 
					
						
							|  |  |  |             $abNative = $this->convertToNative ? app('steam')->bcround($autoBudget->native_amount, $default->decimal_places) : null; | 
					
						
							|  |  |  |             $abPeriod = $autoBudget->period; | 
					
						
							| 
									
										
										
										
											2020-03-14 07:01:31 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-03-21 09:15:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-23 19:11:25 +02:00
										 |  |  |         return [ | 
					
						
							| 
									
										
										
										
											2025-01-19 11:46:08 +01:00
										 |  |  |             'id'                             => (string) $budget->id, | 
					
						
							|  |  |  |             'created_at'                     => $budget->created_at->toAtomString(), | 
					
						
							|  |  |  |             'updated_at'                     => $budget->updated_at->toAtomString(), | 
					
						
							|  |  |  |             'active'                         => $budget->active, | 
					
						
							|  |  |  |             'name'                           => $budget->name, | 
					
						
							|  |  |  |             'order'                          => $budget->order, | 
					
						
							|  |  |  |             'notes'                          => $notes, | 
					
						
							|  |  |  |             'auto_budget_type'               => $abType, | 
					
						
							|  |  |  |             'auto_budget_period'             => $abPeriod, | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             'currency_id'                    => null === $autoBudget ? null : (string) $autoBudget->transactionCurrency->id, | 
					
						
							|  |  |  |             'currency_code'                  => $autoBudget?->transactionCurrency->code, | 
					
						
							|  |  |  |             'currency_name'                  => $autoBudget?->transactionCurrency->name, | 
					
						
							|  |  |  |             'currency_decimal_places'        => $autoBudget?->transactionCurrency->decimal_places, | 
					
						
							|  |  |  |             'currency_symbol'                => $autoBudget?->transactionCurrency->symbol, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-27 17:06:15 +02:00
										 |  |  |             'native_currency_id'             => $default instanceof TransactionCurrency ? (string) $default->id : null, | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |             'native_currency_code'           => $default?->code, | 
					
						
							|  |  |  |             'native_currency_symbol'         => $default?->symbol, | 
					
						
							|  |  |  |             'native_currency_decimal_places' => $default?->decimal_places, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // amount and native amount if present.
 | 
					
						
							| 
									
										
										
										
											2025-01-22 05:24:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-18 17:20:39 +01:00
										 |  |  |             'auto_budget_amount'             => $abAmount, | 
					
						
							|  |  |  |             'native_auto_budget_amount'      => $abNative, | 
					
						
							|  |  |  |             'spent'                          => $spent, // always in native.
 | 
					
						
							|  |  |  |             'links'                          => [ | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |                 [ | 
					
						
							|  |  |  |                     'rel' => 'self', | 
					
						
							| 
									
										
										
										
											2025-01-19 11:46:08 +01:00
										 |  |  |                     'uri' => '/budgets/'.$budget->id, | 
					
						
							| 
									
										
										
										
											2018-02-11 20:45:33 +01:00
										 |  |  |                 ], | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 17:32:48 +02:00
										 |  |  |     private function beautify(array $array): array | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $return = []; | 
					
						
							|  |  |  |         foreach ($array as $data) { | 
					
						
							| 
									
										
										
										
											2024-12-22 08:43:12 +01:00
										 |  |  |             $data['sum'] = app('steam')->bcround($data['sum'], (int) $data['currency_decimal_places']); | 
					
						
							| 
									
										
										
										
											2020-07-12 17:32:48 +02:00
										 |  |  |             $return[]    = $data; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-05 19:35:58 +01:00
										 |  |  | } |