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);
Feat Booking Limits (#4759) * Add db relevant stuff * Basic UI there still buggy * This UI is hard - some progress * Fix awful state mangament * Fix re-ordering * Working UI logic! * Partical working minMax function * Fix min max * bookingLImits api + tests * Moved checkBookingLimits to backend only code * Fix httperror import * Return busy times * Remove avaliablity calc * Working for everything but year * Remove redundant + fix async forloop * Add compatible type * Future proof with evenTypeId filter * Fix commonjson * Sorting + validation + tests + passing * Add empty test * Move validation check to backend * Add bookinglimits in trpc * Add test for undefined * Apply suggestions from code review Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> * Update apps/web/components/v2/eventtype/EventLimitsTab.tsx Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> * Rename value for eligiability * Rename keyof type * status code * Fix toggle not toggling off * Update apps/web/pages/v2/event-types/[type]/index.tsx Co-authored-by: Omar López <zomars@me.com> * Update apps/web/pages/v2/event-types/[type]/index.tsx Co-authored-by: Omar López <zomars@me.com> * Change back to undefined as it is working for sean. See if it fails on testapp * Fixing test builder Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Leo Giovanetti <hello@leog.me>
2022-10-12 05:29:04 +00:00
busyTimes.push(...calendarBusyTimes); /*
2022-06-12 21:32:55 +00:00
// 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;