cal.pub0.org/pages/api/cancel.ts

66 lines
1.9 KiB
TypeScript
Raw Normal View History

2021-07-15 21:34:55 +00:00
import prisma from "../../lib/prisma";
import { deleteEvent } from "../../lib/calendarClient";
import async from "async";
import { deleteMeeting } from "../../lib/videoClient";
export default async function handler(req, res) {
if (req.method == "POST") {
const uid = req.body.uid;
const bookingToDelete = await prisma.booking.findFirst({
where: {
uid: uid,
},
select: {
id: true,
user: {
select: {
2021-07-15 21:34:55 +00:00
credentials: true,
},
},
attendees: true,
references: {
select: {
uid: true,
2021-07-15 21:34:55 +00:00
type: true,
},
},
},
});
const apiDeletes = async.mapLimit(bookingToDelete.user.credentials, 5, async (credential) => {
2021-07-18 14:03:59 +00:00
const bookingRefUid = bookingToDelete.references.filter((ref) => ref.type === credential.type)[0]?.uid;
if (bookingRefUid) {
if (credential.type.endsWith("_calendar")) {
return await deleteEvent(credential, bookingRefUid);
} else if (credential.type.endsWith("_video")) {
return await deleteMeeting(credential, bookingRefUid);
}
2021-06-14 17:00:17 +00:00
}
});
const attendeeDeletes = prisma.attendee.deleteMany({
where: {
2021-07-15 21:34:55 +00:00
bookingId: bookingToDelete.id,
},
});
const bookingReferenceDeletes = prisma.bookingReference.deleteMany({
where: {
2021-07-15 21:34:55 +00:00
bookingId: bookingToDelete.id,
},
});
const bookingDeletes = prisma.booking.delete({
where: {
id: bookingToDelete.id,
},
});
2021-07-15 21:34:55 +00:00
await Promise.all([apiDeletes, attendeeDeletes, bookingReferenceDeletes, bookingDeletes]);
//TODO Perhaps send emails to user and client to tell about the cancellation
2021-07-15 21:34:55 +00:00
res.status(200).json({ message: "Booking successfully deleted." });
} else {
2021-07-15 21:34:55 +00:00
res.status(405).json({ message: "This endpoint only accepts POST requests." });
}
2021-07-15 21:34:55 +00:00
}