umami/pages/api/users/[id]/index.js

67 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-09-29 22:15:11 +00:00
import { badRequest, hashPassword, methodNotAllowed, ok, unauthorized } from 'next-basics';
2022-11-01 06:42:37 +00:00
import { getUser, deleteUser, updateUser } from 'queries';
2020-08-09 09:03:37 +00:00
import { useAuth } from 'lib/middleware';
export default async (req, res) => {
await useAuth(req, res);
2022-10-12 20:11:44 +00:00
const { isAdmin, userId } = req.auth;
2020-08-09 09:03:37 +00:00
const { id } = req.query;
2020-09-11 20:49:43 +00:00
if (req.method === 'GET') {
2022-10-12 20:11:44 +00:00
if (id !== userId && !isAdmin) {
2022-09-29 22:15:11 +00:00
return unauthorized(res);
}
2022-11-01 06:42:37 +00:00
const user = await getUser({ id });
2020-08-09 09:03:37 +00:00
2022-11-01 06:42:37 +00:00
return ok(res, user);
2020-08-09 09:03:37 +00:00
}
2022-09-29 22:15:11 +00:00
if (req.method === 'POST') {
2022-10-12 20:11:44 +00:00
const { username, password } = req.body;
2022-09-29 22:15:11 +00:00
2022-10-12 20:11:44 +00:00
if (id !== userId && !isAdmin) {
2022-09-29 22:15:11 +00:00
return unauthorized(res);
}
2022-11-01 06:42:37 +00:00
const user = await getUser({ id });
2022-09-29 22:15:11 +00:00
const data = {};
if (password) {
data.password = hashPassword(password);
}
// Only admin can change these fields
2022-10-12 20:11:44 +00:00
if (isAdmin) {
2022-09-29 22:15:11 +00:00
data.username = username;
}
// Check when username changes
2022-11-01 06:42:37 +00:00
if (data.username && user.username !== data.username) {
const userByUsername = await getUser({ username });
2022-09-29 22:15:11 +00:00
2022-11-01 06:42:37 +00:00
if (userByUsername) {
return badRequest(res, 'User already exists');
2022-09-29 22:15:11 +00:00
}
}
2022-11-01 06:42:37 +00:00
const updated = await updateUser(data, { id });
2022-09-29 22:15:11 +00:00
return ok(res, updated);
}
2020-08-09 09:03:37 +00:00
if (req.method === 'DELETE') {
2022-10-12 20:11:44 +00:00
if (!isAdmin) {
2022-09-29 22:15:11 +00:00
return unauthorized(res);
}
2022-11-01 06:42:37 +00:00
await deleteUser(id);
2020-08-09 09:03:37 +00:00
2020-09-11 20:49:43 +00:00
return ok(res);
2020-08-09 09:03:37 +00:00
}
return methodNotAllowed(res);
};