7015df37e3
* enhance(server): Improve user block
* Update CHANGELOG.md
* ユーザーリスト対応
* 相手から見れなくなるように
* Update 1629004542760-chart-reindex.ts
2365761ba5 (commitcomment-54919821)
* update test
* add test
* add todos
* Update 1629004542760-chart-reindex.ts
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import autobind from 'autobind-decorator';
|
|
import Channel from '../channel';
|
|
import { Notes } from '../../../../models';
|
|
import { isMutedUserRelated } from '@/misc/is-muted-user-related';
|
|
import { isBlockerUserRelated } from '@/misc/is-blocker-user-related';
|
|
|
|
export default class extends Channel {
|
|
public readonly chName = 'antenna';
|
|
public static shouldShare = false;
|
|
public static requireCredential = false;
|
|
private antennaId: string;
|
|
|
|
@autobind
|
|
public async init(params: any) {
|
|
this.antennaId = params.antennaId as string;
|
|
|
|
// Subscribe stream
|
|
this.subscriber.on(`antennaStream:${this.antennaId}`, this.onEvent);
|
|
}
|
|
|
|
@autobind
|
|
private async onEvent(data: any) {
|
|
const { type, body } = data;
|
|
|
|
if (type === 'note') {
|
|
const note = await Notes.pack(body.id, this.user, { detail: true });
|
|
|
|
// 流れてきたNoteがミュートしているユーザーが関わるものだったら無視する
|
|
if (isMutedUserRelated(note, this.muting)) return;
|
|
// 流れてきたNoteがブロックされているユーザーが関わるものだったら無視する
|
|
if (isBlockerUserRelated(note, this.blocking)) return;
|
|
|
|
this.connection.cacheNote(note);
|
|
|
|
this.send('note', note);
|
|
} else {
|
|
this.send(type, body);
|
|
}
|
|
}
|
|
|
|
@autobind
|
|
public dispose() {
|
|
// Unsubscribe events
|
|
this.subscriber.off(`antennaStream:${this.antennaId}`, this.onEvent);
|
|
}
|
|
}
|