This commit is contained in:
Brian Cao 2022-10-31 23:42:37 -07:00
parent 246e4e5f4f
commit 17041efaae
73 changed files with 491 additions and 874 deletions

40
pages/api/users/index.js Normal file
View file

@ -0,0 +1,40 @@
import { ok, unauthorized, methodNotAllowed, badRequest, hashPassword } from 'next-basics';
import { useAuth } from 'lib/middleware';
import { uuid } from 'lib/crypto';
import { createUser, getUser, getUsers } from 'queries';
export default async (req, res) => {
await useAuth(req, res);
const { isAdmin } = req.auth;
if (!isAdmin) {
return unauthorized(res);
}
if (req.method === 'GET') {
const users = await getUsers();
return ok(res, users);
}
if (req.method === 'POST') {
const { username, password } = req.body;
const user = await getUser({ username });
if (user) {
return badRequest(res, 'User already exists');
}
const created = await createUser({
id: uuid(),
username,
password: hashPassword(password),
});
return ok(res, created);
}
return methodNotAllowed(res);
};