Reserve a slot

The big one: Reserve a slot.

It's very important that when we build anything like this, we stay clear on the Bounded Contexts and relationships we mapped previously. Now is not the time to lump together everything in a big box, shake it around, and confuse the borders of our responsibility! Because this happens in the Reservation service, the primary concern we have is to ensure correct functionality within that box.

We need to respect, and use, the API contract provided by the VerificationCode service, as well as ensure that the event pushed to the event buses is correct to the analytics context (because we have promised to give them a specific shape of it). We "own" the event we pass to Display as that just makes more sense. So, those were the responsibilities.

For the actual configuration file, there's not too much going on, besides enforcing a schema on our API so people won't be calling it willy-nilly.

code/Reservation/Reservation/serverless.yml
ReserveSlot:
  handler: src/infrastructure/adapters/web/ReserveSlot.handler
  description: Reserve a slot
  events:
    - http:
  method: POST
  path: /ReserveSlot
  request:
  schemas:
  application/json: ${file(schema/ReserveSlot.validator.json)}

This time, the use case is a bit bigger as we need to load a lot more services before passing them to our domain service, ReservationService, to actually conduct any business logic.

code/Reservation/Reservation/src/application/usecases/ReserveSlotUseCase.ts
export async function ReserveSlotUseCase(
  dependencies: Dependencies,
  slotInput: SlotInput
): Promise<ReserveOutput> {
  const securityApiEndpoint = process.env.SECURITY_API_ENDPOINT_GENERATE || "";

  const { slotId, hostName } = slotInput;
  const slotLoader = createSlotLoaderService(dependencies.repository);
  const slotDto = await slotLoader.loadSlot(slotId);

  const verificationCodeService =
    createVerificationCodeService(securityApiEndpoint);
  const reservationService = new ReservationService(dependencies);

  return await reservationService.reserve(
    slotDto,
    hostName,
    verificationCodeService
  );
}

With that, it's still not a lot, to be honest. It's always nice being able to do more with less (code)!

Last updated