2022-11-20 09:48:13 +01:00
|
|
|
import { NextApiRequestQueryBody } from 'interface/api/nextApi';
|
|
|
|
import { checkPermission } from 'lib/auth';
|
|
|
|
import { UmamiApi } from 'lib/constants';
|
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-11-20 09:48:13 +01:00
|
|
|
user: { id: userId },
|
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') {
|
2022-11-20 09:48:13 +01:00
|
|
|
if (id !== userId) {
|
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-11-20 09:48:13 +01:00
|
|
|
if (id !== userId) {
|
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
|
|
|
|
2022-11-15 22:21:14 +01:00
|
|
|
const data: any = {};
|
2022-09-30 00:15:11 +02:00
|
|
|
|
|
|
|
if (password) {
|
|
|
|
data.password = hashPassword(password);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only admin can change these fields
|
2022-11-20 09:48:13 +01:00
|
|
|
if (!(await checkPermission(req, UmamiApi.Permission.Admin))) {
|
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) {
|
2022-11-01 07:48:12 +01:00
|
|
|
return badRequest(res, 'You cannot delete your own user.');
|
2022-11-01 02:50:05 +01:00
|
|
|
}
|
|
|
|
|
2022-11-20 09:48:13 +01:00
|
|
|
if (!(await checkPermission(req, UmamiApi.Permission.Admin))) {
|
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);
|
|
|
|
};
|