2022-07-14 00:10:45 +00:00
|
|
|
/* Schedule any workflow reminder that falls within 72 hours for email */
|
2022-07-28 19:58:26 +00:00
|
|
|
import { WorkflowActions, WorkflowMethods, WorkflowTemplates } from "@prisma/client";
|
2022-07-14 00:10:45 +00:00
|
|
|
import client from "@sendgrid/client";
|
|
|
|
import sgMail from "@sendgrid/mail";
|
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
|
|
|
|
import dayjs from "@calcom/dayjs";
|
|
|
|
import { defaultHandler } from "@calcom/lib/server";
|
2022-07-28 19:58:26 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2023-03-10 14:28:42 +00:00
|
|
|
import type { Prisma, WorkflowReminder } from "@calcom/prisma/client";
|
2022-12-18 02:04:06 +00:00
|
|
|
import { bookingMetadataSchema } from "@calcom/prisma/zod-utils";
|
2022-07-14 00:10:45 +00:00
|
|
|
|
2023-03-10 14:28:42 +00:00
|
|
|
import type { VariablesType } from "../lib/reminders/templates/customTemplate";
|
|
|
|
import customTemplate from "../lib/reminders/templates/customTemplate";
|
2022-07-28 19:58:26 +00:00
|
|
|
import emailReminderTemplate from "../lib/reminders/templates/emailReminderTemplate";
|
2022-07-14 00:10:45 +00:00
|
|
|
|
|
|
|
const sendgridAPIKey = process.env.SENDGRID_API_KEY as string;
|
|
|
|
const senderEmail = process.env.SENDGRID_EMAIL as string;
|
|
|
|
|
|
|
|
sgMail.setApiKey(sendgridAPIKey);
|
|
|
|
|
|
|
|
async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
|
|
const apiKey = req.headers.authorization || req.query.apiKey;
|
|
|
|
if (process.env.CRON_API_KEY !== apiKey) {
|
|
|
|
res.status(401).json({ message: "Not authenticated" });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!process.env.SENDGRID_API_KEY || !process.env.SENDGRID_EMAIL) {
|
|
|
|
res.status(405).json({ message: "No SendGrid API key or email" });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//delete all scheduled email reminders where scheduled is past current date
|
|
|
|
await prisma.workflowReminder.deleteMany({
|
|
|
|
where: {
|
|
|
|
method: WorkflowMethods.EMAIL,
|
|
|
|
scheduledDate: {
|
|
|
|
lte: dayjs().toISOString(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2023-02-20 17:40:08 +00:00
|
|
|
//cancel reminders for cancelled/rescheduled bookings that are scheduled within the next hour
|
|
|
|
const remindersToCancel = await prisma.workflowReminder.findMany({
|
|
|
|
where: {
|
|
|
|
cancelled: true,
|
|
|
|
scheduledDate: {
|
|
|
|
lte: dayjs().add(1, "hour").toISOString(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
|
|
const workflowRemindersToDelete: Prisma.Prisma__WorkflowReminderClient<WorkflowReminder, never>[] = [];
|
|
|
|
|
|
|
|
for (const reminder of remindersToCancel) {
|
|
|
|
await client.request({
|
|
|
|
url: "/v3/user/scheduled_sends",
|
|
|
|
method: "POST",
|
|
|
|
body: {
|
|
|
|
batch_id: reminder.referenceId,
|
|
|
|
status: "cancel",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const workflowReminderToDelete = prisma.workflowReminder.delete({
|
|
|
|
where: {
|
|
|
|
id: reminder.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
workflowRemindersToDelete.push(workflowReminderToDelete);
|
|
|
|
}
|
|
|
|
await Promise.all(workflowRemindersToDelete);
|
|
|
|
} catch (error) {
|
|
|
|
console.log(`Error cancelling scheduled Emails: ${error}`);
|
|
|
|
}
|
|
|
|
|
2022-07-14 00:10:45 +00:00
|
|
|
//find all unscheduled Email reminders
|
|
|
|
const unscheduledReminders = await prisma.workflowReminder.findMany({
|
|
|
|
where: {
|
|
|
|
method: WorkflowMethods.EMAIL,
|
|
|
|
scheduled: false,
|
2022-12-02 13:43:07 +00:00
|
|
|
scheduledDate: {
|
|
|
|
lte: dayjs().add(72, "hour").toISOString(),
|
|
|
|
},
|
2022-07-14 00:10:45 +00:00
|
|
|
},
|
|
|
|
include: {
|
|
|
|
workflowStep: true,
|
|
|
|
booking: {
|
|
|
|
include: {
|
|
|
|
eventType: true,
|
|
|
|
user: true,
|
|
|
|
attendees: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-08-01 10:20:21 +00:00
|
|
|
if (!unscheduledReminders.length) {
|
|
|
|
res.status(200).json({ message: "No Emails to schedule" });
|
|
|
|
return;
|
|
|
|
}
|
2022-07-14 00:10:45 +00:00
|
|
|
|
2022-08-01 10:20:21 +00:00
|
|
|
for (const reminder of unscheduledReminders) {
|
2023-03-10 14:28:42 +00:00
|
|
|
if (!reminder.workflowStep || !reminder.booking) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-12-02 13:43:07 +00:00
|
|
|
try {
|
|
|
|
let sendTo;
|
|
|
|
|
|
|
|
switch (reminder.workflowStep.action) {
|
|
|
|
case WorkflowActions.EMAIL_HOST:
|
2023-03-10 14:28:42 +00:00
|
|
|
sendTo = reminder.booking.user?.email;
|
2022-12-02 13:43:07 +00:00
|
|
|
break;
|
|
|
|
case WorkflowActions.EMAIL_ATTENDEE:
|
2023-03-10 14:28:42 +00:00
|
|
|
sendTo = reminder.booking.attendees[0].email;
|
2022-12-02 13:43:07 +00:00
|
|
|
break;
|
|
|
|
case WorkflowActions.EMAIL_ADDRESS:
|
|
|
|
sendTo = reminder.workflowStep.sendTo;
|
|
|
|
}
|
|
|
|
|
|
|
|
const name =
|
|
|
|
reminder.workflowStep.action === WorkflowActions.EMAIL_ATTENDEE
|
2023-03-10 14:28:42 +00:00
|
|
|
? reminder.booking.attendees[0].name
|
|
|
|
: reminder.booking.user?.name;
|
2022-12-02 13:43:07 +00:00
|
|
|
|
|
|
|
const attendeeName =
|
|
|
|
reminder.workflowStep.action === WorkflowActions.EMAIL_ATTENDEE
|
2023-03-10 14:28:42 +00:00
|
|
|
? reminder.booking.user?.name
|
|
|
|
: reminder.booking.attendees[0].name;
|
2022-12-02 13:43:07 +00:00
|
|
|
|
|
|
|
const timeZone =
|
|
|
|
reminder.workflowStep.action === WorkflowActions.EMAIL_ATTENDEE
|
2023-03-10 14:28:42 +00:00
|
|
|
? reminder.booking.attendees[0].timeZone
|
|
|
|
: reminder.booking.user?.timeZone;
|
2022-12-02 13:43:07 +00:00
|
|
|
|
2023-02-08 17:06:25 +00:00
|
|
|
const locale =
|
|
|
|
reminder.workflowStep.action === WorkflowActions.EMAIL_ATTENDEE ||
|
|
|
|
reminder.workflowStep.action === WorkflowActions.SMS_ATTENDEE
|
2023-03-10 14:28:42 +00:00
|
|
|
? reminder.booking.attendees[0].locale
|
|
|
|
: reminder.booking.user?.locale;
|
2023-02-08 17:06:25 +00:00
|
|
|
|
2022-12-02 13:43:07 +00:00
|
|
|
let emailContent = {
|
|
|
|
emailSubject: reminder.workflowStep.emailSubject || "",
|
|
|
|
emailBody: {
|
|
|
|
text: reminder.workflowStep.reminderBody || "",
|
|
|
|
html: `<body style="white-space: pre-wrap;">${reminder.workflowStep.reminderBody || ""}</body>`,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (reminder.workflowStep.template) {
|
|
|
|
case WorkflowTemplates.REMINDER:
|
|
|
|
emailContent = emailReminderTemplate(
|
2023-03-10 14:28:42 +00:00
|
|
|
reminder.booking.startTime.toISOString() || "",
|
|
|
|
reminder.booking.endTime.toISOString() || "",
|
|
|
|
reminder.booking.eventType?.title || "",
|
2022-12-02 13:43:07 +00:00
|
|
|
timeZone || "",
|
|
|
|
attendeeName || "",
|
|
|
|
name || ""
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case WorkflowTemplates.CUSTOM:
|
|
|
|
const variables: VariablesType = {
|
|
|
|
eventName: reminder.booking?.eventType?.title || "",
|
2023-03-10 14:28:42 +00:00
|
|
|
organizerName: reminder.booking.user?.name || "",
|
|
|
|
attendeeName: reminder.booking.attendees[0].name,
|
|
|
|
attendeeEmail: reminder.booking.attendees[0].email,
|
|
|
|
eventDate: dayjs(reminder.booking.startTime).tz(timeZone),
|
|
|
|
eventTime: dayjs(reminder.booking.startTime).tz(timeZone),
|
2022-12-02 13:43:07 +00:00
|
|
|
timeZone: timeZone,
|
2023-03-10 14:28:42 +00:00
|
|
|
location: reminder.booking.location || "",
|
|
|
|
additionalNotes: reminder.booking.description,
|
2023-03-20 19:08:14 +00:00
|
|
|
responses: reminder.booking.responses,
|
2023-03-10 14:28:42 +00:00
|
|
|
meetingUrl: bookingMetadataSchema.parse(reminder.booking.metadata || {})?.videoCallUrl,
|
2022-12-02 13:43:07 +00:00
|
|
|
};
|
|
|
|
const emailSubject = await customTemplate(
|
|
|
|
reminder.workflowStep.emailSubject || "",
|
|
|
|
variables,
|
2023-02-08 17:06:25 +00:00
|
|
|
locale || ""
|
2022-12-02 13:43:07 +00:00
|
|
|
);
|
|
|
|
emailContent.emailSubject = emailSubject.text;
|
|
|
|
emailContent.emailBody = await customTemplate(
|
|
|
|
reminder.workflowStep.reminderBody || "",
|
|
|
|
variables,
|
2023-02-08 17:06:25 +00:00
|
|
|
locale || ""
|
2022-12-02 13:43:07 +00:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (emailContent.emailSubject.length > 0 && emailContent.emailBody.text.length > 0 && sendTo) {
|
|
|
|
const batchIdResponse = await client.request({
|
|
|
|
url: "/v3/mail/batch",
|
|
|
|
method: "POST",
|
|
|
|
});
|
|
|
|
|
|
|
|
const batchId = batchIdResponse[1].batch_id;
|
|
|
|
|
2022-12-16 22:58:43 +00:00
|
|
|
if (reminder.workflowStep.action !== WorkflowActions.EMAIL_ADDRESS) {
|
|
|
|
await sgMail.send({
|
|
|
|
to: sendTo,
|
2023-01-18 14:32:39 +00:00
|
|
|
from: {
|
|
|
|
email: senderEmail,
|
|
|
|
name: reminder.workflowStep.sender || "Cal.com",
|
|
|
|
},
|
2022-12-16 22:58:43 +00:00
|
|
|
subject: emailContent.emailSubject,
|
|
|
|
text: emailContent.emailBody.text,
|
|
|
|
html: emailContent.emailBody.html,
|
|
|
|
batchId: batchId,
|
|
|
|
sendAt: dayjs(reminder.scheduledDate).unix(),
|
2023-03-10 14:28:42 +00:00
|
|
|
replyTo: reminder.booking.user?.email || senderEmail,
|
2022-12-16 22:58:43 +00:00
|
|
|
});
|
|
|
|
}
|
2022-12-02 13:43:07 +00:00
|
|
|
|
|
|
|
await prisma.workflowReminder.update({
|
|
|
|
where: {
|
|
|
|
id: reminder.id,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
scheduled: true,
|
|
|
|
referenceId: batchId,
|
2022-07-21 18:56:20 +00:00
|
|
|
},
|
2022-12-02 13:43:07 +00:00
|
|
|
});
|
2022-07-14 00:10:45 +00:00
|
|
|
}
|
2022-12-02 13:43:07 +00:00
|
|
|
} catch (error) {
|
|
|
|
console.log(`Error scheduling Email with error ${error}`);
|
2022-07-14 00:10:45 +00:00
|
|
|
}
|
2022-08-01 10:20:21 +00:00
|
|
|
}
|
|
|
|
res.status(200).json({ message: "Emails scheduled" });
|
2022-07-14 00:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default defaultHandler({
|
|
|
|
POST: Promise.resolve({ default: handler }),
|
|
|
|
});
|