43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { bindThis } from '@/decorators.js';
|
|
import Channel, { type MiChannelService } from '../channel.js';
|
|
|
|
class AdminChannel extends Channel {
|
|
public readonly chName = 'admin';
|
|
public static readonly shouldShare = true;
|
|
public static readonly requireCredential = true as const;
|
|
public static readonly kind = 'read:admin:stream';
|
|
|
|
@bindThis
|
|
public async init(params: any) {
|
|
// Subscribe admin stream
|
|
this.subscriber.on(`adminStream:${this.user!.id}`, data => {
|
|
this.send(data);
|
|
});
|
|
}
|
|
}
|
|
|
|
@Injectable()
|
|
export class AdminChannelService implements MiChannelService<true> {
|
|
public readonly shouldShare = AdminChannel.shouldShare;
|
|
public readonly requireCredential = AdminChannel.requireCredential;
|
|
public readonly kind = AdminChannel.kind;
|
|
|
|
constructor(
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public create(id: string, connection: Channel['connection']): AdminChannel {
|
|
return new AdminChannel(
|
|
id,
|
|
connection,
|
|
);
|
|
}
|
|
}
|