Resources Seite für Desktop-client

This commit is contained in:
PxlLoewe
2025-06-27 23:39:28 -07:00
parent ec22cdb987
commit 1a1fab3f58
7 changed files with 131 additions and 49 deletions

View File

@@ -2,25 +2,32 @@
import { prisma } from "@repo/db";
import { sendMailByTemplate } from "../../../helper/mail";
import OLD_USER from "../../api/auth/[...nextauth]/var.User.json";
import bcrypt from "bcryptjs";
import { createNewUserFromOld, OldUser } from "../../../types/oldUser";
export const resetPassword = async (email: string) => {
try {
const user = await prisma.user.findFirst({
let user = await prisma.user.findFirst({
where: {
email,
},
});
const oldUser = (OLD_USER as OldUser[]).find((u) => u.email === email);
if (!user) {
return { error: "Nutzer nicht gefunden" };
if (oldUser) {
user = await createNewUserFromOld(oldUser);
// If the user is not found in the new database, check the old user data
} else {
return { error: "Nutzer nicht gefunden" };
}
}
const array = new Uint8Array(8);
crypto.getRandomValues(array);
const password = Array.from(array, (byte) =>
("0" + (byte % 36).toString(36)).slice(-1),
).join("");
const password = Array.from(array, (byte) => ("0" + (byte % 36).toString(36)).slice(-1)).join(
"",
);
const hashedPassword = await bcrypt.hash(password, 12);
await prisma.user.update({
where: {