2018-10-06 21:06:17 -05:00
|
|
|
import autobind from 'autobind-decorator';
|
2020-07-27 19:36:43 -05:00
|
|
|
import { isMutedUserRelated } from '../../../../misc/is-muted-user-related';
|
2018-10-06 21:06:17 -05:00
|
|
|
import Channel from '../channel';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { Notes } from '../../../../models';
|
2019-04-23 08:35:26 -05:00
|
|
|
import { PackedNote } from '../../../../models/repositories/note';
|
2020-07-26 23:34:20 -05:00
|
|
|
import { checkWordMute } from '../../../../misc/check-word-mute';
|
2018-10-06 21:06:17 -05:00
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 09:01:57 -05:00
|
|
|
public readonly chName = 'homeTimeline';
|
2018-10-11 09:07:20 -05:00
|
|
|
public static shouldShare = true;
|
2018-11-10 11:22:34 -06:00
|
|
|
public static requireCredential = true;
|
2018-10-11 09:01:57 -05:00
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe events
|
2019-04-07 07:50:36 -05:00
|
|
|
this.subscriber.on('notesStream', this.onNote);
|
2018-10-06 21:06:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-23 08:35:26 -05:00
|
|
|
private async onNote(note: PackedNote) {
|
2020-08-18 08:44:21 -05:00
|
|
|
if (note.channelId) {
|
2021-01-29 20:09:46 -06:00
|
|
|
if (!this.followingChannels.has(note.channelId)) return;
|
2020-08-18 08:44:21 -05:00
|
|
|
} else {
|
|
|
|
// その投稿のユーザーをフォローしていなかったら弾く
|
2021-01-29 20:09:46 -06:00
|
|
|
if ((this.user!.id !== note.userId) && !this.following.has(note.userId)) return;
|
2020-08-18 08:44:21 -05:00
|
|
|
}
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
if (['followers', 'specified'].includes(note.visibility)) {
|
2019-04-12 11:43:22 -05:00
|
|
|
note = await Notes.pack(note.id, this.user!, {
|
2018-10-06 21:06:17 -05:00
|
|
|
detail: true
|
|
|
|
});
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
if (note.isHidden) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// リプライなら再pack
|
|
|
|
if (note.replyId != null) {
|
2019-04-12 11:43:22 -05:00
|
|
|
note.reply = await Notes.pack(note.replyId, this.user!, {
|
2019-04-07 07:50:36 -05:00
|
|
|
detail: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Renoteなら再pack
|
|
|
|
if (note.renoteId != null) {
|
2019-04-12 11:43:22 -05:00
|
|
|
note.renote = await Notes.pack(note.renoteId, this.user!, {
|
2019-04-07 07:50:36 -05:00
|
|
|
detail: true
|
|
|
|
});
|
|
|
|
}
|
2018-10-06 21:06:17 -05:00
|
|
|
}
|
|
|
|
|
2020-02-13 07:13:24 -06:00
|
|
|
// 関係ない返信は除外
|
|
|
|
if (note.reply) {
|
|
|
|
// 「チャンネル接続主への返信」でもなければ、「チャンネル接続主が行った返信」でもなければ、「投稿者の投稿者自身への返信」でもない場合
|
|
|
|
if (note.reply.userId !== this.user!.id && note.userId !== this.user!.id && note.reply.userId !== note.userId) return;
|
|
|
|
}
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
// 流れてきたNoteがミュートしているユーザーが関わるものだったら無視する
|
2020-07-27 19:36:43 -05:00
|
|
|
if (isMutedUserRelated(note, this.muting)) return;
|
2018-10-06 21:06:17 -05:00
|
|
|
|
2020-07-26 23:34:20 -05:00
|
|
|
// 流れてきたNoteがミュートすべきNoteだったら無視する
|
|
|
|
// TODO: 将来的には、単にMutedNoteテーブルにレコードがあるかどうかで判定したい(以下の理由により難しそうではある)
|
|
|
|
// 現状では、ワードミュートにおけるMutedNoteレコードの追加処理はストリーミングに流す処理と並列で行われるため、
|
|
|
|
// レコードが追加されるNoteでも追加されるより先にここのストリーミングの処理に到達することが起こる。
|
|
|
|
// そのためレコードが存在するかのチェックでは不十分なので、改めてcheckWordMuteを呼んでいる
|
|
|
|
if (this.userProfile && await checkWordMute(note, this.user, this.userProfile.mutedWords)) return;
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
this.send('note', note);
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public dispose() {
|
|
|
|
// Unsubscribe events
|
2019-04-07 07:50:36 -05:00
|
|
|
this.subscriber.off('notesStream', this.onNote);
|
2018-10-06 21:06:17 -05:00
|
|
|
}
|
|
|
|
}
|