mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 13:03:09 +02:00
34 lines
878 B
TypeScript
34 lines
878 B
TypeScript
import autobind from 'autobind-decorator';
|
|
import Channel from '../channel';
|
|
import { Mutings } from '../../../../models';
|
|
|
|
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 Mutings.find({ muterId: this.user!.id });
|
|
|
|
// Subscribe main stream channel
|
|
this.subscriber.on(`mainStream:${this.user!.id}`, async data => {
|
|
const { type, body } = data;
|
|
|
|
switch (type) {
|
|
case 'notification': {
|
|
if (mute.map(m => m.muteeId).includes(body.userId)) return;
|
|
if (body.note && body.note.isHidden) return;
|
|
break;
|
|
}
|
|
case 'mention': {
|
|
if (mute.map(m => m.muteeId).includes(body.userId)) return;
|
|
if (body.isHidden) return;
|
|
break;
|
|
}
|
|
}
|
|
|
|
this.send(type, body);
|
|
});
|
|
}
|
|
}
|