2022-02-27 02:07:39 +00:00
|
|
|
import bcrypt from 'bcryptjs';
|
|
|
|
import { UserProfiles, Users } from '@/models/index.js';
|
2022-06-27 14:49:16 +00:00
|
|
|
import { deleteAccount } from '@/services/delete-account.js';
|
|
|
|
import define from '../../define.js';
|
2019-02-20 16:30:21 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2019-02-20 16:30:21 +00:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2019-02-20 16:30:21 +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;
|
2019-02-20 16:30:21 +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 });
|
|
|
|
const userDetailed = await Users.findOneByOrFail({ id: user.id });
|
2021-08-21 03:41:56 +00:00
|
|
|
if (userDetailed.isDeleted) {
|
|
|
|
return;
|
|
|
|
}
|
2019-04-10 06:04:27 +00:00
|
|
|
|
2019-02-20 16:30:21 +00:00
|
|
|
// Compare password
|
2019-04-12 16:43:22 +00:00
|
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
2019-02-20 16:30:21 +00:00
|
|
|
|
|
|
|
if (!same) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('incorrect password');
|
2019-02-20 16:30:21 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 14:49:16 +00:00
|
|
|
await deleteAccount(user);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|