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

71 lines
2.3 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) {
if (array_key_exists('currency_id', $array)) {
2024-12-22 08:43:12 +01:00
$array['currency_id'] = (string) $array['currency_id'];
2023-08-01 11:15:19 +02:00
}
2023-12-29 19:59:19 +01:00
if (array_key_exists('native_currency_id', $array)) {
2024-12-22 08:43:12 +01:00
$array['native_currency_id'] = (string) $array['native_currency_id'];
2023-08-01 11:15:19 +02:00
}
if (!array_key_exists('start', $array)) {
throw new FireflyException(sprintf('Data-set "%s" is missing the "start"-variable.', $index));
}
2023-08-06 19:37:51 +02:00
if (!array_key_exists('end', $array)) {
throw new FireflyException(sprintf('Data-set "%s" is missing the "end"-variable.', $index));
}
2023-08-01 11:15:19 +02:00
if (!array_key_exists('period', $array)) {
throw new FireflyException(sprintf('Data-set "%s" is missing the "period"-variable.', $index));
}
$return[] = $array;
}
2023-12-20 19:35:52 +01:00
2023-08-01 11:15:19 +02:00
return $return;
}
}