2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import type { NotesRepository } from '@/models/index.js';
|
2022-06-27 21:48:10 +09:00
|
|
|
import { isUserRelated } from '@/misc/is-user-related.js';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
|
|
|
|
import Channel from '../channel.js';
|
|
|
|
import type { StreamMessages } from '../types.js';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
class AntennaChannel extends Channel {
|
2020-01-30 04:37:25 +09:00
|
|
|
public readonly chName = 'antenna';
|
|
|
|
public static shouldShare = false;
|
|
|
|
public static requireCredential = false;
|
|
|
|
private antennaId: string;
|
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
constructor(
|
|
|
|
private noteEntityService: NoteEntityService,
|
|
|
|
|
|
|
|
id: string,
|
|
|
|
connection: Channel['connection'],
|
|
|
|
) {
|
2022-02-27 11:07:39 +09:00
|
|
|
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') {
|
2022-09-18 03:27:08 +09:00
|
|
|
const note = await this.noteEntityService.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);
|
|
|
|
}
|
|
|
|
}
|
2022-09-18 03:27:08 +09:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class AntennaChannelService {
|
|
|
|
public readonly shouldShare = AntennaChannel.shouldShare;
|
|
|
|
public readonly requireCredential = AntennaChannel.requireCredential;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private noteEntityService: NoteEntityService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public create(id: string, connection: Channel['connection']): AntennaChannel {
|
|
|
|
return new AntennaChannel(
|
|
|
|
this.noteEntityService,
|
|
|
|
id,
|
|
|
|
connection,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|