* remove add variable dropdown * feat: lang support * fix: type errors * feat: select voice agent * refactor: address feedback * refactor: address feedback * refactor: missing import * fix: types * add getAllWorkflowsFromRoutingForm to WorkflowService * fix error caused by undefined evt * fix type error * fix type error * fix tests * feat: add inbound calls * chore: formatting * chore * feat: finish inbound call * chore: formatting * fix: update bug * fix: types * code clean up * final fixes and clean up * remove console.log * remove template text form from triggers * add routing form repoditory function * refactor: Agent Configuration Sheet (#23930) * refactor: agent configuration sheet * chore: use default phone numbre * refactor: improvements * refactor: improvements * fix: types * fix: feedback * fix bug with key * chore: * fix: feedback * fix: prompt * add comments * fix: review * fix: review * refactor: class * refactor: class * fix test * allow cal ai action on form triggers * move any reusable code to scheduleAIPhoneCall * add missing await * use predefined FormSubmissionData type * add .trim() to sms message * pass contextData instead * finish base setup * add missing trigger in update-workflow.input.ts * allow cal.ai action for form triggers in handler * chore: add support for form workflows on api v2 * fixup! chore: add support for form workflows on api v2 * ai phone call on form submissions (WIP) * use existing type for Option array * pass chosen event type id * refactor: rename * Update apps/web/public/static/locales/en/common.json * Update apps/web/public/static/locales/en/common.json * add missing imports * chore: update set value * fix: remove index * fix: type error * fix: update tetss * use only repository functions in update handler * move all prisma queries from list.handler * review suggestions * fix: use logger * chore: handle workflows api v2 * chore: handle workflows api v2, split in 2 endpoints * fix workflow step creation * remove connect agent and fixes types * add type to workflow * chore: use workflow type in apiv2 WorkflowsOutputService * update worklfow type on update * chore: use workflow type in apiv2 WorkflowsOutputService * fix template body for torm trigger * some UI fixes for email subject/body * resetting email body when changing form triggers * use type field to query workflows * clean up all old active on values * remove responseId from all funciton calls * remove undefined from updateTemplate * refactor: don't use static * fix: type * refactor: split routing form and event-type workflows code * refactor: split routing form and event-type workflows code * fix template text when adding action * chore: don't rename WorkflowActivationDto to avoid ci blocking * refine update schedule to use only allowed actions * fix type error * don't allow whatsapp action with form trigger * fix type error * return early if activeOn array is empty * fix: from step type in BaseFormWorkflowStepDto * fixup! fix: from step type in BaseFormWorkflowStepDto * api v2 updates * move all prisma calls to repository (service/workflows.ts) * use FORM_TRIGGER_WORKFLOW_EVENTS for form queries * use userRepository * use FORM_TRIGGER_WORKFLOW_EVENTS in isFormTrigger * code clean up * code clean up * use repository functions in formSubmissionValidation.ts * fix: schema * refactor: * remove action check in update handler * add event type selection * event type selector improvements * adjust update.handler * set outboundEventTypeId * add back trpc import * fix agent repository functions * clean up * fix bugs caused by merge * pass eventTypeId to updateToolsFromAgentId * add migration for outboundEventTypeId * add SMS actions to allowed form action constants * add cal ai to allowed form actions * pick correct event type for web call * pass correct routed event type id * remove unsued import * fixes for offset api v2 * add missing responseId * fix failing test * fix failing test * improve error message * remove unused imports * chore: handle sms step action for form worklfow in dtos * fix typo * missing missing newStep * minor fixes * remove changes * add routedEventTypeId * fix type error * fix type error * fix typ error in executAPIPhoneCall.tsx * add back inboundEventTypeId * remove console.log * remove outdated code * small fixes * don't throw error for missing phone number * add back filtered triggerOptions * fix eventTypeId in testCall handler * fix type error * update migration * fix trigger is not defined * convert eventTypeId to string * only use outboundEventTypeId for FORM_SUBMITTED trigger * show toast when no event type selected * fix type errors * add missing translation * fix type error * remove callType * fix tests * small fixes * clean up AgentConfigurationSheet * remove EventTypeSelector file * code clean up * clean up * clean up * use resusable function for TestPhoneCallDialog and WebCallDialog * rename result * fix types for event type id * use repository runction in workflowReminder.ts * fix type error * pass eventTypeIds correctly * fix typo * custom variables from form responses * remove comment * Update apps/web/public/static/locales/en/common.json Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> * use watch instead of getValues * change to z.record(z.unknown()) instead of any() * fix type of eventTypeId * check permissinon for outBoundEventTypeId * add isNaN check * improve function name * add tests * fixes for custom variables * improve test * update tools when outbound agent event type id changes * handle undefined eventDate in customTemplate * add info how to use form responses as variables * rename responses to routingFormResponses * remove cal ai from allowed steps api v2 * remove old migration file --------- Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: Udit Takkar <udit222001@gmail.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Benny Joo <sldisek783@gmail.com> Co-authored-by: cal.com <morgan@cal.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
135 lines
4.7 KiB
TypeScript
135 lines
4.7 KiB
TypeScript
import dayjs from "@calcom/dayjs";
|
|
import { dub } from "@calcom/features/auth/lib/dub";
|
|
import { WEBSITE_URL } from "@calcom/lib/constants";
|
|
import { WorkflowActions, WorkflowTriggerEvents } from "@calcom/prisma/enums";
|
|
import { bookingMetadataSchema } from "@calcom/prisma/zod-utils";
|
|
|
|
import { IMMEDIATE_WORKFLOW_TRIGGER_EVENTS } from "../constants";
|
|
import { getWorkflowRecipientEmail } from "../getWorkflowReminders";
|
|
import type { AttendeeInBookingInfo, BookingInfo } from "./smsReminderManager";
|
|
import type { VariablesType } from "./templates/customTemplate";
|
|
import customTemplate, { transformBookingResponsesToVariableFormat } from "./templates/customTemplate";
|
|
|
|
export const bulkShortenLinks = async (links: string[]) => {
|
|
if (!process.env.DUB_API_KEY) {
|
|
return links.map((link) => ({ shortLink: link }));
|
|
}
|
|
|
|
const linksToShorten = links.filter((link) => link);
|
|
const results = await dub.links.createMany(
|
|
linksToShorten.map((link) => ({
|
|
domain: "sms.cal.com",
|
|
url: link,
|
|
folderId: "fold_wx3NZDKQYbLDbncSubeMu0ss",
|
|
}))
|
|
);
|
|
return links.map((link) => {
|
|
const createdLink = results.find(
|
|
(result): result is Extract<typeof result, { url: string }> =>
|
|
!("error" in result) && result.url === link
|
|
);
|
|
if (createdLink) {
|
|
return { shortLink: createdLink.shortLink };
|
|
} else {
|
|
return { shortLink: link };
|
|
}
|
|
});
|
|
};
|
|
|
|
export const getSMSMessageWithVariables = async (
|
|
smsMessage: string,
|
|
evt: BookingInfo,
|
|
attendeeToBeUsedInSMS: AttendeeInBookingInfo,
|
|
action: WorkflowActions
|
|
) => {
|
|
const recipientEmail = getWorkflowRecipientEmail({
|
|
action,
|
|
attendeeEmail: attendeeToBeUsedInSMS.email,
|
|
});
|
|
const urls = {
|
|
meetingUrl: bookingMetadataSchema.parse(evt.metadata || {})?.videoCallUrl || "",
|
|
cancelLink: `${evt.bookerUrl ?? WEBSITE_URL}/booking/${evt.uid}?cancel=true${
|
|
recipientEmail ? `&cancelledBy=${recipientEmail}` : ""
|
|
}`,
|
|
rescheduleLink: `${evt.bookerUrl ?? WEBSITE_URL}/reschedule/${evt.uid}${
|
|
recipientEmail ? `?rescheduledBy=${recipientEmail}` : ""
|
|
}`,
|
|
};
|
|
|
|
const [{ shortLink: meetingUrl }, { shortLink: cancelLink }, { shortLink: rescheduleLink }] =
|
|
await bulkShortenLinks([urls.meetingUrl, urls.cancelLink, urls.rescheduleLink]);
|
|
|
|
const timeZone =
|
|
action === WorkflowActions.SMS_ATTENDEE ? attendeeToBeUsedInSMS.timeZone : evt.organizer.timeZone;
|
|
|
|
const variables: VariablesType = {
|
|
eventName: evt.title,
|
|
organizerName: evt.organizer.name,
|
|
attendeeName: attendeeToBeUsedInSMS.name,
|
|
attendeeFirstName: attendeeToBeUsedInSMS.firstName,
|
|
attendeeLastName: attendeeToBeUsedInSMS.lastName,
|
|
attendeeEmail: attendeeToBeUsedInSMS.email,
|
|
eventDate: dayjs(evt.startTime).tz(timeZone),
|
|
eventEndTime: dayjs(evt.endTime).tz(timeZone),
|
|
timeZone: timeZone,
|
|
location: evt.location,
|
|
additionalNotes: evt.additionalNotes,
|
|
responses: transformBookingResponsesToVariableFormat(evt.responses),
|
|
meetingUrl,
|
|
cancelLink,
|
|
rescheduleLink,
|
|
cancelReason: evt.cancellationReason,
|
|
rescheduleReason: evt.rescheduleReason,
|
|
attendeeTimezone: evt.attendees[0].timeZone,
|
|
eventTimeInAttendeeTimezone: dayjs(evt.startTime).tz(evt.attendees[0].timeZone),
|
|
eventEndTimeInAttendeeTimezone: dayjs(evt.endTime).tz(evt.attendees[0].timeZone),
|
|
};
|
|
|
|
const locale =
|
|
action === WorkflowActions.SMS_ATTENDEE
|
|
? attendeeToBeUsedInSMS.language?.locale
|
|
: evt.organizer.language.locale;
|
|
|
|
const customMessage = customTemplate(smsMessage, variables, locale, evt.organizer.timeFormat);
|
|
smsMessage = customMessage.text;
|
|
|
|
return smsMessage;
|
|
};
|
|
|
|
export const getAttendeeToBeUsedInSMS = (
|
|
action: WorkflowActions,
|
|
evt: BookingInfo,
|
|
reminderPhone: string | null
|
|
) => {
|
|
let attendeeToBeUsedInSMS: AttendeeInBookingInfo | null = null;
|
|
if (action === WorkflowActions.SMS_ATTENDEE) {
|
|
const attendeeWithReminderPhoneAsSMSReminderNumber =
|
|
reminderPhone && evt.attendees.find((attendee) => attendee.email === evt.responses?.email?.value);
|
|
attendeeToBeUsedInSMS = attendeeWithReminderPhoneAsSMSReminderNumber
|
|
? attendeeWithReminderPhoneAsSMSReminderNumber
|
|
: evt.attendees[0];
|
|
} else {
|
|
attendeeToBeUsedInSMS = evt.attendees[0];
|
|
}
|
|
|
|
return attendeeToBeUsedInSMS;
|
|
};
|
|
|
|
export const shouldUseTwilio = (trigger: WorkflowTriggerEvents, scheduledDate: dayjs.Dayjs | null) => {
|
|
if (IMMEDIATE_WORKFLOW_TRIGGER_EVENTS.includes(trigger)) {
|
|
return true;
|
|
}
|
|
|
|
if (trigger === WorkflowTriggerEvents.BEFORE_EVENT || trigger === WorkflowTriggerEvents.AFTER_EVENT) {
|
|
const currentDate = dayjs();
|
|
if (
|
|
scheduledDate &&
|
|
currentDate.isBefore(scheduledDate.subtract(15, "minute")) &&
|
|
!scheduledDate.isAfter(currentDate.add(2, "hour"))
|
|
) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|