* chore: add JsonValue type * refactor: kill any from Connection.ts * refactor: fix StreamEventEmitter contains undefined instead of null * refactor: kill any from channels * docs(changelog): Fix: Steaming APIが不正なデータを受けた場合の動作が不安定である問題 * fix license header * fix lints
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { bindThis } from '@/decorators.js';
|
|
import type { JsonObject } from '@/misc/json-value.js';
|
|
import Channel, { type MiChannelService } from '../channel.js';
|
|
|
|
class ReversiChannel extends Channel {
|
|
public readonly chName = 'reversi';
|
|
public static shouldShare = true;
|
|
public static requireCredential = true as const;
|
|
public static kind = 'read:account';
|
|
|
|
constructor(
|
|
id: string,
|
|
connection: Channel['connection'],
|
|
) {
|
|
super(id, connection);
|
|
}
|
|
|
|
@bindThis
|
|
public async init(params: JsonObject) {
|
|
this.subscriber.on(`reversiStream:${this.user!.id}`, this.send);
|
|
}
|
|
|
|
@bindThis
|
|
public dispose() {
|
|
// Unsubscribe events
|
|
this.subscriber.off(`reversiStream:${this.user!.id}`, this.send);
|
|
}
|
|
}
|
|
|
|
@Injectable()
|
|
export class ReversiChannelService implements MiChannelService<true> {
|
|
public readonly shouldShare = ReversiChannel.shouldShare;
|
|
public readonly requireCredential = ReversiChannel.requireCredential;
|
|
public readonly kind = ReversiChannel.kind;
|
|
|
|
constructor(
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public create(id: string, connection: Channel['connection']): ReversiChannel {
|
|
return new ReversiChannel(
|
|
id,
|
|
connection,
|
|
);
|
|
}
|
|
}
|