/** * Use Case: GetRaceProtestsUseCase * * Returns all protests filed for a specific race, with driver details. * Orchestrates domain logic and delegates presentation to the presenter. */ import type { IProtestRepository } from '../../domain/repositories/IProtestRepository'; import type { IDriverRepository } from '../../domain/repositories/IDriverRepository'; import type { RaceProtestsOutputPort } from '../ports/output/RaceProtestsOutputPort'; import type { AsyncUseCase } from '@core/shared/application/AsyncUseCase'; import { Result } from '@core/shared/application/Result'; import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode'; export interface GetRaceProtestsInput { raceId: string; } export class GetRaceProtestsUseCase implements AsyncUseCase { constructor( private readonly protestRepository: IProtestRepository, private readonly driverRepository: IDriverRepository, ) {} async execute(input: GetRaceProtestsInput): Promise>> { const protests = await this.protestRepository.findByRaceId(input.raceId); const driverIds = new Set(); protests.forEach((protest) => { driverIds.add(protest.protestingDriverId); driverIds.add(protest.accusedDriverId); if (protest.reviewedBy) { driverIds.add(protest.reviewedBy); } }); const drivers = await Promise.all( Array.from(driverIds).map((id) => this.driverRepository.findById(id)), ); const validDrivers = drivers.filter((driver): driver is NonNullable => driver !== null); const outputPort: RaceProtestsOutputPort = { protests, drivers: validDrivers, }; return Result.ok(outputPort); } }