43 lines
1 KiB
TypeScript
43 lines
1 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { DeleteAccountService } from '@/core/DeleteAccountService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireAdmin: true,
|
|
|
|
res: {
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['userId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
private deleteAccountService: DeleteAccountService,
|
|
) {
|
|
super(meta, paramDef, async (ps) => {
|
|
const user = await this.usersRepository.findOneByOrFail({ id: ps.userId });
|
|
if (user.isDeleted) {
|
|
return;
|
|
}
|
|
|
|
await this.deleteAccountService.deleteAccount(user);
|
|
});
|
|
}
|
|
}
|