* add event end time as variable
* add timezone as new variable
* add first version of template prefill
* set template body when template is updated
* set reminder template body and subject when creating workflow
* set email subject when changes templates
* save emailBody and emailsubject for all templates + fix duplicate template text
* add more flexibility for templates
* remove console.log
* fix {ORAGANIZER} and {ATTENDEE} variable
* make sure to always send reminder body and not default template
* fix import
* remove email body text and match variables in templates
* handle translations of formatted variables
* fix email reminder template
* add cancel and reschedule link as variable
* add cancel and reschedule link for scheduled emails/sms
* make sure empty empty body and subject are set for reminder template
* add info message for testing workflow
* fix typo
* add sms template
* add migration to remove reminderBody and emailSubject
* add branding
* code clean up
* add hide branding everywhere
* fix sms reminder template
* set sms reminder template if sms body is empty
* fix custom inputs variables everywhere
* fix variable translations + other small fixes
* fix some type errors
* fix more type errors
* fix everything missing around cron job scheduling
* make sure to always use custom template for sms messages
* fix type error
* code clean up
* rename link to url
* Add debug logs
* Update handleNewBooking.ts
* Add debug logs
* removed unneded responses
* fix booking questions + UI improvements
* remove html email body when changing to sms action
* code clean up + comments
* code clean up
* code clean up
* remove comment
* more clear info message for timezone variable
---------
Co-authored-by: CarinaWolli <wollencarina@gmail.com>
Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: alannnc <alannnc@gmail.com>
191 lines
6.0 KiB
TypeScript
191 lines
6.0 KiB
TypeScript
import type { Workflow, WorkflowsOnEventTypes, WorkflowStep } from "@prisma/client";
|
|
import { WorkflowActions, WorkflowTriggerEvents } from "@prisma/client";
|
|
import type { MailData } from "@sendgrid/helpers/classes/mail";
|
|
|
|
import { SENDER_ID, SENDER_NAME } from "@calcom/lib/constants";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
|
|
import { scheduleEmailReminder } from "./emailReminderManager";
|
|
import { scheduleSMSReminder } from "./smsReminderManager";
|
|
|
|
type ExtendedCalendarEvent = CalendarEvent & {
|
|
metadata?: { videoCallUrl: string | undefined };
|
|
eventType: { slug?: string };
|
|
};
|
|
|
|
export interface ScheduleWorkflowRemindersArgs {
|
|
workflows: (WorkflowsOnEventTypes & {
|
|
workflow: Workflow & {
|
|
steps: WorkflowStep[];
|
|
};
|
|
})[];
|
|
smsReminderNumber: string | null;
|
|
calendarEvent: ExtendedCalendarEvent;
|
|
requiresConfirmation?: boolean;
|
|
isRescheduleEvent?: boolean;
|
|
isFirstRecurringEvent?: boolean;
|
|
emailAttendeeSendToOverride?: string;
|
|
hideBranding?: boolean;
|
|
}
|
|
|
|
export const scheduleWorkflowReminders = async (args: ScheduleWorkflowRemindersArgs) => {
|
|
const {
|
|
workflows,
|
|
smsReminderNumber,
|
|
calendarEvent: evt,
|
|
requiresConfirmation = false,
|
|
isRescheduleEvent = false,
|
|
isFirstRecurringEvent = false,
|
|
emailAttendeeSendToOverride = "",
|
|
hideBranding,
|
|
} = args;
|
|
if (workflows.length > 0 && !requiresConfirmation) {
|
|
for (const workflowReference of workflows) {
|
|
if (workflowReference.workflow.steps.length === 0) continue;
|
|
|
|
const workflow = workflowReference.workflow;
|
|
if (
|
|
workflow.trigger === WorkflowTriggerEvents.BEFORE_EVENT ||
|
|
(workflow.trigger === WorkflowTriggerEvents.NEW_EVENT &&
|
|
!isRescheduleEvent &&
|
|
isFirstRecurringEvent) ||
|
|
(workflow.trigger === WorkflowTriggerEvents.RESCHEDULE_EVENT && isRescheduleEvent) ||
|
|
workflow.trigger === WorkflowTriggerEvents.AFTER_EVENT
|
|
) {
|
|
for (const step of workflow.steps) {
|
|
if (step.action === WorkflowActions.SMS_ATTENDEE || step.action === WorkflowActions.SMS_NUMBER) {
|
|
const sendTo = step.action === WorkflowActions.SMS_ATTENDEE ? smsReminderNumber : step.sendTo;
|
|
await scheduleSMSReminder(
|
|
evt,
|
|
sendTo,
|
|
workflow.trigger,
|
|
step.action,
|
|
{
|
|
time: workflow.time,
|
|
timeUnit: workflow.timeUnit,
|
|
},
|
|
step.reminderBody || "",
|
|
step.id,
|
|
step.template,
|
|
step.sender || SENDER_ID,
|
|
workflow.userId,
|
|
workflow.teamId,
|
|
step.numberVerificationPending
|
|
);
|
|
} else if (
|
|
step.action === WorkflowActions.EMAIL_ATTENDEE ||
|
|
step.action === WorkflowActions.EMAIL_HOST
|
|
) {
|
|
let sendTo = "";
|
|
|
|
switch (step.action) {
|
|
case WorkflowActions.EMAIL_HOST:
|
|
sendTo = evt.organizer?.email || "";
|
|
break;
|
|
case WorkflowActions.EMAIL_ATTENDEE:
|
|
sendTo = !!emailAttendeeSendToOverride
|
|
? emailAttendeeSendToOverride
|
|
: evt.attendees?.[0]?.email || "";
|
|
break;
|
|
}
|
|
|
|
await scheduleEmailReminder(
|
|
evt,
|
|
workflow.trigger,
|
|
step.action,
|
|
{
|
|
time: workflow.time,
|
|
timeUnit: workflow.timeUnit,
|
|
},
|
|
sendTo,
|
|
step.emailSubject || "",
|
|
step.reminderBody || "",
|
|
step.id,
|
|
step.template,
|
|
step.sender || SENDER_NAME,
|
|
hideBranding
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export interface SendCancelledRemindersArgs {
|
|
workflows: (WorkflowsOnEventTypes & {
|
|
workflow: Workflow & {
|
|
steps: WorkflowStep[];
|
|
};
|
|
})[];
|
|
smsReminderNumber: string | null;
|
|
evt: ExtendedCalendarEvent;
|
|
hideBranding?: boolean;
|
|
}
|
|
|
|
export const sendCancelledReminders = async (args: SendCancelledRemindersArgs) => {
|
|
const { workflows, smsReminderNumber, evt, hideBranding } = args;
|
|
|
|
if (workflows.length > 0) {
|
|
for (const workflowRef of workflows) {
|
|
const { workflow } = workflowRef;
|
|
|
|
if (workflow.trigger === WorkflowTriggerEvents.EVENT_CANCELLED) {
|
|
for (const step of workflow.steps) {
|
|
if (step.action === WorkflowActions.SMS_ATTENDEE || step.action === WorkflowActions.SMS_NUMBER) {
|
|
const sendTo = step.action === WorkflowActions.SMS_ATTENDEE ? smsReminderNumber : step.sendTo;
|
|
await scheduleSMSReminder(
|
|
evt,
|
|
sendTo,
|
|
workflow.trigger,
|
|
step.action,
|
|
{
|
|
time: workflow.time,
|
|
timeUnit: workflow.timeUnit,
|
|
},
|
|
step.reminderBody || "",
|
|
step.id,
|
|
step.template,
|
|
step.sender || SENDER_ID,
|
|
workflow.userId,
|
|
workflow.teamId,
|
|
step.numberVerificationPending
|
|
);
|
|
} else if (
|
|
step.action === WorkflowActions.EMAIL_ATTENDEE ||
|
|
step.action === WorkflowActions.EMAIL_HOST
|
|
) {
|
|
let sendTo: MailData["to"] = "";
|
|
|
|
switch (step.action) {
|
|
case WorkflowActions.EMAIL_HOST:
|
|
sendTo = evt.organizer.email;
|
|
break;
|
|
case WorkflowActions.EMAIL_ATTENDEE:
|
|
sendTo = evt.attendees.map((a) => a.email);
|
|
break;
|
|
}
|
|
|
|
await scheduleEmailReminder(
|
|
evt,
|
|
workflow.trigger,
|
|
step.action,
|
|
{
|
|
time: workflow.time,
|
|
timeUnit: workflow.timeUnit,
|
|
},
|
|
sendTo,
|
|
step.emailSubject || "",
|
|
step.reminderBody || "",
|
|
step.id,
|
|
step.template,
|
|
step.sender || SENDER_NAME,
|
|
hideBranding
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|