Files
calendar/packages/features/tasker/tasks/bookingAudit.ts
T
98b6d63164 refactor: apply biome formatting to packages/features (#27844)
* refactor: apply biome formatting to packages/features (batch 1 - small subdirs)

Format small subdirectories in packages/features: di, flags, holidays, oauth,
settings, users, assignment-reason, selectedCalendar, hashedLink, host, form,
form-builder, availability, data-table, pbac, schedules, troubleshooter,
eventtypes, calendar-subscription, and root-level files.

Also includes straggler apps/web BookEventForm.tsx.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 2 - medium subdirs)

Format medium subdirectories in packages/features: auth, credentials,
calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone,
tasker, and webhooks.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 3 - bookings + insights)

Format bookings and insights subdirectories in packages/features.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 4 - ee)

Format packages/features/ee subdirectory covering billing, workflows,
organizations, teams, managed-event-types, round-robin, dsync,
integration-attribute-sync, and payments.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1)

Format booking-audit di, actions, common, dto, repository, and types
subdirectories in packages/features/booking-audit.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2)

Format booking-audit service subdirectory in packages/features/booking-audit.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 15:47:14 +01:00

45 lines
1.7 KiB
TypeScript

import logger from "@calcom/lib/logger";
import { safeStringify } from "@calcom/lib/safeStringify";
import { getBookingAuditTaskConsumer } from "@calcom/features/booking-audit/di/BookingAuditTaskConsumer.container";
import { BookingAuditTaskConsumerSchema } from "@calcom/features/booking-audit/lib/types/bookingAuditTask";
const log = logger.getSubLogger({ prefix: ["[tasker] bookingAudit"] });
/**
* Booking Audit Task Handler
*
* Thin wrapper that parses JSON and delegates to BookingAuditTaskConsumer.
* Routes to processAuditTask or processBulkAuditTask based on isBulk field.
*
*/
export async function bookingAudit(payload: string, taskId?: string): Promise<void> {
try {
if (!taskId) {
throw new Error("Task ID is required for booking audit consumer");
}
const parsedPayload: unknown = JSON.parse(payload);
const parseResult = BookingAuditTaskConsumerSchema.safeParse(parsedPayload);
if (!parseResult.success) {
const errorMsg = `Invalid booking audit payload: ${safeStringify(parseResult.error.errors)} | TaskId: ${taskId}`;
log.error(errorMsg);
throw new Error(errorMsg);
}
const validatedPayload = parseResult.data;
const bookingAuditTaskConsumer = getBookingAuditTaskConsumer();
if (validatedPayload.isBulk) {
await bookingAuditTaskConsumer.processBulkAuditTask(validatedPayload, taskId);
} else {
await bookingAuditTaskConsumer.processAuditTask(validatedPayload, taskId);
}
} catch (error) {
const errorMsg = `Error processing booking audit: ${safeStringify(error)} | TaskId: ${taskId}`;
log.error(errorMsg);
// Rethrow to trigger retry via Tasker
throw error;
}
}