2022-02-27 02:07:39 +00:00
|
|
|
import bcrypt from 'bcryptjs';
|
|
|
|
import define from '../../../define.js';
|
|
|
|
import { UserProfiles } from '@/models/index.js';
|
2017-12-09 17:45:32 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-11-02 03:49:08 +00:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2018-11-02 03:49:08 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
password: { type: 'string' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['password'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-07-16 19:36:44 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-03-26 06:34:00 +00:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: user.id });
|
2019-04-10 06:04:27 +00:00
|
|
|
|
2017-12-09 17:45:32 +00:00
|
|
|
// Compare password
|
2019-04-12 16:43:22 +00:00
|
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
2017-12-09 17:45:32 +00:00
|
|
|
|
|
|
|
if (!same) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('incorrect password');
|
2017-12-09 17:45:32 +00:00
|
|
|
}
|
|
|
|
|
2020-01-31 22:16:52 +00:00
|
|
|
await UserProfiles.update(user.id, {
|
2019-04-07 12:50:36 +00:00
|
|
|
twoFactorSecret: null,
|
2021-12-09 14:58:30 +00:00
|
|
|
twoFactorEnabled: false,
|
2017-12-09 17:45:32 +00:00
|
|
|
});
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|