* 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>
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import dayjs from "@calcom/dayjs";
|
|
import { HttpError } from "@calcom/lib/http-error";
|
|
import { validateAndGetCorrectedUsernameInTeam } from "@calcom/lib/validateUsername";
|
|
import { prisma } from "@calcom/prisma";
|
|
|
|
export async function findTokenByToken({ token }: { token: string }) {
|
|
const foundToken = await prisma.verificationToken.findUnique({
|
|
where: {
|
|
token,
|
|
},
|
|
select: {
|
|
id: true,
|
|
expires: true,
|
|
teamId: true,
|
|
},
|
|
});
|
|
|
|
if (!foundToken) {
|
|
throw new HttpError({
|
|
statusCode: 401,
|
|
message: "Invalid Token",
|
|
});
|
|
}
|
|
|
|
return foundToken;
|
|
}
|
|
|
|
export function throwIfTokenExpired(expires?: Date) {
|
|
if (!expires) return;
|
|
if (dayjs(expires).isBefore(dayjs())) {
|
|
throw new HttpError({
|
|
statusCode: 401,
|
|
message: "Token expired",
|
|
});
|
|
}
|
|
}
|
|
|
|
export async function validateAndGetCorrectedUsernameForTeam({
|
|
username,
|
|
email,
|
|
teamId,
|
|
isSignup,
|
|
}: {
|
|
username: string;
|
|
email: string;
|
|
teamId: number | null;
|
|
isSignup: boolean;
|
|
}) {
|
|
if (!teamId) return username;
|
|
|
|
const teamUserValidation = await validateAndGetCorrectedUsernameInTeam(username, email, teamId, isSignup);
|
|
if (!teamUserValidation.isValid) {
|
|
throw new HttpError({
|
|
statusCode: 409,
|
|
message: "Username or email is already taken",
|
|
});
|
|
}
|
|
if (!teamUserValidation.username) {
|
|
throw new HttpError({
|
|
statusCode: 422,
|
|
message: "Invalid username",
|
|
});
|
|
}
|
|
return teamUserValidation.username;
|
|
}
|