Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace App\State;
use ApiPlatform\Metadata\Operation;
use ApiPlatform\State\ProviderInterface;
use App\Dto\TaxTimeSeries;
use App\Models\Taxe;
use App\Services\TaxeStatService;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
class TaxTimeSeriesProvider implements ProviderInterface
{
public function __construct(
private readonly TaxeStatService $taxeStatService,
) {}
public function provide(Operation $operation, array $uriVariables = [], array $context = []): TaxTimeSeries
{
$request = $context['request'] ?? null;
$region = $request?->query->get('region');
$taxType = $request?->query->get('tax_type');
$startYear = $request?->query->get('start_year');
$endYear = $request?->query->get('end_year');
if (!$region) {
throw new BadRequestHttpException('The "region" parameter is required.');
}
if (!$taxType || !in_array($taxType, Taxe::ALLOWED_STAT_FIELDS, true)) {
throw new BadRequestHttpException(
sprintf('Invalid tax_type "%s". Allowed: %s', $taxType, implode(', ', Taxe::ALLOWED_STAT_FIELDS))
);
}
$startYearInt = $startYear !== null ? (int) $startYear : null;
$endYearInt = $endYear !== null ? (int) $endYear : null;
$data = $this->taxeStatService->getTimeSeries($region, $taxType, $startYearInt, $endYearInt);
return new TaxTimeSeries(
region: $region,
tax_type: $taxType,
start_year: $startYearInt,
end_year: $endYearInt,
data: $data,
);
}
}