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