2021-07-06 21:09:53 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import prisma from "../../../lib/prisma";
|
|
|
|
import { getBusyCalendarTimes } from "../../../lib/calendarClient";
|
|
|
|
import { getBusyVideoTimes } from "../../../lib/videoClient";
|
2021-06-15 16:19:00 +00:00
|
|
|
import dayjs from "dayjs";
|
2021-03-22 13:48:48 +00:00
|
|
|
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
2021-07-06 21:09:53 +00:00
|
|
|
const { user } = req.query;
|
|
|
|
|
|
|
|
const currentUser = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
username: user,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
credentials: true,
|
|
|
|
timeZone: true,
|
|
|
|
bufferTime: true,
|
|
|
|
id: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const selectedCalendars = await prisma.selectedCalendar.findMany({
|
|
|
|
where: {
|
|
|
|
userId: currentUser.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const hasCalendarIntegrations =
|
|
|
|
currentUser.credentials.filter((cred) => cred.type.endsWith("_calendar")).length > 0;
|
|
|
|
const hasVideoIntegrations =
|
|
|
|
currentUser.credentials.filter((cred) => cred.type.endsWith("_video")).length > 0;
|
|
|
|
|
|
|
|
const calendarAvailability = await getBusyCalendarTimes(
|
|
|
|
currentUser.credentials,
|
|
|
|
req.query.dateFrom,
|
|
|
|
req.query.dateTo,
|
|
|
|
selectedCalendars
|
|
|
|
);
|
|
|
|
const videoAvailability = await getBusyVideoTimes(
|
|
|
|
currentUser.credentials,
|
|
|
|
req.query.dateFrom,
|
|
|
|
req.query.dateTo
|
|
|
|
);
|
|
|
|
|
|
|
|
let commonAvailability = [];
|
|
|
|
|
|
|
|
if (hasCalendarIntegrations && hasVideoIntegrations) {
|
|
|
|
commonAvailability = calendarAvailability.filter((availability) =>
|
|
|
|
videoAvailability.includes(availability)
|
|
|
|
);
|
|
|
|
} else if (hasVideoIntegrations) {
|
|
|
|
commonAvailability = videoAvailability;
|
|
|
|
} else if (hasCalendarIntegrations) {
|
|
|
|
commonAvailability = calendarAvailability;
|
|
|
|
}
|
|
|
|
|
|
|
|
commonAvailability = commonAvailability.map((a) => ({
|
|
|
|
start: dayjs(a.start).subtract(currentUser.bufferTime, "minute").toString(),
|
|
|
|
end: dayjs(a.end).add(currentUser.bufferTime, "minute").toString(),
|
|
|
|
}));
|
|
|
|
|
|
|
|
res.status(200).json(commonAvailability);
|
2021-04-16 02:09:22 +00:00
|
|
|
}
|