* 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>
107 lines
2.6 KiB
TypeScript
107 lines
2.6 KiB
TypeScript
import type { PrismaClient } from "@calcom/prisma";
|
|
import { safeCredentialSelect } from "@calcom/prisma/selects/credential";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/types";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
import { enabledIncompleteBookingApps } from "../lib/enabledIncompleteBookingApps";
|
|
import type { TGetIncompleteBookingSettingsInputSchema } from "./getIncompleteBookingSettings.schema";
|
|
|
|
interface GetIncompleteBookingSettingsOptions {
|
|
ctx: {
|
|
prisma: PrismaClient;
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
input: TGetIncompleteBookingSettingsInputSchema;
|
|
}
|
|
|
|
const getInCompleteBookingSettingsHandler = async (options: GetIncompleteBookingSettingsOptions) => {
|
|
const {
|
|
ctx: { prisma },
|
|
input,
|
|
} = options;
|
|
|
|
const { user: _, ...safeCredentialSelectWithoutUser } = safeCredentialSelect;
|
|
const [incompleteBookingActions, form] = await Promise.all([
|
|
prisma.app_RoutingForms_IncompleteBookingActions.findMany({
|
|
where: {
|
|
formId: input.formId,
|
|
},
|
|
}),
|
|
prisma.app_RoutingForms_Form.findUnique({
|
|
where: {
|
|
id: input.formId,
|
|
},
|
|
select: {
|
|
userId: true,
|
|
teamId: true,
|
|
},
|
|
}),
|
|
]);
|
|
|
|
if (!form) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Form not found",
|
|
});
|
|
}
|
|
|
|
const teamId = form?.teamId;
|
|
const userId = form.userId;
|
|
|
|
if (teamId) {
|
|
// Need to get the credentials for the team and org
|
|
const orgQuery = await prisma.team.findUnique({
|
|
where: {
|
|
id: teamId,
|
|
},
|
|
select: {
|
|
parentId: true,
|
|
},
|
|
});
|
|
|
|
const credentials = await prisma.credential.findMany({
|
|
where: {
|
|
appId: {
|
|
in: enabledIncompleteBookingApps,
|
|
},
|
|
teamId: {
|
|
in: [teamId, ...(orgQuery?.parentId ? [orgQuery.parentId] : [])],
|
|
},
|
|
},
|
|
select: {
|
|
...safeCredentialSelectWithoutUser,
|
|
user: {
|
|
select: {
|
|
email: true,
|
|
name: true,
|
|
},
|
|
},
|
|
team: {
|
|
select: {
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
return { incompleteBookingActions, credentials };
|
|
}
|
|
|
|
if (userId) {
|
|
// Assume that a user will have one credential per app
|
|
const credential = await prisma.credential.findFirst({
|
|
where: {
|
|
appId: {
|
|
in: enabledIncompleteBookingApps,
|
|
},
|
|
userId,
|
|
},
|
|
});
|
|
|
|
return { incompleteBookingActions, credentials: credential ? [{ ...credential, team: null }] : [] };
|
|
}
|
|
};
|
|
|
|
export default getInCompleteBookingSettingsHandler;
|