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";
|
|
|
|
import { getBusyVideoTimes } from "@calcom/core/videoClient";
|
|
|
|
import notEmpty from "@calcom/lib/notEmpty";
|
2022-06-10 18:38:46 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2022-05-12 01:49:21 +00:00
|
|
|
import type { EventBusyDate } from "@calcom/types/Calendar";
|
|
|
|
|
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;
|
|
|
|
const busyTimes: EventBusyDate[] = await prisma.booking
|
|
|
|
.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: {
|
|
|
|
startTime: true,
|
|
|
|
endTime: true,
|
|
|
|
},
|
|
|
|
})
|
2022-06-10 18:38:46 +00:00
|
|
|
.then((bookings) => bookings.map(({ startTime, endTime }) => ({ end: endTime, start: startTime })));
|
2022-05-12 01:49:21 +00:00
|
|
|
|
|
|
|
if (credentials) {
|
|
|
|
const calendarBusyTimes = await getBusyCalendarTimes(credentials, startTime, endTime, selectedCalendars);
|
2022-06-11 22:21:20 +00:00
|
|
|
console.log("calendarBusyTimes", calendarBusyTimes);
|
2022-05-12 01:49:21 +00:00
|
|
|
busyTimes.push(...calendarBusyTimes);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
return busyTimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default getBusyTimes;
|