mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
import { NextApiRequestQueryBody } from 'lib/types';
|
|
import { canUpdateUser } from 'lib/auth';
|
|
import { useAuth } from 'lib/middleware';
|
|
import { NextApiResponse } from 'next';
|
|
import {
|
|
badRequest,
|
|
checkPassword,
|
|
hashPassword,
|
|
methodNotAllowed,
|
|
ok,
|
|
unauthorized,
|
|
} from 'next-basics';
|
|
import { getUser, updateUser, User } from 'queries';
|
|
|
|
export interface UserPasswordRequestQuery {
|
|
id: string;
|
|
}
|
|
|
|
export interface UserPasswordRequestBody {
|
|
currentPassword: string;
|
|
newPassword: string;
|
|
}
|
|
|
|
export default async (
|
|
req: NextApiRequestQueryBody<UserPasswordRequestQuery, UserPasswordRequestBody>,
|
|
res: NextApiResponse<User>,
|
|
) => {
|
|
await useAuth(req, res);
|
|
|
|
const { currentPassword, newPassword } = req.body;
|
|
const { id } = req.query;
|
|
|
|
if (req.method === 'POST') {
|
|
if (!(await canUpdateUser(req.auth, id))) {
|
|
return unauthorized(res);
|
|
}
|
|
|
|
const user = await getUser({ id }, { includePassword: true });
|
|
|
|
if (!checkPassword(currentPassword, user.password)) {
|
|
return badRequest(res, 'Current password is incorrect');
|
|
}
|
|
|
|
const password = hashPassword(newPassword);
|
|
|
|
const updated = await updateUser({ password }, { id });
|
|
|
|
return ok(res, updated);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|