Sharkey/src/server/api/stream/channels/main.ts

29 lines
695 B
TypeScript
Raw Normal View History

import autobind from 'autobind-decorator';
import Mute from '../../../../models/mute';
import Channel from '../channel';
export default class extends Channel {
public readonly chName = 'main';
public readonly shouldShare = 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': {
2018-10-07 19:56:36 +03:00
if (mutedUserIds.includes(body.userId)) return;
break;
}
}
2018-10-07 19:56:36 +03:00
this.send(type, body);
});
}
}