Files
calendar/packages/features/noShow/handleSendingAttendeeNoShowDataToApps.ts
T
devin-ai-integration[bot]GitHubbenny@cal.com <benny@cal.com>benny@cal.com <benny@cal.com>benny@cal.com <benny@cal.com>benny@cal.com <benny@cal.com>Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>benny@cal.com <benny@cal.com>Anik Dhabal Babu
4920abdaf7 feat: optimize Prisma queries by replacing findFirst with findUnique where applicable (#21826)
* feat: optimize Prisma queries by replacing findFirst with findUnique where applicable

- Replace findFirst/findFirstOrThrow with findUnique/findUniqueOrThrow for queries using unique constraints
- Maintain existing functionality and error handling behavior
- Focus on queries using primary keys and unique index fields from schema
- Revert problematic changes that caused test failures to maintain stability

Co-Authored-By: benny@cal.com <benny@cal.com>

* revert: exclude API files from Prisma query optimizations per user request

- Reverted all 55 API-related files to their original state
- Kept all non-API Prisma query optimizations intact
- API files include apps/api/v1, apps/api/v2, apps/web/app/api, and packages/app-store/*/api
- Non-API optimizations remain for packages/lib, packages/features, apps/web (non-api), etc.

Co-Authored-By: benny@cal.com <benny@cal.com>

* feat: optimize membership query in attributeUtils to use findUnique with userId_teamId constraint

Co-Authored-By: benny@cal.com <benny@cal.com>

* revert: exclude test files from Prisma query optimizations per user request

Co-Authored-By: benny@cal.com <benny@cal.com>

* revert: revert attributeUtils.ts to use findFirst for test compatibility

Co-Authored-By: benny@cal.com <benny@cal.com>

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: benny@cal.com <benny@cal.com>
Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com>
2025-06-17 09:52:02 +03:00

86 lines
2.3 KiB
TypeScript

import type { z } from "zod";
import type { eventTypeAppCardZod } from "@calcom/app-store/eventTypeAppCardZod";
import CrmManager from "@calcom/lib/crmManager/crmManager";
import logger from "@calcom/lib/logger";
import prisma from "@calcom/prisma";
import { eventTypeAppMetadataOptionalSchema, EventTypeMetaDataSchema } from "@calcom/prisma/zod-utils";
import type { NoShowAttendees } from "../handleMarkNoShow";
import { noShowEnabledApps } from "./noShowEnabledApps";
const log = logger.getSubLogger({ prefix: ["handleSendingNoShowDataToApps"] });
export default async function handleSendingAttendeeNoShowDataToApps(
bookingUid: string,
attendees: NoShowAttendees
) {
// Get event type metadata
const eventTypeQuery = await prisma.booking.findUnique({
where: {
uid: bookingUid,
},
select: {
eventType: {
select: {
metadata: true,
},
},
},
});
if (!eventTypeQuery || !eventTypeQuery?.eventType?.metadata) {
log.warn(`For no show, could not find eventType for bookingUid ${bookingUid}`);
return;
}
const eventTypeMetadataParse = EventTypeMetaDataSchema.safeParse(eventTypeQuery?.eventType?.metadata);
if (!eventTypeMetadataParse.success) {
log.error(`Malformed event type metadata for bookingUid ${bookingUid}`);
return;
}
const eventTypeAppMetadata = eventTypeAppMetadataOptionalSchema.parse(eventTypeMetadataParse.data?.apps);
for (const slug in eventTypeAppMetadata) {
if (noShowEnabledApps.includes(slug)) {
const app = eventTypeAppMetadata[slug as keyof typeof eventTypeAppMetadata];
const appCategory = app.appCategories[0];
if (appCategory === "crm") {
await handleCRMNoShow(bookingUid, app, attendees);
}
}
}
return;
}
async function handleCRMNoShow(
bookingUid: string,
appData: z.infer<typeof eventTypeAppCardZod>,
attendees: NoShowAttendees
) {
// Handle checking if no she in CrmService
const credential = await prisma.credential.findUnique({
where: {
id: appData.credentialId,
},
include: {
user: {
select: {
email: true,
},
},
},
});
if (!credential) {
log.warn(`CRM credential not found for bookingUid ${bookingUid}`);
return;
}
const crm = new CrmManager(credential, appData);
await crm.handleAttendeeNoShow(bookingUid, attendees);
}