mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
29 lines
816 B
JavaScript
29 lines
816 B
JavaScript
import { getAccountById, updateAccount } from 'lib/queries';
|
|
import { useAuth } from 'lib/middleware';
|
|
import { badRequest, methodNotAllowed, ok } from 'lib/response';
|
|
import { checkPassword, hashPassword } from 'lib/crypto';
|
|
|
|
export default async (req, res) => {
|
|
await useAuth(req, res);
|
|
|
|
const { user_id } = req.auth;
|
|
const { current_password, new_password } = req.body;
|
|
|
|
if (req.method === 'POST') {
|
|
const account = await getAccountById(user_id);
|
|
const valid = await checkPassword(current_password, account.password);
|
|
|
|
if (!valid) {
|
|
return badRequest(res, 'Current password is incorrect');
|
|
}
|
|
|
|
const password = await hashPassword(new_password);
|
|
|
|
const updated = await updateAccount(user_id, { password });
|
|
|
|
return ok(res, updated);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|