mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
aceb904398
* Fixed issue with realtime page rendering. * fix auth, add pg extension (#1596) * Fixed change password issue. API refactoring. Closes #1592. * Fixed account lookup. * Fixed issue with accessing user dashboards. Closes #1590 * fix sort on dashboard (#1600) Co-authored-by: Brian Cao <brian@umami.is>
24 lines
681 B
JavaScript
24 lines
681 B
JavaScript
import { ok, unauthorized, badRequest, checkPassword, createSecureToken } from 'next-basics';
|
|
import { getAccount } from 'queries';
|
|
import { secret } from 'lib/crypto';
|
|
|
|
export default async (req, res) => {
|
|
const { username, password } = req.body;
|
|
|
|
if (!username || !password) {
|
|
return badRequest(res);
|
|
}
|
|
|
|
const account = await getAccount({ username });
|
|
|
|
if (account && checkPassword(password, account.password)) {
|
|
const { id, username, isAdmin, accountUuid } = account;
|
|
const user = { userId: id, username, isAdmin, accountUuid };
|
|
const token = createSecureToken(user, secret());
|
|
|
|
return ok(res, { token, user });
|
|
}
|
|
|
|
return unauthorized(res);
|
|
};
|