2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-06-25 14:13:15 +02:00
|
|
|
import type Connection from './index.js';
|
2018-10-07 04:06:17 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Stream channel
|
|
|
|
|
*/
|
|
|
|
|
export default abstract class Channel {
|
|
|
|
|
protected connection: Connection;
|
|
|
|
|
public id: string;
|
2018-10-11 16:01:57 +02:00
|
|
|
public abstract readonly chName: string;
|
2018-10-11 16:07:20 +02:00
|
|
|
public static readonly shouldShare: boolean;
|
2018-11-10 18:22:34 +01:00
|
|
|
public static readonly requireCredential: boolean;
|
2018-10-07 04:06:17 +02:00
|
|
|
|
|
|
|
|
protected get user() {
|
|
|
|
|
return this.connection.user;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-27 06:34:20 +02:00
|
|
|
protected get userProfile() {
|
|
|
|
|
return this.connection.userProfile;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
protected get following() {
|
|
|
|
|
return this.connection.following;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-05 03:21:10 +02:00
|
|
|
protected get userIdsWhoMeMuting() {
|
|
|
|
|
return this.connection.userIdsWhoMeMuting;
|
2019-04-07 14:50:36 +02:00
|
|
|
}
|
|
|
|
|
|
2023-04-05 03:21:10 +02:00
|
|
|
protected get userIdsWhoMeMutingRenotes() {
|
|
|
|
|
return this.connection.userIdsWhoMeMutingRenotes;
|
2023-03-08 00:56:09 +01:00
|
|
|
}
|
|
|
|
|
|
2023-04-05 03:21:10 +02:00
|
|
|
protected get userIdsWhoBlockingMe() {
|
|
|
|
|
return this.connection.userIdsWhoBlockingMe;
|
2021-08-17 14:48:59 +02:00
|
|
|
}
|
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
protected get followingChannels() {
|
|
|
|
|
return this.connection.followingChannels;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
protected get subscriber() {
|
|
|
|
|
return this.connection.subscriber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
constructor(id: string, connection: Connection) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.connection = connection;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2018-10-07 04:06:17 +02:00
|
|
|
public send(typeOrPayload: any, payload?: any) {
|
|
|
|
|
const type = payload === undefined ? typeOrPayload.type : typeOrPayload;
|
|
|
|
|
const body = payload === undefined ? typeOrPayload.body : payload;
|
|
|
|
|
|
|
|
|
|
this.connection.sendMessageToWs('channel', {
|
|
|
|
|
id: this.id,
|
|
|
|
|
type: type,
|
2021-12-09 15:58:30 +01:00
|
|
|
body: body,
|
2018-10-07 04:06:17 +02:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract init(params: any): void;
|
|
|
|
|
public dispose?(): void;
|
|
|
|
|
public onMessage?(type: string, body: any): void;
|
|
|
|
|
}
|