9e4d3ebe5f
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update DriveService.ts
96 lines
2.6 KiB
TypeScript
96 lines
2.6 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { IsNull, Not } from 'typeorm';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UsersRepository, FollowingsRepository } from '@/models/_.js';
|
|
import type { MiUser } from '@/models/User.js';
|
|
import type { RelationshipJobData } from '@/queue/types.js';
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
import { QueueService } from '@/core/QueueService.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['userId'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
@Inject(DI.followingsRepository)
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
private userSuspendService: UserSuspendService,
|
|
private roleService: RoleService,
|
|
private moderationLogService: ModerationLogService,
|
|
private queueService: QueueService,
|
|
) {
|
|
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 (await this.roleService.isModerator(user)) {
|
|
throw new Error('cannot suspend moderator account');
|
|
}
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
isSuspended: true,
|
|
});
|
|
|
|
this.moderationLogService.log(me, 'suspend', {
|
|
targetId: user.id,
|
|
});
|
|
|
|
(async () => {
|
|
await this.userSuspendService.doPostSuspend(user).catch(e => {});
|
|
await this.unFollowAll(user).catch(e => {});
|
|
})();
|
|
});
|
|
}
|
|
|
|
@bindThis
|
|
private async unFollowAll(follower: MiUser) {
|
|
const followings = await this.followingsRepository.find({
|
|
where: {
|
|
followerId: follower.id,
|
|
followeeId: Not(IsNull()),
|
|
},
|
|
});
|
|
|
|
const jobs: RelationshipJobData[] = [];
|
|
for (const following of followings) {
|
|
if (following.followeeId && following.followerId) {
|
|
jobs.push({
|
|
from: { id: following.followerId },
|
|
to: { id: following.followeeId },
|
|
silent: true,
|
|
});
|
|
}
|
|
}
|
|
this.queueService.createUnfollowJob(jobs);
|
|
}
|
|
}
|