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

73 lines
1.5 KiB
JavaScript
Raw Normal View History

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