2022-06-06 16:54:47 +00:00
|
|
|
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";
|
2022-08-12 18:18:13 +00:00
|
|
|
import { performance } from "@calcom/lib/server/perfObserver";
|
2022-06-10 18:38:46 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2022-08-03 07:19:16 +00:00
|
|
|
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;
|
2022-07-21 16:44:23 +00:00
|
|
|
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();
|
2022-08-03 07:19:16 +00:00
|
|
|
const busyTimes: EventBusyDetails[] = await prisma.booking
|
2022-05-12 01:49:21 +00:00
|
|
|
.findMany({
|
|
|
|
where: {
|
2022-06-06 16:54:47 +00:00
|
|
|
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: {
|
2022-07-21 16:44:23 +00:00
|
|
|
id: true,
|
2022-05-12 01:49:21 +00:00
|
|
|
startTime: true,
|
|
|
|
endTime: true,
|
2022-08-03 07:19:16 +00:00
|
|
|
title: true,
|
2022-05-12 01:49:21 +00:00
|
|
|
},
|
|
|
|
})
|
2022-08-12 18:18:13 +00:00
|
|
|
.then((bookings) =>
|
2022-09-07 19:28:43 +00:00
|
|
|
bookings.map(({ startTime, endTime, title, id }) => ({
|
|
|
|
end: endTime,
|
|
|
|
start: startTime,
|
|
|
|
title,
|
|
|
|
source: `eventType-${eventTypeId}-booking-${id}`,
|
|
|
|
}))
|
2022-08-12 18:18:13 +00:00
|
|
|
);
|
2022-07-21 16:44:23 +00:00
|
|
|
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`);
|
2022-08-12 19:29:29 +00:00
|
|
|
if (credentials?.length > 0) {
|
2022-05-12 01:49:21 +00:00
|
|
|
const calendarBusyTimes = await getBusyCalendarTimes(credentials, startTime, endTime, selectedCalendars);
|
2022-07-27 19:12:42 +00:00
|
|
|
|
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;
|