summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/stream/channels
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-06-03 17:40:21 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-06-03 17:40:21 -0400
commita9d4112bef994e9262bab50b5492623ea0f8a574 (patch)
tree6133cbaffd6c00f94f61e643bfb853f455beba97 /packages/backend/src/server/api/stream/channels
parentremove duplicate checks from home channel (diff)
downloadsharkey-a9d4112bef994e9262bab50b5492623ea0f8a574.tar.gz
sharkey-a9d4112bef994e9262bab50b5492623ea0f8a574.tar.bz2
sharkey-a9d4112bef994e9262bab50b5492623ea0f8a574.zip
copy changes to local channel
Diffstat (limited to 'packages/backend/src/server/api/stream/channels')
-rw-r--r--packages/backend/src/server/api/stream/channels/local-timeline.ts31
1 files changed, 20 insertions, 11 deletions
diff --git a/packages/backend/src/server/api/stream/channels/local-timeline.ts b/packages/backend/src/server/api/stream/channels/local-timeline.ts
index 82b128eae0..70b02d9580 100644
--- a/packages/backend/src/server/api/stream/channels/local-timeline.ts
+++ b/packages/backend/src/server/api/stream/channels/local-timeline.ts
@@ -50,28 +50,37 @@ class LocalTimelineChannel extends Channel {
@bindThis
private async onNote(note: Packed<'Note'>) {
+ const isMe = this.user!.id === note.userId;
+
if (this.withFiles && (note.fileIds == null || note.fileIds.length === 0)) return;
if (!this.withBots && note.user.isBot) return;
if (note.user.host !== null) return;
if (note.visibility !== 'public') return;
if (note.channelId != null) 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;
+ if (!this.isNoteVisibleToMe(note)) return;
// 関係ない返信は除外
- if (note.reply && this.user && !this.following[note.userId]?.withReplies && !this.withReplies) {
+ if (note.reply) {
const reply = note.reply;
- // 「チャンネル接続主への返信」でもなければ、「チャンネル接続主が行った返信」でもなければ、「投稿者の投稿者自身への返信」でもない場合
- if (reply.userId !== this.user.id && note.userId !== this.user.id && reply.userId !== note.userId) return;
+ // 自分のフォローしていないユーザーの visibility: followers な投稿への返信は弾く
+ if (!this.isNoteVisibleToMe(reply)) return;
+ if (!this.following[note.userId]?.withReplies) {
+ // 「チャンネル接続主への返信」でもなければ、「チャンネル接続主が行った返信」でもなければ、「投稿者の投稿者自身への返信」でもない場合
+ if (reply.userId !== this.user!.id && !isMe && reply.userId !== note.userId) return;
+ }
}
- if (note.user.isSilenced && !this.following[note.userId] && note.userId !== this.user!.id) return;
-
- if (isRenotePacked(note) && !isQuotePacked(note) && !this.withRenotes) return;
-
- if (this.isNoteMutedOrBlocked(note)) 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);