2018-10-07 04:06:17 +02:00
|
|
|
import Connection from '.';
|
2022-07-25 18:15:21 +02:00
|
|
|
import { Note } from '@/models/entities/note.js';
|
|
|
|
import { Notes } from '@/models/index.js';
|
|
|
|
import { Packed } from '@/misc/schema.js';
|
|
|
|
import { IdentifiableError } from '@/misc/identifiable-error.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected get muting() {
|
|
|
|
return this.connection.muting;
|
|
|
|
}
|
|
|
|
|
2021-08-17 14:48:59 +02:00
|
|
|
protected get blocking() {
|
|
|
|
return this.connection.blocking;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-07-25 18:15:21 +02:00
|
|
|
protected withPackedNote(callback: (note: Packed<'Note'>) => void): (Note) => void {
|
|
|
|
return async (note: Note) => {
|
|
|
|
try {
|
|
|
|
// because `note` was previously JSON.stringify'ed, the fields that
|
|
|
|
// were objects before are now strings and have to be restored or
|
|
|
|
// removed from the object
|
|
|
|
note.createdAt = new Date(note.createdAt);
|
|
|
|
delete note.reply;
|
|
|
|
delete note.renote;
|
|
|
|
delete note.user;
|
|
|
|
delete note.channel;
|
|
|
|
|
|
|
|
const packed = await Notes.pack(note, this.user, { detail: true });
|
|
|
|
|
|
|
|
callback(packed);
|
|
|
|
} catch (err) {
|
|
|
|
if (err instanceof IdentifiableError && err.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') {
|
|
|
|
// skip: note not visible to user
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
public abstract init(params: any): void;
|
|
|
|
public dispose?(): void;
|
|
|
|
public onMessage?(type: string, body: any): void;
|
|
|
|
}
|