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

89 lines
2.0 KiB
TypeScript
Raw Normal View History

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