0e4a111f81
Resolve #7779
32 lines
632 B
TypeScript
32 lines
632 B
TypeScript
import $ from 'cafy';
|
|
import * as bcrypt from 'bcryptjs';
|
|
import define from '../../../define';
|
|
import { UserProfiles } from '@/models/index';
|
|
|
|
export const meta = {
|
|
requireCredential: true as const,
|
|
|
|
secure: true,
|
|
|
|
params: {
|
|
password: {
|
|
validator: $.str
|
|
}
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
const profile = await UserProfiles.findOneOrFail(user.id);
|
|
|
|
// Compare password
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
|
|
|
if (!same) {
|
|
throw new Error('incorrect password');
|
|
}
|
|
|
|
await UserProfiles.update(user.id, {
|
|
twoFactorSecret: null,
|
|
twoFactorEnabled: false
|
|
});
|
|
});
|