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