25 lines
725 B
TypeScript
25 lines
725 B
TypeScript
import prisma from "@calcom/prisma";
|
|
|
|
export const getTotalBookingDuration = async ({
|
|
eventId,
|
|
startDate,
|
|
endDate,
|
|
}: {
|
|
eventId: number;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
}) => {
|
|
// Aggregates the total booking time for a given event in a given time period
|
|
// FIXME: bookings that overlap on one side will never be counted
|
|
const [totalBookingTime] = await prisma.$queryRaw<[{ totalMinutes: number | null }]>`
|
|
SELECT SUM(EXTRACT(EPOCH FROM ("endTime" - "startTime")) / 60) as "totalMinutes"
|
|
FROM "Booking"
|
|
WHERE "status" = 'accepted'
|
|
AND "eventTypeId" = ${eventId}
|
|
AND "startTime" >= ${startDate}
|
|
AND "endTime" <= ${endDate};
|
|
`;
|
|
|
|
return totalBookingTime.totalMinutes ?? 0;
|
|
};
|