2023-01-13 05:40:33 +01:00
|
|
|
import type Connection from ".";
|
|
|
|
import type { Note } from "@/models/entities/note.js";
|
|
|
|
import { Notes } from "@/models/index.js";
|
|
|
|
import type { 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;
|
|
|
|
}
|
|
|
|
|
2023-04-08 07:44:36 +02:00
|
|
|
protected get renoteMuting() {
|
|
|
|
return this.connection.renoteMuting;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
this.connection.sendMessageToWs("channel", {
|
2018-10-07 04:06:17 +02:00
|
|
|
id: this.id,
|
|
|
|
type: type,
|
2021-12-09 15:58:30 +01:00
|
|
|
body: body,
|
2018-10-07 04:06:17 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
protected withPackedNote(
|
|
|
|
callback: (note: Packed<"Note">) => void,
|
|
|
|
): (Note) => void {
|
2022-07-25 18:15:21 +02:00
|
|
|
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);
|
2023-01-13 05:40:33 +01:00
|
|
|
note.reply = undefined;
|
|
|
|
note.renote = undefined;
|
|
|
|
note.user = undefined;
|
|
|
|
note.channel = undefined;
|
2022-07-25 18:15:21 +02:00
|
|
|
|
|
|
|
const packed = await Notes.pack(note, this.user, { detail: true });
|
|
|
|
|
|
|
|
callback(packed);
|
|
|
|
} catch (err) {
|
2023-01-13 05:40:33 +01:00
|
|
|
if (
|
|
|
|
err instanceof IdentifiableError &&
|
|
|
|
err.id === "9725d0ce-ba28-4dde-95a7-2cbb2c15de24"
|
|
|
|
) {
|
2022-07-25 18:15:21 +02:00
|
|
|
// 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;
|
|
|
|
}
|