feat: split booking participant controllers

This commit is contained in:
Björn Fromme
2026-04-11 18:28:32 +02:00
parent 346256f895
commit f22ceae41c
10 changed files with 767 additions and 673 deletions
@@ -0,0 +1,72 @@
<?php
declare(strict_types=1);
namespace App\Service;
use App\BusProNet\Model\BaseData;
use App\BusProNet\Model\Booking;
use App\BusProNet\Model\Notification;
use App\Entity\User;
use App\Form\Model\BookingDto;
use App\Form\Model\BookingSummaryDto;
use Symfony\Component\HttpFoundation\Request;
/**
* Coordinates the edit-side participant form workflow.
*
* This service keeps the edit participant controller focused on HTTP concerns
* while centralizing the session lookup, API data loading, form options, and
* bookkeeping needed for participant edits and HTMX refreshes.
*/
class BookingEditParticipantFormService
{
public function __construct(
private readonly BookingEditDataLoaderService $dataLoader,
private readonly BookingEditDraftService $draftService,
private readonly BookingService $bookingService,
private readonly BookingSummaryDataService $summaryDataService,
private readonly TravelDataService $travelDataService,
) {
}
public function loadBookingDto(Request $request): ?BookingDto
{
return $this->bookingService->getBookingDto($request, BookingDto::MODE_EDIT);
}
public function fetchBookingData(int $bookingId, User $user): Booking|Notification|null
{
return $this->dataLoader->fetchBookingData($bookingId, $user);
}
public function isParticipantCanceled(Booking $bookingData, int $index): bool
{
return 'S' === ($bookingData->participantsStatus[$index] ?? null);
}
public function enrichTravelData(BookingDto $bookingDto): void
{
$this->travelDataService->enrichWithFreshAvailabilities($bookingDto->travel);
}
public function saveBookingDto(Request $request, BookingDto $bookingDto): void
{
$this->bookingService->saveBookingDto($request, $bookingDto, BookingDto::MODE_EDIT);
}
public function saveDraft(User $user, int $bookingId, BookingDto $bookingDto): void
{
$this->draftService->saveDraft($user, $bookingId, $bookingDto);
}
public function getSummaryData(BookingDto $bookingDto): BookingSummaryDto
{
return $this->summaryDataService->getSummaryData($bookingDto);
}
public function getMutableData(int $dateId): ?BaseData
{
return $this->travelDataService->getMutabilityData($dateId);
}
}
@@ -0,0 +1,79 @@
<?php
declare(strict_types=1);
namespace App\Service;
use App\Form\Model\BookingDto;
use App\Form\Model\ParticipantDto;
use App\Form\Model\ParticipantEditDto;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
/**
* Shared helpers for participant edit forms in create and edit booking flows.
*/
class ParticipantFormSupportService
{
public function __construct(
private readonly ParameterBagInterface $parameterBag,
) {
}
public function ensureParticipantExists(BookingDto $bookingDto, int $index): ParticipantDto
{
$participant = $bookingDto->participants[$index] ?? null;
if (null === $participant) {
throw new \InvalidArgumentException(sprintf('Participant at index %d does not exist', $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,
'height_choices' => $this->parameterBag->get('body_dimensions.height_choices'),
'weight_choices' => $this->parameterBag->get('body_dimensions.weight_choices'),
'shoe_size_min' => $this->parameterBag->get('body_dimensions.shoe_size_min'),
'shoe_size_max' => $this->parameterBag->get('body_dimensions.shoe_size_max'),
];
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);
}
}