mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
78338205a3
* checkpoint * fix pg schema * fix mysql schema * change property names
41 lines
976 B
JavaScript
41 lines
976 B
JavaScript
import { ok, unauthorized, methodNotAllowed, badRequest, hashPassword } from 'next-basics';
|
|
import { useAuth } from 'lib/middleware';
|
|
import { uuid } from 'lib/crypto';
|
|
import { createAccount, getAccountByUsername, getAccounts } 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 accounts = await getAccounts();
|
|
|
|
return ok(res, accounts);
|
|
}
|
|
|
|
if (req.method === 'POST') {
|
|
const { username, password, account_uuid } = req.body;
|
|
|
|
const accountByUsername = await getAccountByUsername(username);
|
|
|
|
if (accountByUsername) {
|
|
return badRequest(res, 'Account already exists');
|
|
}
|
|
|
|
const created = await createAccount({
|
|
username,
|
|
password: hashPassword(password),
|
|
accountUuid: account_uuid || uuid(),
|
|
});
|
|
|
|
return ok(res, created);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|