2022-02-27 11:07:39 +09:00
|
|
|
import Channel from '../channel.js';
|
|
|
|
import { Notes } from '@/models/index.js';
|
2022-06-27 21:48:10 +09:00
|
|
|
import { isUserRelated } from '@/misc/is-user-related.js';
|
2022-02-27 11:07:39 +09:00
|
|
|
import { StreamMessages } from '../types.js';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
export default class extends Channel {
|
|
|
|
public readonly chName = 'antenna';
|
|
|
|
public static shouldShare = false;
|
|
|
|
public static requireCredential = false;
|
|
|
|
private antennaId: string;
|
|
|
|
|
2022-02-27 11:07:39 +09:00
|
|
|
constructor(id: string, connection: Channel['connection']) {
|
|
|
|
super(id, connection);
|
|
|
|
this.onEvent = this.onEvent.bind(this);
|
|
|
|
}
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
public async init(params: any) {
|
|
|
|
this.antennaId = params.antennaId as string;
|
|
|
|
|
|
|
|
// Subscribe stream
|
|
|
|
this.subscriber.on(`antennaStream:${this.antennaId}`, this.onEvent);
|
|
|
|
}
|
|
|
|
|
2021-10-21 01:04:10 +09:00
|
|
|
private async onEvent(data: StreamMessages['antenna']['payload']) {
|
|
|
|
if (data.type === 'note') {
|
|
|
|
const note = await Notes.pack(data.body.id, this.user, { detail: true });
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
// 流れてきたNoteがミュートしているユーザーが関わるものだったら無視する
|
2022-06-27 21:48:10 +09:00
|
|
|
if (isUserRelated(note, this.muting)) return;
|
2021-08-17 21:48:59 +09:00
|
|
|
// 流れてきたNoteがブロックされているユーザーが関わるものだったら無視する
|
2022-06-27 21:48:10 +09:00
|
|
|
if (isUserRelated(note, this.blocking)) return;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2021-03-21 17:38:09 +09:00
|
|
|
this.connection.cacheNote(note);
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
this.send('note', note);
|
|
|
|
} else {
|
2021-10-21 01:04:10 +09:00
|
|
|
this.send(data.type, data.body);
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public dispose() {
|
|
|
|
// Unsubscribe events
|
|
|
|
this.subscriber.off(`antennaStream:${this.antennaId}`, this.onEvent);
|
|
|
|
}
|
|
|
|
}
|