forked from mirrors/misskey
35 lines
754 B
TypeScript
35 lines
754 B
TypeScript
import bcrypt from 'bcryptjs';
|
|
import define from '../../../define.js';
|
|
import { UserProfiles } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
password: { type: 'string' },
|
|
},
|
|
required: ['password'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, 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,
|
|
});
|
|
});
|