165 lines
5.4 KiB
TypeScript
165 lines
5.4 KiB
TypeScript
import type { TFunction } from "i18next";
|
|
import z from "zod";
|
|
|
|
import { guessEventLocationType } from "@calcom/app-store/locations";
|
|
import type { Prisma } from "@calcom/prisma/client";
|
|
|
|
export const nameObjectSchema = z.object({
|
|
firstName: z.string(),
|
|
lastName: z.string().optional(),
|
|
});
|
|
|
|
function parseName(name: z.infer<typeof nameObjectSchema> | string | undefined) {
|
|
if (typeof name === "string") return name;
|
|
else if (typeof name === "object" && nameObjectSchema.parse(name))
|
|
return `${name.firstName} ${name.lastName}`.trim();
|
|
else return "Nameless";
|
|
}
|
|
|
|
export type EventNameObjectType = {
|
|
attendeeName: z.infer<typeof nameObjectSchema> | string;
|
|
eventType: string;
|
|
eventName?: string | null;
|
|
teamName?: string | null;
|
|
host: string;
|
|
location?: string | null;
|
|
eventDuration: number;
|
|
bookingFields?: Prisma.JsonObject | null;
|
|
t: TFunction;
|
|
};
|
|
|
|
export function getEventName(eventNameObj: EventNameObjectType, forAttendeeView = false) {
|
|
const attendeeName = parseName(eventNameObj.attendeeName);
|
|
|
|
if (!eventNameObj.eventName)
|
|
return eventNameObj.t("event_between_users", {
|
|
eventName: eventNameObj.eventType,
|
|
host: eventNameObj.teamName || eventNameObj.host,
|
|
attendeeName,
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
});
|
|
|
|
let eventName = eventNameObj.eventName;
|
|
let locationString = eventNameObj.location || "";
|
|
|
|
if (eventNameObj.eventName.includes("{Location}") || eventNameObj.eventName.includes("{LOCATION}")) {
|
|
const eventLocationType = guessEventLocationType(eventNameObj.location);
|
|
if (eventLocationType) {
|
|
locationString = eventLocationType.label;
|
|
}
|
|
eventName = eventName.replace("{Location}", locationString);
|
|
eventName = eventName.replace("{LOCATION}", locationString);
|
|
}
|
|
|
|
let dynamicEventName = eventName
|
|
// Need this for compatibility with older event names
|
|
.replaceAll("{Event type title}", eventNameObj.eventType)
|
|
.replaceAll("{Scheduler}", attendeeName)
|
|
.replaceAll("{Organiser}", eventNameObj.host)
|
|
.replaceAll("{Organiser first name}", eventNameObj.host.split(" ")[0])
|
|
.replaceAll("{USER}", attendeeName)
|
|
.replaceAll("{ATTENDEE}", attendeeName)
|
|
.replaceAll("{HOST}", eventNameObj.host)
|
|
.replaceAll("{HOST/ATTENDEE}", forAttendeeView ? eventNameObj.host : attendeeName)
|
|
.replaceAll("{Event duration}", `${String(eventNameObj.eventDuration)} mins`)
|
|
.replaceAll(
|
|
"{Scheduler first name}",
|
|
attendeeName === eventNameObj.t("scheduler") ? "{Scheduler first name}" : attendeeName.split(" ")[0]
|
|
);
|
|
|
|
const { bookingFields } = eventNameObj || {};
|
|
const { name } = bookingFields || {};
|
|
|
|
if (name && typeof name === "object" && !Array.isArray(name) && typeof name.lastName === "string") {
|
|
dynamicEventName = dynamicEventName.replaceAll("{Scheduler last name}", name.lastName.toString());
|
|
}
|
|
|
|
const customInputvariables = dynamicEventName.match(/\{(.+?)}/g)?.map((variable) => {
|
|
return variable.replace("{", "").replace("}", "");
|
|
});
|
|
|
|
customInputvariables?.forEach((variable) => {
|
|
if (!eventNameObj.bookingFields) return;
|
|
|
|
const bookingFieldValue = eventNameObj.bookingFields[variable as keyof typeof eventNameObj.bookingFields];
|
|
|
|
if (bookingFieldValue) {
|
|
let fieldValue;
|
|
|
|
if (typeof bookingFieldValue === "object") {
|
|
if ("value" in bookingFieldValue) {
|
|
const valueAsString = bookingFieldValue.value?.toString();
|
|
fieldValue =
|
|
variable === "location"
|
|
? guessEventLocationType(valueAsString)?.label || valueAsString
|
|
: valueAsString;
|
|
} else if (variable === "name" && "firstName" in bookingFieldValue) {
|
|
const lastName = "lastName" in bookingFieldValue ? bookingFieldValue.lastName : "";
|
|
fieldValue = `${bookingFieldValue.firstName} ${lastName}`.trim();
|
|
}
|
|
} else {
|
|
fieldValue = bookingFieldValue.toString();
|
|
}
|
|
|
|
dynamicEventName = dynamicEventName.replace(`{${variable}}`, fieldValue || "");
|
|
}
|
|
});
|
|
|
|
return dynamicEventName;
|
|
}
|
|
|
|
export function updateHostInEventName(eventName: string, oldHost: string, newHost: string) {
|
|
const oldHostFirstName = oldHost.split(" ")[0];
|
|
const newHostFirstName = newHost.split(" ")[0];
|
|
|
|
if (!eventName.includes(oldHost) && !eventName.includes(oldHostFirstName)) {
|
|
return eventName;
|
|
}
|
|
|
|
let updatedEventName = eventName;
|
|
|
|
updatedEventName = updatedEventName.replace(oldHost, newHost);
|
|
|
|
updatedEventName = updatedEventName.replace(oldHostFirstName, newHostFirstName);
|
|
|
|
return updatedEventName;
|
|
}
|
|
|
|
export const validateCustomEventName = (value: string, bookingFields?: Prisma.JsonObject | null) => {
|
|
let customInputVariables: string[] = [];
|
|
if (bookingFields) {
|
|
customInputVariables = Object.keys(bookingFields).map((customInput) => {
|
|
return `{${customInput}}`;
|
|
});
|
|
}
|
|
|
|
const validVariables = customInputVariables.concat([
|
|
"{Event type title}",
|
|
"{Organiser}",
|
|
"{Scheduler}",
|
|
"{Location}",
|
|
"{Organiser first name}",
|
|
"{Scheduler first name}",
|
|
"{Scheduler last name}",
|
|
"{Event duration}",
|
|
//allowed for fallback reasons
|
|
"{LOCATION}",
|
|
"{HOST/ATTENDEE}",
|
|
"{HOST}",
|
|
"{ATTENDEE}",
|
|
"{USER}",
|
|
]);
|
|
const matches = value.match(/\{([^}]+)\}/g);
|
|
if (matches?.length) {
|
|
for (const item of matches) {
|
|
if (!validVariables.includes(item)) {
|
|
return item;
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
};
|