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

78 lines
2.4 KiB
PHP
Raw Normal View History

2023-08-01 11:15:19 +02:00
<?php
2023-08-01 11:15:19 +02:00
/*
* CleansChartData.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-08-01 11:15:19 +02:00
namespace FireflyIII\Support\Http\Api;
use FireflyIII\Exceptions\FireflyException;
/**
* Trait CleansChartData
*/
trait CleansChartData
{
/**
* Clean up given chart data array. Each entry is supposed to be a
* "main" entry used in the V2 API chart endpoints. This loop makes sure
* IDs are strings and other values are present (or missing).
*
* @throws FireflyException
*/
private function clean(array $data): array
{
$return = [];
2023-12-20 19:35:52 +01:00
2023-08-01 11:15:19 +02:00
/**
* @var mixed $index
* @var array $array
*/
foreach ($data as $index => $array) {
$array = $this->cleanSingleArray($index, $array);
2023-08-01 11:15:19 +02:00
$return[] = $array;
}
2023-12-20 19:35:52 +01:00
2023-08-01 11:15:19 +02:00
return $return;
}
2025-08-15 07:11:34 +02:00
private function cleanSingleArray(mixed $index, array $array): array
{
2025-08-15 07:11:34 +02:00
if (array_key_exists('currency_id', $array)) {
$array['currency_id'] = (string)$array['currency_id'];
}
if (array_key_exists('primary_currency_id', $array)) {
$array['primary_currency_id'] = (string)$array['primary_currency_id'];
}
$required = [
'start_date', 'end_date', 'period', 'yAxisID', 'type', 'entries', 'pc_entries',
'currency_id', 'primary_currency_id',
];
2025-08-15 07:11:34 +02:00
foreach ($required as $field) {
if (!array_key_exists($field, $array)) {
throw new FireflyException(sprintf('Data-set "%s" is missing the "%s"-variable.', $index, $field));
}
}
2025-08-15 07:11:34 +02:00
return $array;
}
2023-08-01 11:15:19 +02:00
}