2023-04-12 02:13:58 +02:00
|
|
|
import { IsNull, Not } from 'typeorm';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-04-04 07:06:57 +02:00
|
|
|
import type { UsersRepository, FollowingsRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import type { User } from '@/models/entities/User.js';
|
2023-04-12 02:13:58 +02:00
|
|
|
import type { RelationshipJobData } from '@/queue/types.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
|
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 07:03:09 +01:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-01-12 13:02:26 +01:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
2023-04-12 02:13:58 +02:00
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-06-04 16:48:23 +02:00
|
|
|
export default class extends Endpoint<'admin/suspend-user'> {
|
|
|
|
|
name = 'admin/suspend-user' as const;
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
|
|
private userSuspendService: UserSuspendService,
|
2023-01-12 13:02:26 +01:00
|
|
|
private roleService: RoleService,
|
2022-09-17 20:27:08 +02:00
|
|
|
private moderationLogService: ModerationLogService,
|
2023-04-12 02:13:58 +02:00
|
|
|
private queueService: QueueService,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
2023-06-04 16:48:23 +02:00
|
|
|
super(async (ps, me) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
|
|
|
|
|
|
if (user == null) {
|
|
|
|
|
throw new Error('user not found');
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-12 13:02:26 +01:00
|
|
|
if (await this.roleService.isModerator(user)) {
|
|
|
|
|
throw new Error('cannot suspend moderator account');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
|
|
|
isSuspended: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.moderationLogService.insertModerationLog(me, 'suspend', {
|
|
|
|
|
targetId: user.id,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
|
await this.userSuspendService.doPostSuspend(user).catch(e => {});
|
2022-09-18 20:11:50 +02:00
|
|
|
await this.unFollowAll(user).catch(e => {});
|
2022-09-17 20:27:08 +02:00
|
|
|
})();
|
|
|
|
|
});
|
2021-07-18 12:57:53 +02:00
|
|
|
}
|
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-09-18 20:11:50 +02:00
|
|
|
private async unFollowAll(follower: User) {
|
2023-04-12 02:13:58 +02:00
|
|
|
const followings = await this.followingsRepository.find({
|
|
|
|
|
where: {
|
|
|
|
|
followerId: follower.id,
|
|
|
|
|
followeeId: Not(IsNull()),
|
|
|
|
|
},
|
2019-03-14 07:16:07 +01:00
|
|
|
});
|
2023-04-12 02:13:58 +02:00
|
|
|
|
|
|
|
|
const jobs: RelationshipJobData[] = [];
|
2022-09-17 20:27:08 +02:00
|
|
|
for (const following of followings) {
|
2023-04-12 02:13:58 +02:00
|
|
|
if (following.followeeId && following.followerId) {
|
|
|
|
|
jobs.push({
|
|
|
|
|
from: { id: following.followerId },
|
|
|
|
|
to: { id: following.followeeId },
|
|
|
|
|
silent: true,
|
|
|
|
|
});
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
2019-03-14 07:16:07 +01:00
|
|
|
}
|
2023-04-12 02:13:58 +02:00
|
|
|
this.queueService.createUnfollowJob(jobs);
|
2019-03-14 07:16:07 +01:00
|
|
|
}
|
2020-01-01 18:47:20 +01:00
|
|
|
}
|