mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
add password reset + password change
This commit is contained in:
26
dashboard/server/api/user/password/reset.ts
Normal file
26
dashboard/server/api/user/password/reset.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
import crypto from 'crypto';
|
||||
import { PasswordModel } from '@schema/PasswordSchema';
|
||||
import EmailService from '@services/EmailService'
|
||||
|
||||
export default defineEventHandler(async event => {
|
||||
|
||||
const { email } = await readBody(event);
|
||||
|
||||
const target = await PasswordModel.findOne({ email });
|
||||
if (!target) return { error: true, message: 'Internal error. User not found.' }
|
||||
|
||||
|
||||
const newPass = crypto.randomBytes(5).toString('hex');
|
||||
|
||||
const hash = crypto.createHash('sha256');
|
||||
const hashedPassword = hash.update(newPass + '_litlyx').digest('hex');
|
||||
|
||||
target.password = hashedPassword;
|
||||
await target.save();
|
||||
|
||||
await EmailService.sendResetPasswordEmail(email, newPass);
|
||||
|
||||
return { error: false, message: 'Password changed' }
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user