2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-04-11 19:13:58 -05:00
|
|
|
import { IsNull, Not } from 'typeorm';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { UsersRepository, FollowingsRepository } from '@/models/_.js';
|
2023-09-19 21:33:36 -05:00
|
|
|
import type { MiUser } from '@/models/User.js';
|
2023-04-11 19:13:58 -05:00
|
|
|
import type { RelationshipJobData } from '@/queue/types.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 00:03:09 -06:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-01-12 06:02:26 -06:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
2023-04-11 19:13:58 -05:00
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
2018-08-13 11:05:58 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-11-14 13:15:42 -06:00
|
|
|
requireModerator: true,
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2018-08-17 05:17:23 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['userId'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-08-13 11:05:58 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
private userSuspendService: UserSuspendService,
|
2023-01-12 06:02:26 -06:00
|
|
|
private roleService: RoleService,
|
2022-09-17 13:27:08 -05:00
|
|
|
private moderationLogService: ModerationLogService,
|
2023-04-11 19:13:58 -05:00
|
|
|
private queueService: QueueService,
|
2022-09-17 13:27:08 -05:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
|
|
|
|
if (user == null) {
|
|
|
|
throw new Error('user not found');
|
|
|
|
}
|
|
|
|
|
2023-01-12 06:02:26 -06:00
|
|
|
if (await this.roleService.isModerator(user)) {
|
|
|
|
throw new Error('cannot suspend moderator account');
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
|
|
isSuspended: true,
|
|
|
|
});
|
|
|
|
|
2023-09-23 04:28:16 -05:00
|
|
|
this.moderationLogService.log(me, 'suspend', {
|
2023-09-24 20:29:12 -05:00
|
|
|
userId: user.id,
|
|
|
|
userUsername: user.username,
|
|
|
|
userHost: user.host,
|
2022-09-17 13:27:08 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
await this.userSuspendService.doPostSuspend(user).catch(e => {});
|
2022-09-18 13:11:50 -05:00
|
|
|
await this.unFollowAll(user).catch(e => {});
|
2022-09-17 13:27:08 -05:00
|
|
|
})();
|
|
|
|
});
|
2021-07-18 05:57:53 -05:00
|
|
|
}
|
|
|
|
|
2022-12-04 00:03:09 -06:00
|
|
|
@bindThis
|
2023-08-16 03:51:28 -05:00
|
|
|
private async unFollowAll(follower: MiUser) {
|
2023-04-11 19:13:58 -05:00
|
|
|
const followings = await this.followingsRepository.find({
|
|
|
|
where: {
|
|
|
|
followerId: follower.id,
|
|
|
|
followeeId: Not(IsNull()),
|
|
|
|
},
|
2019-03-14 01:16:07 -05:00
|
|
|
});
|
2023-04-11 19:13:58 -05:00
|
|
|
|
|
|
|
const jobs: RelationshipJobData[] = [];
|
2022-09-17 13:27:08 -05:00
|
|
|
for (const following of followings) {
|
2023-04-11 19:13:58 -05:00
|
|
|
if (following.followeeId && following.followerId) {
|
|
|
|
jobs.push({
|
|
|
|
from: { id: following.followerId },
|
|
|
|
to: { id: following.followeeId },
|
|
|
|
silent: true,
|
|
|
|
});
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|
2019-03-14 01:16:07 -05:00
|
|
|
}
|
2023-04-11 19:13:58 -05:00
|
|
|
this.queueService.createUnfollowJob(jobs);
|
2019-03-14 01:16:07 -05:00
|
|
|
}
|
2020-01-01 11:47:20 -06:00
|
|
|
}
|