* 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>
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
import { BookingStatus, Credential, SelectedCalendar } from "@prisma/client";
|
|
|
|
import { getBusyCalendarTimes } from "@calcom/core/CalendarManager";
|
|
import logger from "@calcom/lib/logger";
|
|
import { performance } from "@calcom/lib/server/perfObserver";
|
|
import prisma from "@calcom/prisma";
|
|
import type { EventBusyDetails } from "@calcom/types/Calendar";
|
|
|
|
export async function getBusyTimes(params: {
|
|
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,
|
|
})}`
|
|
);
|
|
const startPrismaBookingGet = performance.now();
|
|
const busyTimes: EventBusyDetails[] = await prisma.booking
|
|
.findMany({
|
|
where: {
|
|
userId,
|
|
eventTypeId,
|
|
startTime: { gte: new Date(startTime) },
|
|
endTime: { lte: new Date(endTime) },
|
|
status: {
|
|
in: [BookingStatus.ACCEPTED],
|
|
},
|
|
},
|
|
select: {
|
|
id: true,
|
|
startTime: true,
|
|
endTime: true,
|
|
title: true,
|
|
},
|
|
})
|
|
.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)}`);
|
|
const endPrismaBookingGet = performance.now();
|
|
logger.debug(`prisma booking get took ${endPrismaBookingGet - startPrismaBookingGet}ms`);
|
|
if (credentials?.length > 0) {
|
|
const calendarBusyTimes = await getBusyCalendarTimes(credentials, startTime, endTime, selectedCalendars);
|
|
|
|
busyTimes.push(...calendarBusyTimes); /*
|
|
// TODO: Disabled until we can filter Zoom events by date. Also this is adding too much latency.
|
|
const videoBusyTimes = (await getBusyVideoTimes(credentials)).filter(notEmpty);
|
|
console.log("videoBusyTimes", videoBusyTimes);
|
|
busyTimes.push(...videoBusyTimes);
|
|
*/
|
|
}
|
|
return busyTimes;
|
|
}
|
|
|
|
export default getBusyTimes;
|