cal.pub0.org/packages/core/getBusyTimes.ts

69 lines
2.2 KiB
TypeScript
Raw Normal View History

import { BookingStatus, Credential, SelectedCalendar } from "@prisma/client";
2022-05-12 01:49:21 +00:00
import { getBusyCalendarTimes } from "@calcom/core/CalendarManager";
2022-07-07 15:26:22 +00:00
import logger from "@calcom/lib/logger";
import { performance } from "@calcom/lib/server/perfObserver";
2022-06-10 18:38:46 +00:00
import prisma from "@calcom/prisma";
import type { EventBusyDetails } from "@calcom/types/Calendar";
2022-05-12 01:49:21 +00:00
2022-06-10 18:38:46 +00:00
export async function getBusyTimes(params: {
2022-05-12 01:49:21 +00:00
credentials: Credential[];
userId: number;
eventTypeId?: number;
startTime: string;
endTime: string;
selectedCalendars: SelectedCalendar[];
}) {
const { credentials, userId, eventTypeId, startTime, endTime, selectedCalendars } = params;
logger.silly(
`Checking Busy time from Cal Bookings in range ${startTime} to ${endTime} for input ${JSON.stringify({
userId,
eventTypeId,
status: BookingStatus.ACCEPTED,
})}`
);
2022-07-07 15:26:22 +00:00
const startPrismaBookingGet = performance.now();
const busyTimes: EventBusyDetails[] = await prisma.booking
2022-05-12 01:49:21 +00:00
.findMany({
where: {
userId,
eventTypeId,
startTime: { gte: new Date(startTime) },
endTime: { lte: new Date(endTime) },
status: {
in: [BookingStatus.ACCEPTED],
},
2022-05-12 01:49:21 +00:00
},
select: {
id: true,
2022-05-12 01:49:21 +00:00
startTime: true,
endTime: true,
title: true,
2022-05-12 01:49:21 +00:00
},
})
.then((bookings) =>
bookings.map(({ startTime, endTime, title, id }) => ({
end: endTime,
start: startTime,
title,
source: `eventType-${eventTypeId}-booking-${id}`,
}))
);
logger.silly(`Busy Time from Cal Bookings ${JSON.stringify(busyTimes)}`);
2022-07-07 15:26:22 +00:00
const endPrismaBookingGet = performance.now();
logger.debug(`prisma booking get took ${endPrismaBookingGet - startPrismaBookingGet}ms`);
if (credentials?.length > 0) {
2022-05-12 01:49:21 +00:00
const calendarBusyTimes = await getBusyCalendarTimes(credentials, startTime, endTime, selectedCalendars);
2022-06-12 21:32:55 +00:00
busyTimes.push(...calendarBusyTimes); /*
// TODO: Disabled until we can filter Zoom events by date. Also this is adding too much latency.
2022-05-12 01:49:21 +00:00
const videoBusyTimes = (await getBusyVideoTimes(credentials)).filter(notEmpty);
2022-06-11 22:21:20 +00:00
console.log("videoBusyTimes", videoBusyTimes);
2022-05-12 01:49:21 +00:00
busyTimes.push(...videoBusyTimes);
2022-06-12 21:32:55 +00:00
*/
2022-05-12 01:49:21 +00:00
}
return busyTimes;
}
export default getBusyTimes;