* Add endpoints for testing the flow * Add MVP * new route * Fixes * Fixes * Remove enable toggle support from domainWideDelegation * Fixes * Revert "Remove enable toggle support from domainWideDelegation" This reverts commit c29e729206cd1fa063f9c9ce0cf148ef1577d60b. * Revert yarn.lock * More fixes * Fix new workspace platform add * refactor: improvements * refactor: bug fixes and improvements * fix: type errors * fix: conflicts * chore: update test * fix: logic * chore: improvements * fix: toglle * fix: bugs * fix: type err * chore: check number type * fix: after conflicts * chore: fix type err * fix: type errors and tests * fix: tets * test * chore: remove unused * fix: google meet url on booking page and secondary calendar * fix: add property * fix: type err * fix: re assingment bug * fix: use getAllCredentials * chore: fix import * fix: installed count * fix: pass event type * fix: import * fix: [Stacked PR] Review fixes (#17958) * Review fixes * fix: destination calendar bug --------- Co-authored-by: Udit Takkar <udit222001@gmail.com> * refactor: use repository * chore: remove duplicate * fix: More review fixes for domain wide delegation (#17969) * Reuse buildCredentialPayloadForCalendar * fixes --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> * fix ts error * Fix getSchedule not using dwd credentials (#17995) * fix: Remove direct DWD table access from google-calendar and remove delegatedToId column from Credential (#18015) * Remove fn rename to reduce number of files changed * chore: check feature globally * test: add unit tests * chore: move function * test: add booking test * wip * Remove domain-wide-delegation team feature flag * Make sure duplicate calendars are not shown due to DWD. Show DWD when there is conflict * Fix tests and their ts errors * Fix more tests * Move findUsersForAvailabilityCheck to separate file as it has AppStore dependency causing problem with Routing Forms. Build crashes * fix: Multiple calendar connections from Google not showing up in apps/installed * DestinationCalendar must have either credentialId or domainWideDeelgationId. Also handle the case when DWD is disabled and there was a non-dwd credential that could be used * Disable deletetion of DWD as it is destructive and prefer disabling instead * Show DWD credential calendars at the top * Fixed tests * Calendar Cache DWD support * Self-Review: Verify email required and add more selectedCalendar tests * Self Review: shorten names * Self ReviewL Dead code removal * Revert "Calendar Cache DWD support" This reverts commit 009f236470fa21eba5986117d4f6e4d4c5e38c34. * Some misc fixes * fixes * Performance improvememt in slots loading and booking * More cases for handling dwd credentials * simplify the logic. Ensure that EventManager and the modules below it in the flow have CredentialForCalendarService available * Fix tests * Fix installed/conferencing not showing gogole meet * Shorten name * Fix ApI v2 tests * Add some more tests * add getSchedule tests * Improve tests * Make Google Meet default when DWD for google is enabled * Enable feature flagging for DWD * chore: bump libraries * Encrypt serviceaccount private key * Fix ts errors * bump platform libraries * org add dwd * org add dwd * bump platform libraries * fix selected calendars * fix remove selected dwd calendar * remove oauthclient id aliad in authedCalendar * remove oauthclient id aliad in authedCalendar * refactor: OrganizationsDwdController * chore: export toggleDwdEnabled from platform-libraries * feat: v2 update (enable / disable) dwd * refactor: SelectedCalendarsController check if user belongs to dwd org & for not dwd use previous logic * wip: DestinationCalendar send domainWideDelegationCredentialId from frontend to api * try fix set destination calendar api v2 * fixup! try fix set destination calendar api v2 * setting google meet as default location working for dwd * bump platform libraries version * allow office 365 workspace slug * allow office 365 workspace slug * chore: v2 create dwd MS and Google service keys input * fix: CreateDwdInput serviceAccountKey * fix: CredentialForCalendarService type * fix: check workspace slug * feat: update serviceAccessKey of DWD * testing * fixup! testing * fix: getAuthUtl bug * fix: unit tests * fix: type err and unit test * fix: e2e test * fix: credentials bug and failing unit tests * Update CalendarService.ts * chore: refactor office365 calendar service and add testDomainWideDelegationSetup * fix: office365Calendar use correct clientId/Secret for DWD * fix: office365Calendar dwd no need refresh token * test: add unit test for outlook dwd and setup * feat: added dwd support for office365 calendar * feat: added dwd support for office365 video * test: finish test for outlook dwd * fix: create dialog bug * chore: remove console logs * fix: refreshToken bug * bump version libraries * refactor: fetch dwd credentials only in findQualifiedHosts * fixup! refactor: fetch dwd credentials only in findQualifiedHosts * fix: type err * fix: type err * fix: getUserDisplayName * fix: unit test * chore: bump platform lib --------- Co-authored-by: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Udit Takkar <udit222001@gmail.com> Co-authored-by: Morgan Vernay <morgan@cal.com> Co-authored-by: supalarry <laurisskraucis@gmail.com> Co-authored-by: Somay Chauhan <somaychauhan98@gmail.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com>
284 lines
12 KiB
TypeScript
284 lines
12 KiB
TypeScript
import type { TDependencyData } from "@calcom/app-store/_appRegistry";
|
|
import { getCalendar } from "@calcom/app-store/_utils/getCalendar";
|
|
import { CalendarService } from "@calcom/app-store/applecalendar/lib";
|
|
import { CalendarService as IcsFeedCalendarService } from "@calcom/app-store/ics-feedcalendar/lib";
|
|
import type { CredentialOwner } from "@calcom/app-store/types";
|
|
import { getAppFromSlug } from "@calcom/app-store/utils";
|
|
import type { CredentialDataWithTeamName, LocationOption } from "@calcom/app-store/utils";
|
|
import getApps from "@calcom/app-store/utils";
|
|
import AttendeeCancelledEmail from "@calcom/emails/templates/attendee-cancelled-email";
|
|
import AttendeeDeclinedEmail from "@calcom/emails/templates/attendee-declined-email";
|
|
import AttendeeRequestEmail from "@calcom/emails/templates/attendee-request-email";
|
|
import AttendeeRescheduledEmail from "@calcom/emails/templates/attendee-rescheduled-email";
|
|
import AttendeeScheduledEmail from "@calcom/emails/templates/attendee-scheduled-email";
|
|
import AttendeeUpdatedEmail from "@calcom/emails/templates/attendee-updated-email";
|
|
import OrganizerCancelledEmail from "@calcom/emails/templates/organizer-cancelled-email";
|
|
import OrganizerReassignedEmail from "@calcom/emails/templates/organizer-reassigned-email";
|
|
import OrganizerRequestEmail from "@calcom/emails/templates/organizer-request-email";
|
|
import OrganizerRescheduledEmail from "@calcom/emails/templates/organizer-rescheduled-email";
|
|
import OrganizerScheduledEmail from "@calcom/emails/templates/organizer-scheduled-email";
|
|
import { getBookingForReschedule } from "@calcom/features/bookings/lib/get-booking";
|
|
import { getBookingFieldsWithSystemFields } from "@calcom/features/bookings/lib/getBookingFields";
|
|
import getBookingInfo from "@calcom/features/bookings/lib/getBookingInfo";
|
|
import handleCancelBooking from "@calcom/features/bookings/lib/handleCancelBooking";
|
|
import * as newBookingMethods from "@calcom/features/bookings/lib/handleNewBooking";
|
|
import handleDeleteCredential from "@calcom/features/credentials/handleDeleteCredential";
|
|
import { getClientSecretFromPayment } from "@calcom/features/ee/payments/pages/getClientSecretFromPayment";
|
|
import { getPublicEvent } from "@calcom/features/eventtypes/lib/getPublicEvent";
|
|
import { handleCreatePhoneCall } from "@calcom/features/handleCreatePhoneCall";
|
|
import handleMarkNoShow from "@calcom/features/handleMarkNoShow";
|
|
import * as instantMeetingMethods from "@calcom/features/instant-meeting/handleInstantMeeting";
|
|
import getEnabledAppsFromCredentials from "@calcom/lib/apps/getEnabledAppsFromCredentials";
|
|
import getAllUserBookings from "@calcom/lib/bookings/getAllUserBookings";
|
|
import { symmetricEncrypt, symmetricDecrypt } from "@calcom/lib/crypto";
|
|
import {
|
|
getFirstDwdConferencingCredentialAppLocation,
|
|
getFirstDwdConferencingCredential,
|
|
getDwdOrRegularCredential,
|
|
getDwdOrFindRegularCredential,
|
|
enrichUserWithDwdConferencingCredentialsWithoutOrgId,
|
|
enrichUserWithDwdCredentialsWithoutOrgId,
|
|
enrichHostsWithDwdCredentials,
|
|
enrichUsersWithDwdCredentials,
|
|
buildAllCredentials,
|
|
getAllDwdCredentialsForUserByAppSlug,
|
|
getAllDwdCredentialsForUserByAppType,
|
|
checkIfSuccessfullyConfiguredInWorkspace,
|
|
} from "@calcom/lib/domainWideDelegation/server";
|
|
import getBulkEventTypes from "@calcom/lib/event-types/getBulkEventTypes";
|
|
import { getRoutedUrl } from "@calcom/lib/server/getRoutedUrl";
|
|
import { getTeamMemberEmailForResponseOrContactUsingUrlQuery } from "@calcom/lib/server/getTeamMemberEmailFromCrm";
|
|
import { getTranslation } from "@calcom/lib/server/i18n";
|
|
import { MembershipRole } from "@calcom/prisma/enums";
|
|
import { credentialForCalendarServiceSelect } from "@calcom/prisma/selects/credential";
|
|
import { paymentDataSelect } from "@calcom/prisma/selects/payment";
|
|
import type { TeamQuery } from "@calcom/trpc/server/routers/loggedInViewer/integrations.handler";
|
|
import { updateHandler as updateScheduleHandler } from "@calcom/trpc/server/routers/viewer/availability/schedule/update.handler";
|
|
import addDwd from "@calcom/trpc/server/routers/viewer/domainWideDelegation/add.handler";
|
|
import { getAvailableSlots } from "@calcom/trpc/server/routers/viewer/slots/util";
|
|
import {
|
|
createNewUsersConnectToOrgIfExists,
|
|
sendSignupToOrganizationEmail,
|
|
} from "@calcom/trpc/server/routers/viewer/teams/inviteMember/utils";
|
|
import type { App } from "@calcom/types/App";
|
|
import type { CredentialPayload } from "@calcom/types/Credential";
|
|
|
|
export { getUsersCredentials } from "@calcom/lib/server/getUsersCredentials";
|
|
|
|
export { getApps };
|
|
|
|
export {
|
|
getFirstDwdConferencingCredentialAppLocation,
|
|
getFirstDwdConferencingCredential,
|
|
getDwdOrRegularCredential,
|
|
getDwdOrFindRegularCredential,
|
|
enrichUserWithDwdConferencingCredentialsWithoutOrgId,
|
|
enrichUserWithDwdCredentialsWithoutOrgId,
|
|
enrichHostsWithDwdCredentials,
|
|
enrichUsersWithDwdCredentials,
|
|
buildAllCredentials,
|
|
getAllDwdCredentialsForUserByAppSlug,
|
|
getAllDwdCredentialsForUserByAppType,
|
|
checkIfSuccessfullyConfiguredInWorkspace,
|
|
};
|
|
|
|
export { slugify } from "@calcom/lib/slugify";
|
|
export { getBookingForReschedule };
|
|
export { updateScheduleHandler };
|
|
export type UpdateScheduleOutputType = Awaited<
|
|
ReturnType<
|
|
typeof import("@calcom/trpc/server/routers/viewer/availability/schedule/update.handler").updateHandler
|
|
>
|
|
>;
|
|
|
|
export { getEventTypeById } from "@calcom/lib/event-types/getEventTypeById";
|
|
export { getEventTypesByViewer } from "@calcom/lib/event-types/getEventTypesByViewer";
|
|
export { getEventTypesPublic } from "@calcom/lib/event-types/getEventTypesPublic";
|
|
export { createHandler as createEventType } from "@calcom/trpc/server/routers/viewer/eventTypes/create.handler";
|
|
export { updateHandler as updateEventType } from "@calcom/trpc/server/routers/viewer/eventTypes/update.handler";
|
|
|
|
export { SchedulingType, PeriodType } from "@calcom/prisma/enums";
|
|
|
|
export type { EventType } from "@calcom/lib/event-types/getEventTypeById";
|
|
export type { EventTypesByViewer } from "@calcom/lib/event-types/getEventTypesByViewer";
|
|
export type { EventTypesPublic } from "@calcom/lib/event-types/getEventTypesPublic";
|
|
export type { UpdateEventTypeReturn } from "@calcom/trpc/server/routers/viewer/eventTypes/update.handler";
|
|
|
|
export type PublicEventType = Awaited<ReturnType<typeof getPublicEvent>>;
|
|
export { getPublicEvent };
|
|
export { getUsernameList } from "@calcom/lib/defaultEvents";
|
|
|
|
const handleNewBooking = newBookingMethods.default;
|
|
export { handleNewBooking };
|
|
const handleInstantMeeting = instantMeetingMethods.default;
|
|
export { handleInstantMeeting };
|
|
|
|
export { handleMarkNoShow };
|
|
export { handleCreatePhoneCall };
|
|
|
|
export { getAvailableSlots };
|
|
export type AvailableSlotsType = Awaited<ReturnType<typeof getAvailableSlots>>;
|
|
export { handleNewRecurringBooking } from "@calcom/features/bookings/lib/handleNewRecurringBooking";
|
|
|
|
export { getConnectedDestinationCalendarsAndEnsureDefaultsInDb } from "@calcom/lib/getConnectedDestinationCalendars";
|
|
export type { ConnectedDestinationCalendars } from "@calcom/lib/getConnectedDestinationCalendars";
|
|
|
|
export { getConnectedApps } from "@calcom/lib/getConnectedApps";
|
|
export { bulkUpdateEventsToDefaultLocation } from "@calcom/lib/bulkUpdateEventsToDefaultLocation";
|
|
export type { ConnectedApps } from "@calcom/lib/getConnectedApps";
|
|
export { getBusyCalendarTimes } from "@calcom/core/CalendarManager";
|
|
|
|
export {
|
|
transformWorkingHoursForAtom,
|
|
transformAvailabilityForAtom,
|
|
transformDateOverridesForAtom,
|
|
transformApiScheduleAvailability,
|
|
transformApiScheduleOverrides,
|
|
} from "@calcom/lib/schedules/transformers";
|
|
|
|
export type {
|
|
BookingCreateBody,
|
|
BookingResponse,
|
|
RecurringBookingCreateBody,
|
|
} from "@calcom/features/bookings/types";
|
|
export { HttpError } from "@calcom/lib/http-error";
|
|
export type { AppsStatus } from "@calcom/types/Calendar";
|
|
|
|
export { MINUTES_TO_BOOK } from "@calcom/lib/constants";
|
|
|
|
export { cityTimezonesHandler } from "@calcom/features/cityTimezones/cityTimezonesHandler";
|
|
export type { CityTimezones } from "@calcom/features/cityTimezones/cityTimezonesHandler";
|
|
|
|
export { TRPCError } from "@trpc/server";
|
|
export type { TUpdateInputSchema } from "@calcom/trpc/server/routers/viewer/availability/schedule/update.schema";
|
|
export type { TUpdateInputSchema as TUpdateEventTypeInputSchema } from "@calcom/trpc/server/routers/viewer/eventTypes/update.schema";
|
|
export { createNewUsersConnectToOrgIfExists, sendSignupToOrganizationEmail };
|
|
|
|
export { getAllUserBookings };
|
|
export { getBookingInfo };
|
|
export { handleCancelBooking };
|
|
|
|
export { eventTypeBookingFields, eventTypeLocations } from "@calcom/prisma/zod-utils";
|
|
|
|
export { EventTypeMetaDataSchema, userMetadata, bookingMetadataSchema } from "@calcom/prisma/zod-utils";
|
|
|
|
export {
|
|
// note(Lauris): Api to internal
|
|
transformBookingFieldsApiToInternal,
|
|
transformLocationsApiToInternal,
|
|
transformIntervalLimitsApiToInternal,
|
|
transformFutureBookingLimitsApiToInternal,
|
|
transformRecurrenceApiToInternal,
|
|
transformBookerLayoutsApiToInternal,
|
|
transformConfirmationPolicyApiToInternal,
|
|
transformEventColorsApiToInternal,
|
|
transformSeatsApiToInternal,
|
|
// note(Lauris): Internal to api
|
|
transformBookingFieldsInternalToApi,
|
|
transformLocationsInternalToApi,
|
|
transformIntervalLimitsInternalToApi,
|
|
transformFutureBookingLimitsInternalToApi,
|
|
transformRecurrenceInternalToApi,
|
|
transformBookerLayoutsInternalToApi,
|
|
transformRequiresConfirmationInternalToApi,
|
|
transformEventTypeColorsInternalToApi,
|
|
transformSeatsInternalToApi,
|
|
// note(Lauris): schemas
|
|
InternalLocationsSchema,
|
|
InternalLocationSchema,
|
|
BookingFieldsSchema,
|
|
BookingFieldSchema,
|
|
// note(Lauris): constants
|
|
systemBeforeFieldName,
|
|
systemBeforeFieldEmail,
|
|
systemBeforeFieldLocation,
|
|
systemAfterFieldRescheduleReason,
|
|
systemAfterFieldTitle,
|
|
systemAfterFieldNotes,
|
|
systemAfterFieldGuests,
|
|
} from "@calcom/lib/event-types/transformers";
|
|
|
|
export type {
|
|
SystemField,
|
|
CustomField,
|
|
NameSystemField,
|
|
EmailSystemField,
|
|
InternalLocation,
|
|
} from "@calcom/lib/event-types/transformers";
|
|
|
|
export { parseBookingLimit, parseEventTypeColor } from "@calcom/lib";
|
|
|
|
export { parseRecurringEvent } from "@calcom/lib/isRecurringEvent";
|
|
export { dynamicEvent } from "@calcom/lib/defaultEvents";
|
|
|
|
export { symmetricEncrypt, symmetricDecrypt };
|
|
export { CalendarService };
|
|
|
|
export { getCalendar };
|
|
|
|
export { getTranslation };
|
|
|
|
export { updateNewTeamMemberEventTypes } from "@calcom/lib/server/queries";
|
|
|
|
export { roundRobinReassignment } from "@calcom/features/ee/round-robin/roundRobinReassignment";
|
|
export { roundRobinManualReassignment } from "@calcom/features/ee/round-robin/roundRobinManualReassignment";
|
|
|
|
export { ErrorCode } from "@calcom/lib/errorCodes";
|
|
|
|
export { IcsFeedCalendarService };
|
|
export { validateCustomEventName } from "@calcom/core/event";
|
|
export { getEnabledAppsFromCredentials };
|
|
export type { App };
|
|
export type { CredentialDataWithTeamName };
|
|
export type { LocationOption };
|
|
export type { TeamQuery };
|
|
export type { CredentialOwner };
|
|
export type { TDependencyData };
|
|
export type { CredentialPayload };
|
|
|
|
export { getAppFromSlug };
|
|
export { credentialForCalendarServiceSelect };
|
|
export { MembershipRole };
|
|
|
|
export { paymentDataSelect };
|
|
export { getClientSecretFromPayment };
|
|
|
|
export { confirmHandler as confirmBookingHandler } from "@calcom/trpc/server/routers/viewer/bookings/confirm.handler";
|
|
|
|
export { AttendeeScheduledEmail };
|
|
|
|
export { OrganizerScheduledEmail };
|
|
|
|
export { AttendeeDeclinedEmail };
|
|
|
|
export { AttendeeCancelledEmail };
|
|
|
|
export { OrganizerCancelledEmail };
|
|
|
|
export { OrganizerReassignedEmail };
|
|
|
|
export { OrganizerRescheduledEmail };
|
|
|
|
export { AttendeeRescheduledEmail };
|
|
|
|
export { AttendeeUpdatedEmail };
|
|
|
|
export { OrganizerRequestEmail };
|
|
|
|
export { AttendeeRequestEmail };
|
|
export { handleDeleteCredential };
|
|
export { getBulkEventTypes };
|
|
|
|
export { getBookingFieldsWithSystemFields };
|
|
|
|
export { getRoutedUrl };
|
|
|
|
export { getTeamMemberEmailForResponseOrContactUsingUrlQuery };
|
|
|
|
export { addDwd };
|
|
|
|
export { SelectedCalendarRepository } from "@calcom/lib/server/repository/selectedCalendar";
|
|
export { toggleDwdEnabled } from "@calcom/trpc/server/routers/viewer/domainWideDelegation/toggleEnabled.handler";
|
|
export { encryptServiceAccountKey } from "@calcom/lib/server/serviceAccountKey";
|
|
export { createHandler as createApiKeyHandler } from "@calcom/trpc/server/routers/viewer/apiKeys/create.handler";
|