2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Not, IsNull } from 'typeorm';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { FollowingsRepository, UsersRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { Config } from '@/config.js';
|
2022-12-04 01:16:03 +00:00
|
|
|
import { ApRendererService } from '@/core/activitypub/ApRendererService.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class UserSuspendService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private queueService: QueueService,
|
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
private apRendererService: ApRendererService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async doPostSuspend(user: { id: User['id']; host: User['host'] }): Promise<void> {
|
|
|
|
this.globalEventService.publishInternalEvent('userChangeSuspendedState', { id: user.id, isSuspended: true });
|
|
|
|
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
|
|
|
// 知り得る全SharedInboxにDelete配信
|
2023-02-12 09:47:30 +00:00
|
|
|
const content = this.apRendererService.addContext(this.apRendererService.renderDelete(`${this.config.url}/users/${user.id}`, user));
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
const queue: string[] = [];
|
|
|
|
|
|
|
|
const followings = await this.followingsRepository.find({
|
|
|
|
where: [
|
|
|
|
{ followerSharedInbox: Not(IsNull()) },
|
|
|
|
{ followeeSharedInbox: Not(IsNull()) },
|
|
|
|
],
|
|
|
|
select: ['followerSharedInbox', 'followeeSharedInbox'],
|
|
|
|
});
|
|
|
|
|
|
|
|
const inboxes = followings.map(x => x.followerSharedInbox ?? x.followeeSharedInbox);
|
|
|
|
|
|
|
|
for (const inbox of inboxes) {
|
|
|
|
if (inbox != null && !queue.includes(inbox)) queue.push(inbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const inbox of queue) {
|
|
|
|
this.queueService.deliver(user, content, inbox);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async doPostUnsuspend(user: User): Promise<void> {
|
|
|
|
this.globalEventService.publishInternalEvent('userChangeSuspendedState', { id: user.id, isSuspended: false });
|
|
|
|
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
|
|
|
// 知り得る全SharedInboxにUndo Delete配信
|
2023-02-12 09:47:30 +00:00
|
|
|
const content = this.apRendererService.addContext(this.apRendererService.renderUndo(this.apRendererService.renderDelete(`${this.config.url}/users/${user.id}`, user), user));
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
const queue: string[] = [];
|
|
|
|
|
|
|
|
const followings = await this.followingsRepository.find({
|
|
|
|
where: [
|
|
|
|
{ followerSharedInbox: Not(IsNull()) },
|
|
|
|
{ followeeSharedInbox: Not(IsNull()) },
|
|
|
|
],
|
|
|
|
select: ['followerSharedInbox', 'followeeSharedInbox'],
|
|
|
|
});
|
|
|
|
|
|
|
|
const inboxes = followings.map(x => x.followerSharedInbox ?? x.followeeSharedInbox);
|
|
|
|
|
|
|
|
for (const inbox of inboxes) {
|
|
|
|
if (inbox != null && !queue.includes(inbox)) queue.push(inbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const inbox of queue) {
|
|
|
|
this.queueService.deliver(user as any, content, inbox);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|