* 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>
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import type { Logger } from "tslog";
|
|
|
|
import { getUTCOffsetByTimezone } from "@calcom/lib/dayjs";
|
|
import { ErrorCode } from "@calcom/lib/errorCodes";
|
|
import { HttpError } from "@calcom/lib/http-error";
|
|
import isOutOfBounds, { BookingDateInPastError } from "@calcom/lib/isOutOfBounds";
|
|
import { withReporting } from "@calcom/lib/sentryWrapper";
|
|
import type { EventType } from "@calcom/prisma/client";
|
|
|
|
type ValidateBookingTimeEventType = Pick<
|
|
EventType,
|
|
| "periodType"
|
|
| "periodDays"
|
|
| "periodEndDate"
|
|
| "periodStartDate"
|
|
| "periodCountCalendarDays"
|
|
| "minimumBookingNotice"
|
|
| "eventName"
|
|
| "id"
|
|
| "title"
|
|
>;
|
|
|
|
// Define the function with underscore prefix
|
|
const _validateBookingTimeIsNotOutOfBounds = async <T extends ValidateBookingTimeEventType>(
|
|
reqBodyStartTime: string,
|
|
reqBodyTimeZone: string,
|
|
eventType: T,
|
|
eventTimeZone: string | null | undefined,
|
|
logger: Logger<unknown>
|
|
) => {
|
|
let timeOutOfBounds = false;
|
|
try {
|
|
timeOutOfBounds = isOutOfBounds(
|
|
reqBodyStartTime,
|
|
{
|
|
periodType: eventType.periodType,
|
|
periodDays: eventType.periodDays,
|
|
periodEndDate: eventType.periodEndDate,
|
|
periodStartDate: eventType.periodStartDate,
|
|
periodCountCalendarDays: eventType.periodCountCalendarDays,
|
|
bookerUtcOffset: getUTCOffsetByTimezone(reqBodyTimeZone) ?? 0,
|
|
eventUtcOffset: eventTimeZone ? (getUTCOffsetByTimezone(eventTimeZone) ?? 0) : 0,
|
|
},
|
|
eventType.minimumBookingNotice
|
|
);
|
|
} catch (error) {
|
|
logger.warn({
|
|
message: "NewBooking: Unable to determine timeOutOfBounds status. Defaulting to false.",
|
|
});
|
|
|
|
if (error instanceof BookingDateInPastError) {
|
|
logger.info(`Booking eventType ${eventType.id} failed`, JSON.stringify({ error }));
|
|
throw new HttpError({ statusCode: 400, message: error.message });
|
|
}
|
|
}
|
|
|
|
if (timeOutOfBounds) throw new HttpError({ statusCode: 400, message: ErrorCode.BookingTimeOutOfBounds });
|
|
};
|
|
|
|
export const validateBookingTimeIsNotOutOfBounds = withReporting(
|
|
_validateBookingTimeIsNotOutOfBounds,
|
|
"validateBookingTimeIsNotOutOfBounds"
|
|
);
|