cal.pub0.org/pages/api/user/profile.ts

66 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-07-11 19:35:56 +00:00
import type { NextApiRequest, NextApiResponse } from "next";
import { getSession } from "next-auth/client";
import prisma, { whereAndSelect } from "@lib/prisma";
2021-04-07 15:03:02 +00:00
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
2021-07-11 19:35:56 +00:00
const session = await getSession({ req: req });
2021-04-07 15:03:02 +00:00
if (!session) {
2021-07-11 19:35:56 +00:00
res.status(401).json({ message: "Not authenticated" });
return;
}
// Get user
2021-07-11 19:35:56 +00:00
const user = await whereAndSelect(
prisma.user.findUnique,
{
id: session.user.id,
},
2021-07-11 19:35:56 +00:00
["id", "password"]
);
2021-04-07 15:03:02 +00:00
2021-07-11 19:35:56 +00:00
if (!user) {
res.status(404).json({ message: "User not found" });
return;
}
2021-04-07 15:03:02 +00:00
const username = req.body.username;
// username is changed: username is optional but it is necessary to be unique, enforce here
if (username !== session.user.username) {
const userConflict = await prisma.user.findFirst({
where: {
username,
2021-07-11 19:35:56 +00:00
},
2021-04-07 15:03:02 +00:00
});
if (userConflict) {
2021-07-11 19:35:56 +00:00
return res.status(409).json({ message: "Username already taken" });
}
}
const name = req.body.name;
const description = req.body.description;
const avatar = req.body.avatar;
const timeZone = req.body.timeZone;
const weekStart = req.body.weekStart;
2021-06-29 16:08:55 +00:00
const hideBranding = req.body.hideBranding;
const theme = req.body.theme;
2021-07-11 19:35:56 +00:00
await prisma.user.update({
where: {
id: user.id,
},
data: {
username,
name,
avatar,
bio: description,
timeZone,
weekStart,
hideBranding,
theme,
},
});
2021-04-07 15:03:02 +00:00
2021-07-11 19:35:56 +00:00
return res.status(200).json({ message: "Profile updated successfully" });
}