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

93 lines
2 KiB
TypeScript
Raw Normal View History

2023-04-13 19:08:53 +00:00
import { NextApiRequestQueryBody, Roles, User } from 'lib/types';
import { canDeleteUser, canUpdateUser, canViewUser } from 'lib/auth';
2020-08-09 09:03:37 +00:00
import { useAuth } from 'lib/middleware';
2022-11-15 21:21:14 +00:00
import { NextApiResponse } from 'next';
2022-11-20 08:48:13 +00:00
import { badRequest, hashPassword, methodNotAllowed, ok, unauthorized } from 'next-basics';
2023-03-03 06:48:30 +00:00
import { deleteUser, getUser, updateUser } from 'queries';
2022-11-15 21:21:14 +00:00
2022-11-18 06:46:05 +00:00
export interface UserRequestQuery {
2022-11-15 21:21:14 +00:00
id: string;
}
2022-11-18 06:46:05 +00:00
export interface UserRequestBody {
2022-11-15 21:21:14 +00:00
username: string;
password: string;
2023-04-13 19:08:53 +00:00
role: Roles;
2022-11-15 21:21:14 +00:00
}
export default async (
2022-11-18 06:46:05 +00:00
req: NextApiRequestQueryBody<UserRequestQuery, UserRequestBody>,
2022-11-15 21:21:14 +00:00
res: NextApiResponse<User>,
) => {
2020-08-09 09:03:37 +00:00
await useAuth(req, res);
2022-11-09 20:03:24 +00:00
const {
2022-12-07 02:36:41 +00:00
user: { id: userId, isAdmin },
2022-11-09 20:03:24 +00:00
} = 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') {
if (!(await canViewUser(req.auth, id))) {
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') {
if (!(await canUpdateUser(req.auth, id))) {
2022-09-29 22:15:11 +00:00
return unauthorized(res);
}
2023-04-13 19:08:53 +00:00
const { username, password, role } = req.body;
2022-11-01 06:42:37 +00:00
const user = await getUser({ id });
2022-09-29 22:15:11 +00:00
2022-11-15 21:21:14 +00:00
const data: any = {};
2022-09-29 22:15:11 +00:00
2023-04-13 19:08:53 +00:00
if (password) {
2022-09-29 22:15:11 +00:00
data.password = hashPassword(password);
}
2023-04-13 19:08:53 +00:00
if (role && isAdmin) {
data.role = role;
}
2022-09-29 22:15:11 +00:00
// Only admin can change these fields
2022-12-07 02:36:41 +00:00
if (username && 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') {
if (!(await canDeleteUser(req.auth))) {
return unauthorized(res);
2022-11-01 01:50:05 +00:00
}
if (id === userId) {
2023-01-25 15:42:46 +00:00
return badRequest(res, 'You cannot delete yourself.');
2022-09-29 22:15:11 +00:00
}
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);
};