2018-10-07 02:06:17 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
|
|
|
import Mute from '../../../../models/mute';
|
|
|
|
import Channel from '../channel';
|
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 14:01:57 +00:00
|
|
|
public readonly chName = 'main';
|
2018-10-11 14:07:20 +00:00
|
|
|
public static shouldShare = true;
|
2018-11-10 17:22:34 +00:00
|
|
|
public static requireCredential = true;
|
2018-10-11 14:01:57 +00:00
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
@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': {
|
2018-10-07 16:56:36 +00:00
|
|
|
if (mutedUserIds.includes(body.userId)) return;
|
2018-10-07 02:06:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-10-07 16:56:36 +00:00
|
|
|
|
|
|
|
this.send(type, body);
|
2018-10-07 02:06:17 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|