2018-10-07 11:06:17 +09:00
|
|
|
import autobind from 'autobind-decorator';
|
2021-08-19 21:55:45 +09:00
|
|
|
import Channel from '../channel';
|
|
|
|
import { Notes } from '@/models/index';
|
2021-12-09 21:38:56 +09:00
|
|
|
import { isInstanceMuted, isUserFromMutedInstance } from '@/misc/is-instance-muted';
|
2018-10-07 11:06:17 +09:00
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 23:01:57 +09:00
|
|
|
public readonly chName = 'main';
|
2018-10-11 23:07:20 +09:00
|
|
|
public static shouldShare = true;
|
2018-11-11 02:22:34 +09:00
|
|
|
public static requireCredential = true;
|
2018-10-11 23:01:57 +09:00
|
|
|
|
2018-10-07 11:06:17 +09:00
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe main stream channel
|
2019-04-13 01:43:22 +09:00
|
|
|
this.subscriber.on(`mainStream:${this.user!.id}`, async data => {
|
2021-10-21 01:04:10 +09:00
|
|
|
switch (data.type) {
|
2018-10-07 11:06:17 +09:00
|
|
|
case 'notification': {
|
2021-12-09 21:38:56 +09:00
|
|
|
// Ignore notifications from instances the user has muted
|
|
|
|
if (isUserFromMutedInstance(data.body, new Set<string>(this.userProfile?.mutedInstances ?? []))) return;
|
2021-10-21 01:04:10 +09:00
|
|
|
if (data.body.userId && this.muting.has(data.body.userId)) return;
|
|
|
|
|
|
|
|
if (data.body.note && data.body.note.isHidden) {
|
|
|
|
const note = await Notes.pack(data.body.note.id, this.user, {
|
2019-09-24 03:58:00 +09:00
|
|
|
detail: true
|
|
|
|
});
|
2021-03-21 17:38:09 +09:00
|
|
|
this.connection.cacheNote(note);
|
2021-10-21 01:04:10 +09:00
|
|
|
data.body.note = note;
|
2019-09-24 03:58:00 +09:00
|
|
|
}
|
2019-01-25 00:06:20 +09:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'mention': {
|
2021-12-09 21:38:56 +09:00
|
|
|
if (isInstanceMuted(data.body, new Set<string>(this.userProfile?.mutedInstances ?? []))) return;
|
|
|
|
|
2021-10-21 01:04:10 +09:00
|
|
|
if (this.muting.has(data.body.userId)) return;
|
|
|
|
if (data.body.isHidden) {
|
|
|
|
const note = await Notes.pack(data.body.id, this.user, {
|
2019-09-24 03:58:00 +09:00
|
|
|
detail: true
|
|
|
|
});
|
2021-03-21 17:38:09 +09:00
|
|
|
this.connection.cacheNote(note);
|
2021-10-21 01:04:10 +09:00
|
|
|
data.body = note;
|
2019-09-24 03:58:00 +09:00
|
|
|
}
|
2018-10-07 11:06:17 +09:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-10-08 01:56:36 +09:00
|
|
|
|
2021-10-21 01:04:10 +09:00
|
|
|
this.send(data.type, data.body);
|
2018-10-07 11:06:17 +09:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|