60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
|
import dayjs from "@calcom/dayjs";
|
||
|
import { sendPasswordResetEmail } from "@calcom/emails";
|
||
|
import { PASSWORD_RESET_EXPIRY_HOURS } from "@calcom/emails/templates/forgot-password-email";
|
||
|
import { getTranslation } from "@calcom/lib/server/i18n";
|
||
|
import { prisma } from "@calcom/prisma";
|
||
|
|
||
|
import type { TrpcSessionUser } from "../../../trpc";
|
||
|
import type { TAdminPasswordResetSchema } from "./sendPasswordReset.schema";
|
||
|
|
||
|
type GetOptions = {
|
||
|
ctx: {
|
||
|
user: NonNullable<TrpcSessionUser>;
|
||
|
};
|
||
|
input: TAdminPasswordResetSchema;
|
||
|
};
|
||
|
|
||
|
export const sendPasswordResetHandler = async ({ ctx, input }: GetOptions) => {
|
||
|
const { userId } = input;
|
||
|
|
||
|
const user = await prisma.user.findUnique({
|
||
|
where: {
|
||
|
id: userId,
|
||
|
},
|
||
|
select: {
|
||
|
name: true,
|
||
|
email: true,
|
||
|
locale: true,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
if (!user) {
|
||
|
throw new Error("User not found");
|
||
|
}
|
||
|
|
||
|
const t = await getTranslation(user.locale ?? "en", "common");
|
||
|
|
||
|
const expiry = dayjs().add(PASSWORD_RESET_EXPIRY_HOURS, "hours").toDate();
|
||
|
|
||
|
const passwordResetToken = await prisma.resetPasswordRequest.create({
|
||
|
data: {
|
||
|
email: user.email,
|
||
|
expires: expiry,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const resetLink = `${process.env.NEXT_PUBLIC_WEBAPP_URL}/auth/forgot-password/${passwordResetToken.id}`;
|
||
|
await sendPasswordResetEmail({
|
||
|
language: t,
|
||
|
user: {
|
||
|
name: user.name,
|
||
|
email: user.email,
|
||
|
},
|
||
|
resetLink,
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
success: true,
|
||
|
};
|
||
|
};
|