2021-04-07 15:03:02 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from 'next';
|
|
|
|
import { getSession } from 'next-auth/client';
|
|
|
|
import prisma from '../../../lib/prisma';
|
|
|
|
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
|
|
const session = await getSession({req: req});
|
|
|
|
|
|
|
|
if (!session) {
|
|
|
|
res.status(401).json({message: "Not authenticated"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Add user ID to user session object
|
|
|
|
const user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
email: session.user.email,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
password: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!user) { res.status(404).json({message: 'User not found'}); return; }
|
|
|
|
|
|
|
|
const username = req.body.username;
|
|
|
|
const name = req.body.name;
|
|
|
|
const description = req.body.description;
|
2021-04-16 02:09:22 +00:00
|
|
|
const timeZone = req.body.timeZone;
|
2021-04-07 15:03:02 +00:00
|
|
|
|
|
|
|
const updateUser = await prisma.user.update({
|
|
|
|
where: {
|
|
|
|
id: user.id,
|
|
|
|
},
|
|
|
|
data: {
|
2021-04-17 20:12:09 +00:00
|
|
|
username,
|
|
|
|
name,
|
2021-04-16 02:09:22 +00:00
|
|
|
bio: description,
|
|
|
|
timeZone: timeZone,
|
2021-04-07 15:03:02 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
res.status(200).json({message: 'Profile updated successfully'});
|
|
|
|
}
|