forked from mirror/misskey
5eca0a31f7
* Fix: 非公開投稿が返信一覧に出てくる * Fix: 非公開投稿がメンション一覧に出てくる * 非公開投稿は通知/メンション通知しない * repliesにフォロワー限定がかからなかったのを修正 * Fix: ホームにフォロワー限定投稿が表示されない * 認証必須エンドポイントで user == null にはならない * mentionsにフォロワー限定がかからなかったのを修正
35 lines
856 B
TypeScript
35 lines
856 B
TypeScript
import autobind from 'autobind-decorator';
|
|
import Mute from '../../../../models/mute';
|
|
import Channel from '../channel';
|
|
|
|
export default class extends Channel {
|
|
public readonly chName = 'main';
|
|
public static shouldShare = true;
|
|
public static requireCredential = true;
|
|
|
|
@autobind
|
|
public async init(params: any) {
|
|
const mute = await Mute.find({ muterId: this.user._id });
|
|
const mutedUserIds = mute.map(m => m.muteeId.toString());
|
|
|
|
// Subscribe main stream channel
|
|
this.subscriber.on(`mainStream:${this.user._id}`, async data => {
|
|
const { type, body } = data;
|
|
|
|
switch (type) {
|
|
case 'notification': {
|
|
if (mutedUserIds.includes(body.userId)) return;
|
|
if (body.note && body.note.isHidden) return;
|
|
break;
|
|
}
|
|
case 'mention': {
|
|
if (body.isHidden) return;
|
|
break;
|
|
}
|
|
}
|
|
|
|
this.send(type, body);
|
|
});
|
|
}
|
|
}
|