* Add akismet package to tasker * Create scanWorkflowBody task * Schedule workflow body scan * Add AKISMET_API_KEY .env * Auto lock user if spam is detected * Uncommit key * Add safe param to workflow step * Migration for safe field * Do not process workflow steps is `safe` is false * Update migration to set previous records to true * Address comments * Refactor `scheduleWorkflowNotifications` to accept an object * If new steps or editing old ones send to tasker * Call `scheduleWorkflowNotifications` in task * Fix `IS_SELF_HOSTED` * Remove unused function * Make `safe` optional in schema * Type fix * Revert "Make `safe` optional in schema" This reverts commit d0964702affa87c35562300301473d25635c565b. * Revert "Type fix" This reverts commit d9a031303269a2994ae46f576ab2a3d31e4d977b. * Type fixes * Type fixes * Address comments * Fix tests * Add tests * Update tests * Typo fix * Update `safe` to `verifiedAt` * feat: Compare workflow reminder bodies to default template (#19060) * Add `getTemplateForAction` function * Use `getTemplateForAction` when creating a new step * Use `getTemplateForAction` when action changes * Have `emailReminderTemplate` accept an object as a param * Rename `getTemplateForAction` to `getTemplateBodyForAction` * Simplify changing body when changing templates * Create `compareReminderBodyToTemplate` * In task, compare if reminderBody is a template * Linting * Add tests * refactor: `emailReminderTemplate` to accept object as param (#19288) * Add `getTemplateForAction` function * Use `getTemplateForAction` when creating a new step * Use `getTemplateForAction` when action changes * Have `emailReminderTemplate` accept an object as a param * Rename `getTemplateForAction` to `getTemplateBodyForAction` * Simplify changing body when changing templates * Create `compareReminderBodyToTemplate` * In task, compare if reminderBody is a template * Linting * Add tests * Refactor `scheduleEmailReminders` * Refactor `create.handler` for new workflows * Refactor `emailReminderManager` * Refactor `getEmailTemplateText` * Fix typo * Type fix - whatsapp plain text template imports * Type fix - no template found * Type fix - add `isBrandingDisabled` to `emailReminderTemplate` * Add workflow and user to prisma mock * Fix imports for akismet dependencies * Record user lock reason * Undo linting changes * Fix tests * New workflow, at verify created step * Handle if `SCANNING_WORKFLOW_STEPS` is toggled * Move `verifiedAt` checks to specific schedule functions - `scheduleWhatsappReminder` - `scheduleEmailReminder` - `scheduleSMSReminder` * Update logic * Do not fallback verifiedAt * Add comment to next.config.js
137 lines
4.2 KiB
TypeScript
137 lines
4.2 KiB
TypeScript
import type { WorkflowTriggerEvents } from "@prisma/client";
|
|
|
|
import type { TimeFormat } from "@calcom/lib/timeFormat";
|
|
import { WorkflowActions, WorkflowTemplates } from "@calcom/prisma/enums";
|
|
|
|
import {
|
|
whatsappEventCancelledTemplate,
|
|
whatsappEventCompletedTemplate,
|
|
whatsappEventRescheduledTemplate,
|
|
whatsappReminderTemplate,
|
|
} from "../lib/reminders/templates/whatsapp";
|
|
import emailRatingTemplate from "./reminders/templates/emailRatingTemplate";
|
|
import emailReminderTemplate from "./reminders/templates/emailReminderTemplate";
|
|
import smsReminderTemplate from "./reminders/templates/smsReminderTemplate";
|
|
|
|
export function shouldScheduleEmailReminder(action: WorkflowActions) {
|
|
return action === WorkflowActions.EMAIL_ATTENDEE || action === WorkflowActions.EMAIL_HOST;
|
|
}
|
|
|
|
export function shouldScheduleSMSReminder(action: WorkflowActions) {
|
|
return action === WorkflowActions.SMS_ATTENDEE || action === WorkflowActions.SMS_NUMBER;
|
|
}
|
|
|
|
export function isSMSAction(action: WorkflowActions) {
|
|
return action === WorkflowActions.SMS_ATTENDEE || action === WorkflowActions.SMS_NUMBER;
|
|
}
|
|
|
|
export function isWhatsappAction(action: WorkflowActions) {
|
|
return action === WorkflowActions.WHATSAPP_NUMBER || action === WorkflowActions.WHATSAPP_ATTENDEE;
|
|
}
|
|
|
|
export function isSMSOrWhatsappAction(action: WorkflowActions) {
|
|
return isSMSAction(action) || isWhatsappAction(action);
|
|
}
|
|
|
|
export function isEmailAction(action: WorkflowActions) {
|
|
return (
|
|
action === WorkflowActions.EMAIL_ADDRESS ||
|
|
action === WorkflowActions.EMAIL_ATTENDEE ||
|
|
action === WorkflowActions.EMAIL_HOST
|
|
);
|
|
}
|
|
|
|
export function isAttendeeAction(action: WorkflowActions) {
|
|
return (
|
|
action === WorkflowActions.SMS_ATTENDEE ||
|
|
action === WorkflowActions.EMAIL_ATTENDEE ||
|
|
action === WorkflowActions.WHATSAPP_ATTENDEE
|
|
);
|
|
}
|
|
|
|
export function isEmailToAttendeeAction(action: WorkflowActions) {
|
|
return action === WorkflowActions.EMAIL_ATTENDEE;
|
|
}
|
|
|
|
export function isTextMessageToSpecificNumber(action?: WorkflowActions) {
|
|
return action === WorkflowActions.SMS_NUMBER || action === WorkflowActions.WHATSAPP_NUMBER;
|
|
}
|
|
|
|
export function getWhatsappTemplateForTrigger(trigger: WorkflowTriggerEvents): WorkflowTemplates {
|
|
switch (trigger) {
|
|
case "NEW_EVENT":
|
|
case "BEFORE_EVENT":
|
|
return WorkflowTemplates.REMINDER;
|
|
case "AFTER_EVENT":
|
|
return WorkflowTemplates.COMPLETED;
|
|
case "EVENT_CANCELLED":
|
|
return WorkflowTemplates.CANCELLED;
|
|
case "RESCHEDULE_EVENT":
|
|
return WorkflowTemplates.RESCHEDULED;
|
|
default:
|
|
return WorkflowTemplates.REMINDER;
|
|
}
|
|
}
|
|
|
|
export function getWhatsappTemplateFunction(template?: WorkflowTemplates): typeof whatsappReminderTemplate {
|
|
switch (template) {
|
|
case "CANCELLED":
|
|
return whatsappEventCancelledTemplate;
|
|
case "COMPLETED":
|
|
return whatsappEventCompletedTemplate;
|
|
case "RESCHEDULED":
|
|
return whatsappEventRescheduledTemplate;
|
|
case "CUSTOM":
|
|
case "REMINDER":
|
|
return whatsappReminderTemplate;
|
|
default:
|
|
return whatsappReminderTemplate;
|
|
}
|
|
}
|
|
|
|
function getEmailTemplateFunction(template?: WorkflowTemplates) {
|
|
switch (template) {
|
|
case WorkflowTemplates.REMINDER:
|
|
return emailReminderTemplate;
|
|
case WorkflowTemplates.RATING:
|
|
return emailRatingTemplate;
|
|
default:
|
|
return emailReminderTemplate;
|
|
}
|
|
}
|
|
|
|
export function getWhatsappTemplateForAction(
|
|
action: WorkflowActions,
|
|
locale: string,
|
|
template: WorkflowTemplates,
|
|
timeFormat: TimeFormat
|
|
): string | null {
|
|
const templateFunction = getWhatsappTemplateFunction(template);
|
|
return templateFunction(true, locale, action, timeFormat);
|
|
}
|
|
|
|
export function getTemplateBodyForAction({
|
|
action,
|
|
locale,
|
|
template,
|
|
timeFormat,
|
|
}: {
|
|
action: WorkflowActions;
|
|
locale: string;
|
|
template: WorkflowTemplates;
|
|
timeFormat: TimeFormat;
|
|
}): string | null {
|
|
if (isSMSAction(action)) {
|
|
return smsReminderTemplate(true, locale, action, timeFormat);
|
|
}
|
|
|
|
if (isWhatsappAction(action)) {
|
|
const templateFunction = getWhatsappTemplateFunction(template);
|
|
return templateFunction(true, locale, action, timeFormat);
|
|
}
|
|
|
|
// If not a whatsapp action then it's an email action
|
|
const templateFunction = getEmailTemplateFunction(template);
|
|
return templateFunction({ isEditingMode: true, locale, action, timeFormat }).emailBody;
|
|
}
|