mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
add password reset service
This commit is contained in:
parent
b15c4943de
commit
c47bc5e5de
4 changed files with 141 additions and 8 deletions
|
@ -1,19 +1,49 @@
|
||||||
|
import { PrismaClient } from '@prisma/client'
|
||||||
|
import crypto from 'crypto'
|
||||||
import type { NextApiRequest, NextApiResponse } from 'next'
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
||||||
|
|
||||||
|
let prismaInstance: PrismaClient | null = null
|
||||||
|
|
||||||
|
function getPrismaInstance() {
|
||||||
|
if (!prismaInstance) {
|
||||||
|
prismaInstance = new PrismaClient()
|
||||||
|
}
|
||||||
|
return prismaInstance
|
||||||
|
}
|
||||||
|
|
||||||
|
const prisma = getPrismaInstance()
|
||||||
|
|
||||||
type ResponseData = {
|
type ResponseData = {
|
||||||
message: string
|
message: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function handler(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
export default async function handler(req: NextApiRequest, res: NextApiResponse<ResponseData>) {
|
||||||
// TODO: implement password reset functionality
|
if (!req.body.email) {
|
||||||
|
res.status(400).json({ message: 'No email provided.' })
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const user = await prisma.authUser.findUnique({
|
||||||
|
where: {
|
||||||
|
email: req.body.email,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
// No user found, we don't want to expose this information
|
||||||
|
return res.status(200).json({ message: 'OK' })
|
||||||
|
}
|
||||||
|
|
||||||
|
const token = crypto.randomBytes(32).toString('hex')
|
||||||
|
await prisma.authPasswordResets.create({
|
||||||
|
data: {
|
||||||
|
token,
|
||||||
|
email: req.body.email,
|
||||||
|
expires: new Date(Date.now() + 1000 * 60 * 10), // 10 minutes
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
// 1. Generate a password reset token
|
|
||||||
// 2. Send a password reset email
|
// 2. Send a password reset email
|
||||||
// 3. Redirect to a password reset page
|
|
||||||
// 4. Verify the password reset token
|
|
||||||
// 5. Reset the password
|
|
||||||
// 6. Redirect to the login page
|
|
||||||
// 7. Login with the new password
|
|
||||||
|
|
||||||
res.status(200).json({ message: 'Hello from Next.js!' })
|
res.status(200).json({ message: 'Hello from Next.js!' })
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,101 @@
|
||||||
|
import type { PrismaClient } from '@prisma/client'
|
||||||
|
import type { Logger } from 'winston'
|
||||||
|
import type { EmailService } from '../email'
|
||||||
|
import bcrypt from 'bcrypt'
|
||||||
|
|
||||||
|
type ResetPasswordData = {
|
||||||
|
newPassword: string
|
||||||
|
token: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IAuthPasswordResetService {
|
||||||
|
create(email: string): Promise<null>
|
||||||
|
resetPassword(data: ResetPasswordData): Promise<null>
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AuthPasswordResetsService implements IAuthPasswordResetService {
|
||||||
|
constructor(
|
||||||
|
private readonly logger: Logger,
|
||||||
|
private readonly emailService: EmailService,
|
||||||
|
private readonly prisma: PrismaClient
|
||||||
|
) {}
|
||||||
|
|
||||||
|
async create(email: string): Promise<null> {
|
||||||
|
const user = await this.prisma.authUser.findUnique({
|
||||||
|
where: {
|
||||||
|
email,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
this.logger.log({
|
||||||
|
level: 'info',
|
||||||
|
message: `No user found with email ${email}`,
|
||||||
|
})
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
const token = crypto.randomUUID()
|
||||||
|
|
||||||
|
await this.prisma.authPasswordResets.create({
|
||||||
|
data: {
|
||||||
|
token,
|
||||||
|
email,
|
||||||
|
expires: new Date(Date.now() + 1000 * 60 * 10), // 10 minutes
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
await this.emailService.send({
|
||||||
|
subject: 'Reset your password',
|
||||||
|
to: email,
|
||||||
|
// TODO: Use a template
|
||||||
|
textBody: `Click here to reset your password: ${process.env.NEXTAUTH_URL}/auth/reset-password?token=${token}&email=${email}`,
|
||||||
|
})
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
async resetPassword(data: {
|
||||||
|
newPassword: string
|
||||||
|
email: string
|
||||||
|
token: string
|
||||||
|
}): Promise<null> {
|
||||||
|
const findResult = await this.prisma.authPasswordResets.findUnique({
|
||||||
|
where: {
|
||||||
|
token: data.token,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!findResult) {
|
||||||
|
throw new Error('Invalid token')
|
||||||
|
}
|
||||||
|
|
||||||
|
if (findResult.expires < new Date()) {
|
||||||
|
throw new Error('Token expired')
|
||||||
|
}
|
||||||
|
|
||||||
|
const user = await this.prisma.authUser.findUnique({
|
||||||
|
where: {
|
||||||
|
email: data.email,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
throw new Error('No user found')
|
||||||
|
}
|
||||||
|
|
||||||
|
const hashedPassword = await bcrypt.hash(data.newPassword, 10)
|
||||||
|
|
||||||
|
await this.prisma.authUser.update({
|
||||||
|
where: {
|
||||||
|
email: data.email,
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
password: hashedPassword,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
1
libs/server/features/src/auth-password-reset/index.ts
Normal file
1
libs/server/features/src/auth-password-reset/index.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export * from './auth-password-reset.service'
|
|
@ -4,6 +4,7 @@ export * from './account-balance'
|
||||||
export * from './email'
|
export * from './email'
|
||||||
export * from './institution'
|
export * from './institution'
|
||||||
export * from './security-pricing'
|
export * from './security-pricing'
|
||||||
|
export * from './auth-password-reset'
|
||||||
export * from './auth-user'
|
export * from './auth-user'
|
||||||
export * from './user'
|
export * from './user'
|
||||||
export * from './valuation'
|
export * from './valuation'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue