mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 01:32:06 +10:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import crypto from 'crypto';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
import { TForgotPasswordFormSchema } from '@documenso/trpc/server/profile-router/schema';
|
|
|
|
import { sendForgotPassword } from '../auth/send-forgot-password';
|
|
|
|
export const forgotPassword = async ({ email }: TForgotPasswordFormSchema) => {
|
|
const user = await prisma.user.findFirstOrThrow({
|
|
where: {
|
|
email: email.toLowerCase(),
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
throw new Error('A password reset email has been sent.');
|
|
}
|
|
|
|
const existingToken = await prisma.passwordResetToken.findFirst({
|
|
where: {
|
|
userId: user.id,
|
|
createdAt: {
|
|
gte: new Date(Date.now() - 1000 * 60 * 60),
|
|
},
|
|
},
|
|
});
|
|
|
|
if (existingToken) {
|
|
throw new Error('A password reset email has been sent.');
|
|
}
|
|
|
|
const token = crypto.randomBytes(64).toString('hex');
|
|
const expiry = new Date();
|
|
expiry.setHours(expiry.getHours() + 24); // Set expiry to one hour from now
|
|
|
|
try {
|
|
await prisma.passwordResetToken.create({
|
|
data: {
|
|
token,
|
|
expiry,
|
|
userId: user.id,
|
|
},
|
|
});
|
|
} catch (error) {
|
|
throw new Error('Something went wrong');
|
|
}
|
|
|
|
return await sendForgotPassword({
|
|
userId: user.id,
|
|
});
|
|
};
|