* feat: split atoms endpoints and add public event type endpoint * Update ConnectedDestinationCalendars import path across platform/atoms components * refactor: update BookingResponse import path from platform-libraries to features/bookings * Move AvailableSlotsType to util.ts and update imports to use GetAvailableSlotsResponse * Refactor import path for RecurringBookingCreateBody type from libraries to types * Fix import path for getBookingForReschedule type from platform-libraries to features * Refactor PublicEventType export location and update import references * Remove @calcom/platform-libraries dependency from atoms package.json * chore(deps): update yarn.lock dependencies * Remove console.log statements and fix indentation in event type hooks * Migrate event type transformers from platform/libraries to api/v2 directory * Remove console.log * Update BookerPlatformWrapper.tsx * Add script to populate empty team slugs with slugified team names * Remove vitest imports * reset platform libraries version * Remove unused orgId comment from useAtomGetPublicEvent hook params * Update useApiV2AvailableSlots.ts * refactor: remove unused exports from lib package index file * Undo: @SomayChauhan Add script to populate empty team slugs with slugified team names * Update booking.tsx * chore: upgrade @calcom/platform-libraries from 0.0.202 to 0.0.205 * chore: bump @calcom/platform-libraries from 0.0.205 to 0.0.206 * chore: configure babel and jest for node module transpilation in api v2 * fix: type errors * Revert "chore: configure babel and jest for node module transpilation in api v2" This reverts commit b2cf172a84fe8953f9497bf6e43874f476fbc04b. * Update calendars.service.ts * chore: bump @calcom/platform-libraries from 0.0.208 to 0.0.209 * fix: add proper type definition for calendar busy times to resolve ts-expect-error * refactor: deprecate v2 old availability endpoints (#21075) Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> * chore: publish platform librareis * feat: add delegation credential fields to calendar service mock * chore: update @calcom/platform-libraries from 0.0.211 to 0.0.213 * fix: skip failing calendar integration test * chore: bump @calcom/platform-libraries from 0.0.213 to 0.0.214 * fix: api/v2 build error * fix: e2e tests --------- Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: supalarry <laurisskraucis@gmail.com> Co-authored-by: Lauris Skraucis <lauris.skraucis@gmail.com>
134 lines
3.8 KiB
TypeScript
134 lines
3.8 KiB
TypeScript
import { getAvailabilityFromSchedule } from "@calcom/lib/availability";
|
|
import { hasEditPermissionForUserID } from "@calcom/lib/hasEditPermissionForUser";
|
|
import { transformScheduleToAvailabilityForAtom } from "@calcom/lib/schedules/transformers/for-atom";
|
|
import type { PrismaClient } from "@calcom/prisma";
|
|
import type { TUpdateInputSchema } from "@calcom/trpc/server/routers/viewer/availability/schedule/update.schema";
|
|
import { setupDefaultSchedule } from "@calcom/trpc/server/routers/viewer/availability/util";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/types";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
interface IUpdateScheduleOptions {
|
|
input: TUpdateInputSchema;
|
|
user: Pick<NonNullable<TrpcSessionUser>, "id" | "defaultScheduleId" | "timeZone">;
|
|
prisma: PrismaClient;
|
|
}
|
|
|
|
export type UpdateScheduleResponse = Awaited<ReturnType<typeof updateSchedule>>;
|
|
|
|
export const updateSchedule = async ({ input, user, prisma }: IUpdateScheduleOptions) => {
|
|
const availability = input.schedule
|
|
? getAvailabilityFromSchedule(input.schedule)
|
|
: (input.dateOverrides || []).map((dateOverride) => ({
|
|
startTime: dateOverride.start,
|
|
endTime: dateOverride.end,
|
|
date: dateOverride.start,
|
|
days: [],
|
|
}));
|
|
|
|
// Not able to update the schedule with userId where clause, so fetch schedule separately and then validate
|
|
// Bug: https://github.com/prisma/prisma/issues/7290
|
|
const userSchedule = await prisma.schedule.findUnique({
|
|
where: {
|
|
id: input.scheduleId,
|
|
},
|
|
select: {
|
|
userId: true,
|
|
name: true,
|
|
id: true,
|
|
},
|
|
});
|
|
|
|
if (!userSchedule) {
|
|
throw new TRPCError({
|
|
code: "UNAUTHORIZED",
|
|
});
|
|
}
|
|
|
|
if (userSchedule?.userId !== user.id) {
|
|
const hasEditPermission = await hasEditPermissionForUserID({
|
|
ctx: {
|
|
user,
|
|
},
|
|
input: { memberId: userSchedule.userId },
|
|
});
|
|
if (!hasEditPermission) {
|
|
throw new TRPCError({
|
|
code: "UNAUTHORIZED",
|
|
});
|
|
}
|
|
}
|
|
|
|
let updatedUser;
|
|
if (input.isDefault) {
|
|
const setupDefault = await setupDefaultSchedule(user.id, input.scheduleId, prisma);
|
|
updatedUser = setupDefault;
|
|
}
|
|
|
|
if (!input.name) {
|
|
// TODO: Improve
|
|
// We don't want to pass the full schedule for just a set as default update
|
|
// but in the current logic, this wipes the existing availability.
|
|
// Return early to prevent this from happening.
|
|
return {
|
|
schedule: userSchedule,
|
|
isDefault: updatedUser
|
|
? updatedUser.defaultScheduleId === input.scheduleId
|
|
: user.defaultScheduleId === input.scheduleId,
|
|
};
|
|
}
|
|
|
|
const schedule = await prisma.schedule.update({
|
|
where: {
|
|
id: input.scheduleId,
|
|
},
|
|
data: {
|
|
timeZone: input.timeZone,
|
|
name: input.name,
|
|
availability: {
|
|
deleteMany: {
|
|
scheduleId: {
|
|
equals: input.scheduleId,
|
|
},
|
|
},
|
|
createMany: {
|
|
data: [
|
|
...availability,
|
|
...(input.dateOverrides || []).map((override) => ({
|
|
date: override.start,
|
|
startTime: override.start,
|
|
endTime: override.end,
|
|
})),
|
|
],
|
|
},
|
|
},
|
|
},
|
|
select: {
|
|
id: true,
|
|
userId: true,
|
|
name: true,
|
|
availability: true,
|
|
timeZone: true,
|
|
eventType: {
|
|
select: {
|
|
id: true,
|
|
eventName: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const userAvailability = transformScheduleToAvailabilityForAtom(schedule);
|
|
|
|
return {
|
|
schedule,
|
|
availability: userAvailability,
|
|
timeZone: schedule.timeZone || user.timeZone,
|
|
isDefault: updatedUser
|
|
? updatedUser.defaultScheduleId === schedule.id
|
|
: user.defaultScheduleId === schedule.id,
|
|
prevDefaultId: user.defaultScheduleId,
|
|
currentDefaultId: updatedUser ? updatedUser.defaultScheduleId : user.defaultScheduleId,
|
|
};
|
|
};
|