2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository, FollowingsRepository, NotificationsRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
|
|
import { UserFollowingService } from '@/core/UserFollowingService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2018-08-13 16:05:58 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-11-14 19:15:42 +00:00
|
|
|
requireModerator: true,
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2018-08-17 10:17:23 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['userId'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-08-13 16:05:58 +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,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.notificationsRepository)
|
|
|
|
private notificationsRepository: NotificationsRepository,
|
|
|
|
|
|
|
|
private userFollowingService: UserFollowingService,
|
|
|
|
private userSuspendService: UserSuspendService,
|
|
|
|
private moderationLogService: ModerationLogService,
|
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
) {
|
|
|
|
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.isAdmin) {
|
|
|
|
throw new Error('cannot suspend admin');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user.isModerator) {
|
|
|
|
throw new Error('cannot suspend moderator');
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
|
|
isSuspended: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.moderationLogService.insertModerationLog(me, 'suspend', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Terminate streaming
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
|
|
|
this.globalEventService.publishUserEvent(user.id, 'terminate', {});
|
|
|
|
}
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
await this.userSuspendService.doPostSuspend(user).catch(e => {});
|
2022-09-18 18:11:50 +00:00
|
|
|
await this.unFollowAll(user).catch(e => {});
|
|
|
|
await this.readAllNotify(user).catch(e => {});
|
2022-09-17 18:27:08 +00:00
|
|
|
})();
|
|
|
|
});
|
2021-07-18 10:57:53 +00:00
|
|
|
}
|
|
|
|
|
2022-09-18 18:11:50 +00:00
|
|
|
private async unFollowAll(follower: User) {
|
2022-09-17 18:27:08 +00:00
|
|
|
const followings = await this.followingsRepository.findBy({
|
|
|
|
followerId: follower.id,
|
2019-03-14 06:16:07 +00:00
|
|
|
});
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
for (const following of followings) {
|
|
|
|
const followee = await this.usersRepository.findOneBy({
|
|
|
|
id: following.followeeId,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (followee == null) {
|
|
|
|
throw `Cant find followee ${following.followeeId}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.userFollowingService.unfollow(follower, followee, true);
|
2019-03-14 06:16:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
|
2022-09-18 18:11:50 +00:00
|
|
|
private async readAllNotify(notifier: User) {
|
2022-09-17 18:27:08 +00:00
|
|
|
await this.notificationsRepository.update({
|
|
|
|
notifierId: notifier.id,
|
|
|
|
isRead: false,
|
|
|
|
}, {
|
|
|
|
isRead: true,
|
|
|
|
});
|
|
|
|
}
|
2020-01-01 17:47:20 +00:00
|
|
|
}
|