/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import { Inject, Injectable } from '@nestjs/common'; import type { MiUserListMembership, UserListMembershipsRepository, UserListsRepository } from '@/models/_.js'; import type { Packed } from '@/misc/json-schema.js'; import { NoteEntityService } from '@/core/entities/NoteEntityService.js'; import { DI } from '@/di-symbols.js'; import { bindThis } from '@/decorators.js'; import { isRenotePacked, isQuotePacked } from '@/misc/is-renote.js'; import type { JsonObject } from '@/misc/json-value.js'; import Channel, { type MiChannelService } from '../channel.js'; class UserListChannel extends Channel { public readonly chName = 'userList'; public static shouldShare = false; public static requireCredential = true as const; public static kind = 'read:account'; private listId: string; private membershipsMap: Record | undefined> = {}; private listUsersClock: NodeJS.Timeout; private withFiles: boolean; private withRenotes: boolean; constructor( private userListsRepository: UserListsRepository, private userListMembershipsRepository: UserListMembershipsRepository, noteEntityService: NoteEntityService, id: string, connection: Channel['connection'], ) { super(id, connection, noteEntityService); //this.updateListUsers = this.updateListUsers.bind(this); //this.onNote = this.onNote.bind(this); } @bindThis public async init(params: JsonObject) { if (typeof params.listId !== 'string') return; this.listId = params.listId; this.withFiles = !!(params.withFiles ?? false); this.withRenotes = !!(params.withRenotes ?? true); // Check existence and owner const listExist = await this.userListsRepository.exists({ where: { id: this.listId, userId: this.user!.id, }, }); if (!listExist) return; // Subscribe stream this.subscriber.on(`userListStream:${this.listId}`, this.send); this.subscriber.on('notesStream', this.onNote); this.updateListUsers(); this.listUsersClock = setInterval(this.updateListUsers, 5000); } @bindThis private async updateListUsers() { const memberships = await this.userListMembershipsRepository.find({ where: { userListId: this.listId, }, select: ['userId'], }); const membershipsMap: Record | undefined> = {}; for (const membership of memberships) { membershipsMap[membership.userId] = { withReplies: membership.withReplies, }; } this.membershipsMap = membershipsMap; } @bindThis private async onNote(note: Packed<'Note'>) { const isMe = this.user?.id === note.userId; // チャンネル投稿は無視する if (note.channelId) return; if (this.withFiles && (note.fileIds == null || note.fileIds.length === 0)) return; if (!Object.hasOwn(this.membershipsMap, note.userId)) return; if (this.isNoteMutedOrBlocked(note)) return; if (!this.isNoteVisibleToMe(note)) return; if (note.reply) { const reply = note.reply; // 自分のフォローしていないユーザーの visibility: followers な投稿への返信は弾く if (!this.isNoteVisibleToMe(reply)) return; if (!this.following.get(note.userId)?.withReplies) { // 「チャンネル接続主への返信」でもなければ、「チャンネル接続主が行った返信」でもなければ、「投稿者の投稿者自身への返信」でもない場合 if (reply.userId !== this.user!.id && !isMe && reply.userId !== note.userId) return; } } // 純粋なリノート(引用リノートでないリノート)の場合 if (isRenotePacked(note) && !isQuotePacked(note) && note.renote) { if (!this.withRenotes) return; if (note.renote.reply) { const reply = note.renote.reply; // 自分のフォローしていないユーザーの visibility: followers な投稿への返信のリノートは弾く if (!this.isNoteVisibleToMe(reply)) return; } } const clonedNote = await this.assignMyReaction(note); await this.hideNote(clonedNote); this.send('note', clonedNote); } @bindThis public dispose() { // Unsubscribe events this.subscriber.off(`userListStream:${this.listId}`, this.send); this.subscriber.off('notesStream', this.onNote); clearInterval(this.listUsersClock); } } @Injectable() export class UserListChannelService implements MiChannelService { public readonly shouldShare = UserListChannel.shouldShare; public readonly requireCredential = UserListChannel.requireCredential; public readonly kind = UserListChannel.kind; constructor( @Inject(DI.userListsRepository) private userListsRepository: UserListsRepository, @Inject(DI.userListMembershipsRepository) private userListMembershipsRepository: UserListMembershipsRepository, private noteEntityService: NoteEntityService, ) { } @bindThis public create(id: string, connection: Channel['connection']): UserListChannel { return new UserListChannel( this.userListsRepository, this.userListMembershipsRepository, this.noteEntityService, id, connection, ); } }