112 lines
3.2 KiB
PHP
112 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service;
|
|
|
|
use App\Exception\ParticipantNotFoundException;
|
|
use App\Form\Model\BookingDto;
|
|
use App\Form\Model\ParticipantDto;
|
|
use App\Form\Model\ParticipantEditDto;
|
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
|
|
|
/**
|
|
* Shared helpers for participant edit forms in create and edit booking flows.
|
|
*/
|
|
class ParticipantFormSupport
|
|
{
|
|
/**
|
|
* @var array<string, int>
|
|
*/
|
|
private array $bodyDimensionRanges;
|
|
|
|
/**
|
|
* @param array<string, int> $bodyDimensionRanges
|
|
*/
|
|
public function __construct(
|
|
array $bodyDimensionRanges,
|
|
) {
|
|
$this->bodyDimensionRanges = $this->resolveOptions($bodyDimensionRanges);
|
|
}
|
|
|
|
public function ensureParticipantExists(BookingDto $bookingDto, int $index): ParticipantDto
|
|
{
|
|
$participant = $bookingDto->participants[$index] ?? null;
|
|
|
|
if (null === $participant) {
|
|
throw new ParticipantNotFoundException($index);
|
|
}
|
|
|
|
return $participant;
|
|
}
|
|
|
|
public function createParticipantEditDto(BookingDto $bookingDto, int $index): ParticipantEditDto
|
|
{
|
|
return new ParticipantEditDto(
|
|
participant: $this->ensureParticipantExists($bookingDto, $index),
|
|
bookingContext: $bookingDto,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function getParticipantFormOptions(BookingDto $bookingDto, bool $disableValidation = false): array
|
|
{
|
|
$options = [
|
|
'booking_context' => $bookingDto,
|
|
'body_dimension_ranges' => $this->bodyDimensionRanges,
|
|
];
|
|
|
|
if (true === $disableValidation) {
|
|
$options['validation_groups'] = false;
|
|
}
|
|
|
|
return $options;
|
|
}
|
|
|
|
/**
|
|
* Collects participant notifications and clears them from the DTO.
|
|
*
|
|
* @return array<array{type: string, message: string}>
|
|
*/
|
|
public function collectAndClearNotifications(BookingDto $bookingDto): array
|
|
{
|
|
$notifications = [];
|
|
|
|
foreach ($bookingDto->participants as $participant) {
|
|
if (false === empty($participant->notifications)) {
|
|
$notifications = array_merge($notifications, $participant->notifications);
|
|
$participant->notifications = [];
|
|
}
|
|
}
|
|
|
|
return array_values($notifications);
|
|
}
|
|
|
|
/**
|
|
* @param array<string, int> $options
|
|
* @return array<string, int>
|
|
*/
|
|
private function resolveOptions(array $options): array
|
|
{
|
|
$optionsResolver = new OptionsResolver();
|
|
$optionsResolver->setRequired([
|
|
'height_min',
|
|
'height_max',
|
|
'weight_min',
|
|
'weight_max',
|
|
'shoe_size_min',
|
|
'shoe_size_max',
|
|
]);
|
|
$optionsResolver->setAllowedTypes('height_min', ['int']);
|
|
$optionsResolver->setAllowedTypes('height_max', ['int']);
|
|
$optionsResolver->setAllowedTypes('weight_min', ['int']);
|
|
$optionsResolver->setAllowedTypes('weight_max', ['int']);
|
|
$optionsResolver->setAllowedTypes('shoe_size_min', ['int']);
|
|
$optionsResolver->setAllowedTypes('shoe_size_max', ['int']);
|
|
|
|
return $optionsResolver->resolve($options);
|
|
}
|
|
}
|