77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
import { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { hashPassword } from "@lib/auth";
|
|
import prisma from "@lib/prisma";
|
|
import slugify from "@lib/slugify";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
if (req.method !== "POST") {
|
|
return;
|
|
}
|
|
|
|
const data = req.body;
|
|
const { email, password } = data;
|
|
const username = slugify(data.username);
|
|
const userEmail = email.toLowerCase();
|
|
|
|
if (!username) {
|
|
res.status(422).json({ message: "Invalid username" });
|
|
return;
|
|
}
|
|
|
|
if (!userEmail || !userEmail.includes("@")) {
|
|
res.status(422).json({ message: "Invalid email" });
|
|
return;
|
|
}
|
|
|
|
if (!password || password.trim().length < 7) {
|
|
res.status(422).json({ message: "Invalid input - password should be at least 7 characters long." });
|
|
return;
|
|
}
|
|
|
|
const existingUser = await prisma.user.findFirst({
|
|
where: {
|
|
OR: [
|
|
{
|
|
username: username,
|
|
},
|
|
{
|
|
email: userEmail,
|
|
},
|
|
],
|
|
AND: [
|
|
{
|
|
emailVerified: {
|
|
not: null,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
if (existingUser) {
|
|
const message: string =
|
|
existingUser.email !== userEmail ? "Username already taken" : "Email address is already registered";
|
|
|
|
return res.status(409).json({ message });
|
|
}
|
|
|
|
const hashedPassword = await hashPassword(password);
|
|
|
|
await prisma.user.upsert({
|
|
where: { email: userEmail },
|
|
update: {
|
|
username,
|
|
password: hashedPassword,
|
|
emailVerified: new Date(Date.now()),
|
|
},
|
|
create: {
|
|
username,
|
|
email: userEmail,
|
|
password: hashedPassword,
|
|
},
|
|
});
|
|
|
|
res.status(201).json({ message: "Created user" });
|
|
}
|