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