* 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>
56 lines
1.9 KiB
TypeScript
56 lines
1.9 KiB
TypeScript
import { getBookerBaseUrl } from "@calcom/features/ee/organizations/lib/getBookerUrlServer";
|
|
import logger from "@calcom/lib/logger";
|
|
import { safeStringify } from "@calcom/lib/safeStringify";
|
|
|
|
type BookingEventType = {
|
|
slug: string;
|
|
team: {
|
|
slug: string | null;
|
|
parentId: number | null;
|
|
} | null;
|
|
};
|
|
|
|
/**
|
|
* It has its profile always set and if organizationId is null, then username would be regular(non-org) username.
|
|
*/
|
|
type ProfileEnrichedBookingUser = {
|
|
profile: { organizationId: number | null; username: string | null };
|
|
} | null;
|
|
|
|
export function getOrganizationIdOfBooking(booking: {
|
|
eventType: BookingEventType;
|
|
profileEnrichedBookingUser: ProfileEnrichedBookingUser;
|
|
}) {
|
|
const { eventType, profileEnrichedBookingUser } = booking;
|
|
return eventType.team
|
|
? eventType.team.parentId
|
|
: (profileEnrichedBookingUser?.profile.organizationId ?? null);
|
|
}
|
|
|
|
export async function buildEventUrlFromBooking(booking: {
|
|
eventType: BookingEventType;
|
|
profileEnrichedBookingUser: ProfileEnrichedBookingUser;
|
|
dynamicGroupSlugRef: string | null;
|
|
}) {
|
|
const { eventType, dynamicGroupSlugRef, profileEnrichedBookingUser } = booking;
|
|
const eventSlug = eventType.slug;
|
|
const eventTeam = eventType.team;
|
|
const bookingOrganizationId = getOrganizationIdOfBooking({ eventType, profileEnrichedBookingUser });
|
|
|
|
const bookerUrl = await getBookerBaseUrl(bookingOrganizationId);
|
|
if (dynamicGroupSlugRef) {
|
|
return `${bookerUrl}/${dynamicGroupSlugRef}/${eventSlug}`;
|
|
}
|
|
|
|
if (eventTeam?.slug) {
|
|
return `${bookerUrl}/team/${eventTeam.slug}/${eventSlug}`;
|
|
}
|
|
|
|
const username = profileEnrichedBookingUser?.profile?.username;
|
|
if (!username) {
|
|
logger.error("No username found for booking user.", safeStringify({ profileEnrichedBookingUser }));
|
|
throw new Error("No username found for booking user.");
|
|
}
|
|
return `${bookerUrl}/${username}/${eventSlug}`;
|
|
}
|