mirror of
https://github.com/documenso/documenso.git
synced 2026-07-10 04:55:02 +10:00
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { prisma } from '@documenso/prisma';
|
|
import crypto from 'crypto';
|
|
import { DateTime } from 'luxon';
|
|
|
|
import { USER_SIGNUP_VERIFICATION_TOKEN_IDENTIFIER } from '../../constants/email';
|
|
import { ONE_HOUR } from '../../constants/time';
|
|
import { sendConfirmationEmail } from '../auth/send-confirmation-email';
|
|
import { getMostRecentEmailVerificationToken } from './get-most-recent-email-verification-token';
|
|
|
|
type SendConfirmationTokenOptions = { email: string; force?: boolean };
|
|
|
|
export const sendConfirmationToken = async ({ email, force = false }: SendConfirmationTokenOptions) => {
|
|
const token = crypto.randomBytes(20).toString('hex');
|
|
|
|
const user = await prisma.user.findFirst({
|
|
where: {
|
|
email: email,
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
throw new Error('User not found');
|
|
}
|
|
|
|
if (user.emailVerified) {
|
|
throw new Error('Email verified');
|
|
}
|
|
|
|
const mostRecentToken = await getMostRecentEmailVerificationToken({ userId: user.id });
|
|
|
|
// If we've sent a token in the last 5 minutes, don't send another one
|
|
if (
|
|
!force &&
|
|
mostRecentToken?.createdAt &&
|
|
DateTime.fromJSDate(mostRecentToken.createdAt).diffNow('minutes').minutes > -5
|
|
) {
|
|
// return;
|
|
}
|
|
|
|
const createdToken = await prisma.verificationToken.create({
|
|
data: {
|
|
identifier: USER_SIGNUP_VERIFICATION_TOKEN_IDENTIFIER,
|
|
token: token,
|
|
expires: new Date(Date.now() + ONE_HOUR),
|
|
user: {
|
|
connect: {
|
|
id: user.id,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!createdToken) {
|
|
throw new Error(`Failed to create the verification token`);
|
|
}
|
|
|
|
try {
|
|
await sendConfirmationEmail({ userId: user.id });
|
|
|
|
return { success: true };
|
|
} catch (err) {
|
|
console.log(err);
|
|
throw new Error(`Failed to send the confirmation email`);
|
|
}
|
|
};
|