
* wip * Update CHANGELOG.md * wip * wip * wip * Update create.ts * wip * wip * Update CHANGELOG.md * wip * wip * wip * wip * wip * wip * wip * Update CHANGELOG.md * wip * wip * Update delete.ts * Update delete.ts * wip * wip * wip * Update account-info.vue * wip * wip * Update settings.vue * Update user-info.vue * wip * Update show-file.ts * Update show-user.ts * wip * wip * Update delete.ts * wip * wip * Update overview.moderators.vue * Create 1673500412259-Role.js * wip * wip * Update roles.vue * 色 * Update roles.vue * integrate silence * wip * wip
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
import { QueueService } from '@/core/QueueService.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireAdmin: true,
|
|
} 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 userEntityService: UserEntityService,
|
|
private queueService: QueueService,
|
|
private globalEventService: GlobalEventService,
|
|
private userSuspendService: UserSuspendService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
if (user.isRoot) {
|
|
throw new Error('cannot delete a root account');
|
|
}
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
|
// 物理削除する前にDelete activityを送信する
|
|
await this.userSuspendService.doPostSuspend(user).catch(err => {});
|
|
|
|
this.queueService.createDeleteAccountJob(user, {
|
|
soft: false,
|
|
});
|
|
} else {
|
|
this.queueService.createDeleteAccountJob(user, {
|
|
soft: true, // リモートユーザーの削除は、完全にDBから物理削除してしまうと再度連合してきてアカウントが復活する可能性があるため、soft指定する
|
|
});
|
|
}
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
isDeleted: true,
|
|
});
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
|
// Terminate streaming
|
|
this.globalEventService.publishUserEvent(user.id, 'terminate', {});
|
|
}
|
|
});
|
|
}
|
|
}
|