2022-02-27 02:07:39 +00:00
|
|
|
import bcrypt from 'bcryptjs';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository, UserProfilesRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DeleteAccountService } from '@/core/DeleteAccountService.js';
|
|
|
|
import { DI } from '@/di-symbols.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-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2019-04-10 06:04:27 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
2019-02-20 16:30:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
private deleteAccountService: DeleteAccountService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: me.id });
|
|
|
|
const userDetailed = await this.usersRepository.findOneByOrFail({ id: me.id });
|
|
|
|
if (userDetailed.isDeleted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compare password
|
|
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
2019-02-20 16:30:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (!same) {
|
|
|
|
throw new Error('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.deleteAccountService.deleteAccount(me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|