mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
06bebadbb9
* Auth checkpoint. * Merge branch 'dev' into feat/um-114-roles-and-permissions
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { NextApiRequestQueryBody } from 'interface/api/nextApi';
|
|
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 {
|
|
current_password: string;
|
|
new_password: string;
|
|
}
|
|
|
|
export default async (
|
|
req: NextApiRequestQueryBody<UserPasswordRequestQuery, UserPasswordRequestBody>,
|
|
res: NextApiResponse<User>,
|
|
) => {
|
|
await useAuth(req, res);
|
|
|
|
const { current_password, new_password } = req.body;
|
|
const { id } = req.query;
|
|
const {
|
|
user: { id: userId },
|
|
} = req.auth;
|
|
|
|
if (req.method === 'POST') {
|
|
if (canUpdateUser(userId, id)) {
|
|
return unauthorized(res);
|
|
}
|
|
|
|
const user = await getUser({ id });
|
|
|
|
if (!checkPassword(current_password, user.password)) {
|
|
return badRequest(res, 'Current password is incorrect');
|
|
}
|
|
|
|
const password = hashPassword(new_password);
|
|
|
|
const updated = await updateUser({ password }, { id });
|
|
|
|
return ok(res, updated);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|