70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import crypto from 'crypto'
|
|
import { v4 as uuidV4 } from 'uuid'
|
|
import { VERIFICATION_TOKEN_EXPIRATION_DURATION } from '@/config/auth'
|
|
import db from '@/lib/db'
|
|
import { getVerificationTokenByEmail } from '@/data/verification-token'
|
|
import { getPasswordResetTokenByEmail } from '@/data/password-reset-token'
|
|
import { deleteTwoFactorToken, getTwoFactorTokenByEmail } from '@/data/two-factor-token'
|
|
|
|
export const generateTwoFactorToken = async (email: string) => {
|
|
const token = crypto.randomInt(100_000, 1_000_000).toString()
|
|
const expires = new Date(new Date().getTime() + VERIFICATION_TOKEN_EXPIRATION_DURATION)
|
|
|
|
const existingToken = await getTwoFactorTokenByEmail(email)
|
|
|
|
if (existingToken) {
|
|
await deleteTwoFactorToken(existingToken.id)
|
|
}
|
|
|
|
try {
|
|
return await db.twoFactorToken.create({ data: { email, token, expires } })
|
|
} catch (err) {
|
|
console.log(err)
|
|
return null
|
|
}
|
|
}
|
|
|
|
export const generatePasswordResetToken = async (email: string) => {
|
|
const token = uuidV4()
|
|
const expires = new Date(new Date().getTime() + VERIFICATION_TOKEN_EXPIRATION_DURATION)
|
|
const existingToken = await getPasswordResetTokenByEmail(email)
|
|
|
|
if (existingToken) {
|
|
await db.passwordResetToken.delete({
|
|
where: {
|
|
id: existingToken.id,
|
|
},
|
|
})
|
|
}
|
|
|
|
const passwordResetToken = await db.passwordResetToken.create({
|
|
data: {
|
|
email, token, expires,
|
|
},
|
|
})
|
|
|
|
return passwordResetToken
|
|
}
|
|
|
|
export const generateVerificationToken = async (email: string) => {
|
|
const token = uuidV4()
|
|
const expires = new Date(new Date().getTime() + VERIFICATION_TOKEN_EXPIRATION_DURATION)
|
|
|
|
const existingToken = await getVerificationTokenByEmail(email)
|
|
|
|
if (existingToken) {
|
|
await db.verificationToken.delete({
|
|
where: {
|
|
id: existingToken.id,
|
|
},
|
|
})
|
|
}
|
|
|
|
const verificationToken = await db.verificationToken.create({
|
|
data: {
|
|
email, token, expires,
|
|
},
|
|
})
|
|
|
|
return verificationToken
|
|
} |