umami/pages/api/auth/login.js

27 lines
780 B
JavaScript
Raw Normal View History

2020-07-23 00:46:05 +02:00
import { serialize } from 'cookie';
2020-07-23 06:33:17 +02:00
import { checkPassword, createSecureToken } from 'lib/crypto';
2020-07-23 05:45:09 +02:00
import { getAccount } from 'lib/db';
2020-08-05 07:45:05 +02:00
import { AUTH_COOKIE_NAME } from 'lib/constants';
2020-07-23 00:46:05 +02:00
2020-07-23 05:45:09 +02:00
export default async (req, res) => {
const { username, password } = req.body;
2020-07-23 00:46:05 +02:00
2020-07-23 05:45:09 +02:00
const account = await getAccount(username);
2020-07-23 00:46:05 +02:00
2020-07-23 05:45:09 +02:00
if (account && (await checkPassword(password, account.password))) {
const { user_id, username, is_admin } = account;
2020-07-23 06:33:17 +02:00
const token = await createSecureToken({ user_id, username, is_admin });
2020-08-05 07:45:05 +02:00
const cookie = serialize(AUTH_COOKIE_NAME, token, {
2020-07-24 04:56:55 +02:00
path: '/',
httpOnly: true,
maxAge: 60 * 60 * 24 * 365,
});
2020-07-23 00:46:05 +02:00
res.setHeader('Set-Cookie', [cookie]);
2020-07-23 05:45:09 +02:00
return res.status(200).json({ token });
2020-07-23 00:46:05 +02:00
}
return res.status(401).end();
2020-07-23 00:46:05 +02:00
};