* 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>
75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import { hashPassword } from "@calcom/features/auth/lib/hashPassword";
|
|
import { validPassword } from "@calcom/features/auth/lib/validPassword";
|
|
import { verifyPassword } from "@calcom/features/auth/lib/verifyPassword";
|
|
import { prisma } from "@calcom/prisma";
|
|
import { IdentityProvider } from "@calcom/prisma/enums";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
import type { TrpcSessionUser } from "../../../types";
|
|
import type { TChangePasswordInputSchema } from "./changePassword.schema";
|
|
|
|
type ChangePasswordOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
input: TChangePasswordInputSchema;
|
|
};
|
|
|
|
export const changePasswordHandler = async ({ input, ctx }: ChangePasswordOptions) => {
|
|
const { oldPassword, newPassword } = input;
|
|
|
|
const { user } = ctx;
|
|
|
|
if (user.identityProvider !== IdentityProvider.CAL) {
|
|
const userWithPassword = await prisma.user.findUnique({
|
|
where: {
|
|
id: user.id,
|
|
},
|
|
select: {
|
|
password: true,
|
|
},
|
|
});
|
|
if (!userWithPassword?.password?.hash) {
|
|
throw new TRPCError({ code: "FORBIDDEN", message: "THIRD_PARTY_IDENTITY_PROVIDER_ENABLED" });
|
|
}
|
|
}
|
|
|
|
const currentPasswordQuery = await prisma.userPassword.findUnique({
|
|
where: { userId: user.id },
|
|
});
|
|
|
|
const currentPassword = currentPasswordQuery?.hash;
|
|
|
|
if (!currentPassword) {
|
|
throw new TRPCError({ code: "NOT_FOUND", message: "MISSING_PASSWORD" });
|
|
}
|
|
|
|
const passwordsMatch = await verifyPassword(oldPassword, currentPassword);
|
|
if (!passwordsMatch) {
|
|
throw new TRPCError({ code: "BAD_REQUEST", message: "incorrect_password" });
|
|
}
|
|
|
|
if (oldPassword === newPassword) {
|
|
throw new TRPCError({ code: "BAD_REQUEST", message: "new_password_matches_old_password" });
|
|
}
|
|
|
|
if (!validPassword(newPassword)) {
|
|
throw new TRPCError({ code: "BAD_REQUEST", message: "password_hint_min" });
|
|
}
|
|
|
|
const hashedPassword = await hashPassword(newPassword);
|
|
await prisma.userPassword.upsert({
|
|
where: {
|
|
userId: user.id,
|
|
},
|
|
create: {
|
|
hash: hashedPassword,
|
|
userId: user.id,
|
|
},
|
|
update: {
|
|
hash: hashedPassword,
|
|
},
|
|
});
|
|
};
|