mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
* Tighten security in `HashtagChannel` * Add isNoteVisibleForMe in stream channel Co-Authored-By: Julia Johannesen <julia@insertdomain.name> * Tighten note visibility checks in WebSocket (No.1) * refactor * Fix main channel Co-Authored-By: Julia Johannesen <julia@insertdomain.name> * fix typo * fix missing lockdown (requireSigninToViewContents) checks * fix(backend): streamingでのロックダウン挙動修正 * fix: 引用リノートを無条件で隠していた問題を修正 * fix: 引用リノートを単純にリノート場合に内容が見えることがある問題を修正 * refac * fix * fix * fix * Update docs --------- Co-authored-by: Julia Johannesen <julia@insertdomain.name> Co-authored-by: KanariKanaru <93921745+kanarikanaru@users.noreply.github.com>
83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable, Scope } from '@nestjs/common';
|
|
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
import { NoteStreamingHidingService } from '../NoteStreamingHidingService.js';
|
|
import { isRenotePacked, isQuotePacked } from '@/misc/is-renote.js';
|
|
import type { GlobalEvents } from '@/core/GlobalEventService.js';
|
|
import type { JsonObject } from '@/misc/json-value.js';
|
|
import Channel, { type ChannelRequest } from '../channel.js';
|
|
import { REQUEST } from '@nestjs/core';
|
|
|
|
@Injectable({ scope: Scope.TRANSIENT })
|
|
export class RoleTimelineChannel extends Channel {
|
|
public readonly chName = 'roleTimeline';
|
|
public static shouldShare = false;
|
|
public static requireCredential = false as const;
|
|
private roleId: string;
|
|
|
|
constructor(
|
|
@Inject(REQUEST)
|
|
request: ChannelRequest,
|
|
|
|
private noteEntityService: NoteEntityService,
|
|
private roleservice: RoleService,
|
|
private noteStreamingHidingService: NoteStreamingHidingService,
|
|
) {
|
|
super(request);
|
|
//this.onNote = this.onNote.bind(this);
|
|
}
|
|
|
|
@bindThis
|
|
public async init(params: JsonObject) {
|
|
if (typeof params.roleId !== 'string') return;
|
|
this.roleId = params.roleId;
|
|
|
|
this.subscriber.on(`roleTimelineStream:${this.roleId}`, this.onEvent);
|
|
}
|
|
|
|
@bindThis
|
|
private async onEvent(data: GlobalEvents['roleTimeline']['payload']) {
|
|
if (data.type === 'note') {
|
|
const note = data.body;
|
|
|
|
if (!(await this.roleservice.isExplorable({ id: this.roleId }))) {
|
|
return;
|
|
}
|
|
if (note.visibility !== 'public') return;
|
|
if (note.user.requireSigninToViewContents && this.user == null) return;
|
|
if (note.renote && note.renote.user.requireSigninToViewContents && this.user == null) return;
|
|
if (note.reply && note.reply.user.requireSigninToViewContents && this.user == null) return;
|
|
|
|
if (this.isNoteMutedOrBlocked(note)) return;
|
|
|
|
const { shouldSkip } = await this.noteStreamingHidingService.processHiding(note, this.user?.id ?? null);
|
|
if (shouldSkip) return;
|
|
|
|
if (this.user) {
|
|
if (isRenotePacked(note) && !isQuotePacked(note)) {
|
|
if (note.renote && Object.keys(note.renote.reactions).length > 0) {
|
|
const myRenoteReaction = await this.noteEntityService.populateMyReaction(note.renote, this.user.id);
|
|
note.renote.myReaction = myRenoteReaction;
|
|
}
|
|
}
|
|
}
|
|
|
|
this.send('note', note);
|
|
} else {
|
|
this.send(data.type, data.body);
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
public dispose() {
|
|
// Unsubscribe events
|
|
this.subscriber.off(`roleTimelineStream:${this.roleId}`, this.onEvent);
|
|
}
|
|
}
|