2022-12-04 15:03:09 +09:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-18 03:27:08 +09:00
|
|
|
import type Connection from '.';
|
2018-10-07 11:06:17 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stream channel
|
|
|
|
*/
|
|
|
|
export default abstract class Channel {
|
|
|
|
protected connection: Connection;
|
|
|
|
public id: string;
|
2018-10-11 23:01:57 +09:00
|
|
|
public abstract readonly chName: string;
|
2018-10-11 23:07:20 +09:00
|
|
|
public static readonly shouldShare: boolean;
|
2018-11-11 02:22:34 +09:00
|
|
|
public static readonly requireCredential: boolean;
|
2018-10-07 11:06:17 +09:00
|
|
|
|
|
|
|
protected get user() {
|
|
|
|
return this.connection.user;
|
|
|
|
}
|
|
|
|
|
2020-07-27 13:34:20 +09:00
|
|
|
protected get userProfile() {
|
|
|
|
return this.connection.userProfile;
|
|
|
|
}
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
protected get following() {
|
|
|
|
return this.connection.following;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected get muting() {
|
|
|
|
return this.connection.muting;
|
|
|
|
}
|
|
|
|
|
2023-03-08 08:56:09 +09:00
|
|
|
protected get renoteMuting() {
|
|
|
|
return this.connection.renoteMuting;
|
|
|
|
}
|
|
|
|
|
2021-08-17 21:48:59 +09:00
|
|
|
protected get blocking() {
|
|
|
|
return this.connection.blocking;
|
|
|
|
}
|
|
|
|
|
2020-08-18 22:44:21 +09:00
|
|
|
protected get followingChannels() {
|
|
|
|
return this.connection.followingChannels;
|
|
|
|
}
|
|
|
|
|
2018-10-07 11:06:17 +09:00
|
|
|
protected get subscriber() {
|
|
|
|
return this.connection.subscriber;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(id: string, connection: Connection) {
|
|
|
|
this.id = id;
|
|
|
|
this.connection = connection;
|
|
|
|
}
|
|
|
|
|
2022-12-04 15:03:09 +09:00
|
|
|
@bindThis
|
2018-10-07 11:06:17 +09: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 23:58:30 +09:00
|
|
|
body: body,
|
2018-10-07 11:06:17 +09:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract init(params: any): void;
|
|
|
|
public dispose?(): void;
|
|
|
|
public onMessage?(type: string, body: any): void;
|
|
|
|
}
|