* move delegation credential repository to features * mv credential repository to features * update imports * mv * fix * fix * fix * fix * fix * update imports * update imports * update eslint rule * fix * fix * mv getConnectedDestinationCalendars * fix import errors * mv getCalendarsEvents * remove getUsersCredentials * wip * revert eslint rule change for now * fix type checks * fix * format * cleanup * fix * fix * fix * fix * fix tests * migrate getUserAvailability * migrate * fix tests * fix type checks * fix * fix * migrate crmManager * update imports * migrate raqbUtils to appstore * migrate getLuckyUser to features * migrate findTeamMembersMatchingAttributeLogic to appstore * update imports * fix * fix * fix test * fix unit tests * fix * fix * add eslint config
73 lines
2.4 KiB
TypeScript
73 lines
2.4 KiB
TypeScript
import type { z } from "zod";
|
|
|
|
import type { EventTypeAppMetadataSchema } from "@calcom/app-store/zod-utils";
|
|
import CrmManager from "@calcom/features/crmManager/crmManager";
|
|
import logger from "@calcom/lib/logger";
|
|
import { prisma } from "@calcom/prisma";
|
|
import type { Prisma } from "@calcom/prisma/client";
|
|
import { EventTypeMetaDataSchema } from "@calcom/prisma/zod-utils";
|
|
|
|
export async function getCRMContactOwnerForRRLeadSkip(
|
|
bookerEmail: string,
|
|
eventTypeMetadata: Prisma.JsonValue
|
|
): Promise<{
|
|
email: string | null;
|
|
recordType: string | null;
|
|
crmAppSlug: string | null;
|
|
recordId: string | null;
|
|
}> {
|
|
const nullReturnValue = { email: null, recordType: null, crmAppSlug: "", recordId: null };
|
|
const parsedEventTypeMetadata = EventTypeMetaDataSchema.safeParse(eventTypeMetadata);
|
|
if (!parsedEventTypeMetadata.success || !parsedEventTypeMetadata.data?.apps) return nullReturnValue;
|
|
|
|
const crm = await getCRMManagerWithRRLeadSkip(parsedEventTypeMetadata.data.apps);
|
|
|
|
if (!crm) return nullReturnValue;
|
|
const { crmManager, crmAppSlug } = crm;
|
|
const startTime = performance.now();
|
|
const contact = await crmManager.getContacts({ emails: bookerEmail, forRoundRobinSkip: true });
|
|
const endTime = performance.now();
|
|
logger.info(`Fetching from CRM took ${endTime - startTime}ms`);
|
|
if (!contact?.length || !contact[0].ownerEmail) return nullReturnValue;
|
|
return {
|
|
email: contact[0].ownerEmail ?? null,
|
|
recordType: contact[0].recordType ?? null,
|
|
crmAppSlug,
|
|
recordId: contact[0].id ?? null,
|
|
};
|
|
}
|
|
|
|
async function getCRMManagerWithRRLeadSkip(apps: z.infer<typeof EventTypeAppMetadataSchema>) {
|
|
let crmRoundRobinLeadSkip;
|
|
for (const appKey in apps) {
|
|
const app = apps[appKey as keyof typeof apps];
|
|
if (
|
|
app.enabled &&
|
|
typeof app.appCategories === "object" &&
|
|
app.appCategories.some((category: string) => category === "crm") &&
|
|
app.roundRobinLeadSkip
|
|
) {
|
|
crmRoundRobinLeadSkip = app;
|
|
break;
|
|
}
|
|
}
|
|
if (!crmRoundRobinLeadSkip) return;
|
|
const crmCredential = await prisma.credential.findUnique({
|
|
where: {
|
|
id: crmRoundRobinLeadSkip.credentialId,
|
|
},
|
|
include: {
|
|
user: {
|
|
select: {
|
|
email: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
if (!crmCredential) return;
|
|
return {
|
|
crmManager: new CrmManager(crmCredential, crmRoundRobinLeadSkip),
|
|
crmAppSlug: crmCredential.appId,
|
|
};
|
|
}
|