33 lines
705 B
TypeScript
33 lines
705 B
TypeScript
import $ from 'cafy';
|
|
import * as bcrypt from 'bcryptjs';
|
|
import define from '../../../define';
|
|
import { UserProfiles } from '../../../../../models';
|
|
import { ensure } from '../../../../../prelude/ensure';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
|
|
params: {
|
|
password: {
|
|
validator: $.str
|
|
}
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
const profile = await UserProfiles.findOne(user.id).then(ensure);
|
|
|
|
// Compare password
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
|
|
|
if (!same) {
|
|
throw new Error('incorrect password');
|
|
}
|
|
|
|
await UserProfiles.update({ userId: user.id }, {
|
|
twoFactorSecret: null,
|
|
twoFactorEnabled: false
|
|
});
|
|
});
|