2023-01-13 04:40:33 +00:00
|
|
|
import { redisClient } from "../db/redis.js";
|
|
|
|
import type { User } from "@/models/entities/user.js";
|
|
|
|
import type { Note } from "@/models/entities/note.js";
|
|
|
|
import type { UserList } from "@/models/entities/user-list.js";
|
|
|
|
import type { UserGroup } from "@/models/entities/user-group.js";
|
|
|
|
import config from "@/config/index.js";
|
|
|
|
import type { Antenna } from "@/models/entities/antenna.js";
|
|
|
|
import type { Channel } from "@/models/entities/channel.js";
|
|
|
|
import type {
|
2021-10-20 16:04:10 +00:00
|
|
|
StreamChannels,
|
|
|
|
AdminStreamTypes,
|
|
|
|
AntennaStreamTypes,
|
|
|
|
BroadcastTypes,
|
|
|
|
ChannelStreamTypes,
|
|
|
|
DriveStreamTypes,
|
|
|
|
GroupMessagingStreamTypes,
|
|
|
|
InternalStreamTypes,
|
|
|
|
MainStreamTypes,
|
|
|
|
MessagingIndexStreamTypes,
|
|
|
|
MessagingStreamTypes,
|
|
|
|
NoteStreamTypes,
|
|
|
|
UserListStreamTypes,
|
2021-12-09 14:58:30 +00:00
|
|
|
UserStreamTypes,
|
2023-01-13 04:40:33 +00:00
|
|
|
} from "@/server/api/stream/types.js";
|
2017-03-20 04:54:59 +00:00
|
|
|
|
2018-09-11 17:48:19 +00:00
|
|
|
class Publisher {
|
2023-01-13 04:40:33 +00:00
|
|
|
private publish = (
|
|
|
|
channel: StreamChannels,
|
|
|
|
type: string | null,
|
|
|
|
value?: any,
|
|
|
|
): void => {
|
|
|
|
const message =
|
|
|
|
type == null
|
|
|
|
? value
|
|
|
|
: value == null
|
|
|
|
? { type: type, body: null }
|
|
|
|
: { type: type, body: value };
|
|
|
|
|
|
|
|
redisClient.publish(
|
|
|
|
config.host,
|
|
|
|
JSON.stringify({
|
|
|
|
channel: channel,
|
|
|
|
message: message,
|
|
|
|
}),
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2018-07-11 00:36:30 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishInternalEvent = <K extends keyof InternalStreamTypes>(
|
|
|
|
type: K,
|
|
|
|
value?: InternalStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish("internal", type, typeof value === "undefined" ? null : value);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2021-03-23 06:06:56 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishUserEvent = <K extends keyof UserStreamTypes>(
|
|
|
|
userId: User["id"],
|
|
|
|
type: K,
|
|
|
|
value?: UserStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`user:${userId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2021-03-21 06:14:03 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishBroadcastStream = <K extends keyof BroadcastTypes>(
|
|
|
|
type: K,
|
|
|
|
value?: BroadcastTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
"broadcast",
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2020-04-02 13:17:17 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishMainStream = <K extends keyof MainStreamTypes>(
|
|
|
|
userId: User["id"],
|
|
|
|
type: K,
|
|
|
|
value?: MainStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`mainStream:${userId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2018-04-17 05:52:28 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishDriveStream = <K extends keyof DriveStreamTypes>(
|
|
|
|
userId: User["id"],
|
|
|
|
type: K,
|
|
|
|
value?: DriveStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`driveStream:${userId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2017-05-24 11:50:17 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishNoteStream = <K extends keyof NoteStreamTypes>(
|
|
|
|
noteId: Note["id"],
|
|
|
|
type: K,
|
|
|
|
value?: NoteStreamTypes[K],
|
|
|
|
): void => {
|
2018-10-07 02:06:17 +00:00
|
|
|
this.publish(`noteStream:${noteId}`, type, {
|
|
|
|
id: noteId,
|
2021-12-09 14:58:30 +00:00
|
|
|
body: value,
|
2018-10-07 02:06:17 +00:00
|
|
|
});
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishChannelStream = <K extends keyof ChannelStreamTypes>(
|
|
|
|
channelId: Channel["id"],
|
|
|
|
type: K,
|
|
|
|
value?: ChannelStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`channelStream:${channelId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2021-02-20 11:20:05 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishUserListStream = <K extends keyof UserListStreamTypes>(
|
|
|
|
listId: UserList["id"],
|
|
|
|
type: K,
|
|
|
|
value?: UserListStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`userListStream:${listId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishAntennaStream = <K extends keyof AntennaStreamTypes>(
|
|
|
|
antennaId: Antenna["id"],
|
|
|
|
type: K,
|
|
|
|
value?: AntennaStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`antennaStream:${antennaId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishMessagingStream = <K extends keyof MessagingStreamTypes>(
|
|
|
|
userId: User["id"],
|
|
|
|
otherpartyId: User["id"],
|
|
|
|
type: K,
|
|
|
|
value?: MessagingStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`messagingStream:${userId}-${otherpartyId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2018-09-11 17:48:19 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishGroupMessagingStream = <
|
|
|
|
K extends keyof GroupMessagingStreamTypes,
|
|
|
|
>(
|
|
|
|
groupId: UserGroup["id"],
|
|
|
|
type: K,
|
|
|
|
value?: GroupMessagingStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`messagingStream:${groupId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2019-05-18 11:36:33 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishMessagingIndexStream = <
|
|
|
|
K extends keyof MessagingIndexStreamTypes,
|
|
|
|
>(
|
|
|
|
userId: User["id"],
|
|
|
|
type: K,
|
|
|
|
value?: MessagingIndexStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`messagingIndexStream:${userId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2018-09-11 17:48:19 +00:00
|
|
|
|
2022-07-25 16:15:21 +00:00
|
|
|
public publishNotesStream = (note: Note): void => {
|
2023-01-13 04:40:33 +00:00
|
|
|
this.publish("notesStream", null, note);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2018-11-03 02:38:00 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
public publishAdminStream = <K extends keyof AdminStreamTypes>(
|
|
|
|
userId: User["id"],
|
|
|
|
type: K,
|
|
|
|
value?: AdminStreamTypes[K],
|
|
|
|
): void => {
|
|
|
|
this.publish(
|
|
|
|
`adminStream:${userId}`,
|
|
|
|
type,
|
|
|
|
typeof value === "undefined" ? null : value,
|
|
|
|
);
|
2021-11-12 01:52:10 +00:00
|
|
|
};
|
2018-07-29 22:20:27 +00:00
|
|
|
}
|
2018-09-11 17:48:19 +00:00
|
|
|
|
|
|
|
const publisher = new Publisher();
|
|
|
|
|
|
|
|
export default publisher;
|
|
|
|
|
2021-03-23 06:06:56 +00:00
|
|
|
export const publishInternalEvent = publisher.publishInternalEvent;
|
2021-03-21 06:14:03 +00:00
|
|
|
export const publishUserEvent = publisher.publishUserEvent;
|
2020-04-02 13:17:17 +00:00
|
|
|
export const publishBroadcastStream = publisher.publishBroadcastStream;
|
2018-10-07 02:06:17 +00:00
|
|
|
export const publishMainStream = publisher.publishMainStream;
|
2018-09-11 17:48:19 +00:00
|
|
|
export const publishDriveStream = publisher.publishDriveStream;
|
|
|
|
export const publishNoteStream = publisher.publishNoteStream;
|
2019-04-07 12:50:36 +00:00
|
|
|
export const publishNotesStream = publisher.publishNotesStream;
|
2021-02-20 11:20:05 +00:00
|
|
|
export const publishChannelStream = publisher.publishChannelStream;
|
2018-09-11 17:48:19 +00:00
|
|
|
export const publishUserListStream = publisher.publishUserListStream;
|
2020-01-29 19:37:25 +00:00
|
|
|
export const publishAntennaStream = publisher.publishAntennaStream;
|
2018-09-11 17:48:19 +00:00
|
|
|
export const publishMessagingStream = publisher.publishMessagingStream;
|
2023-01-13 04:40:33 +00:00
|
|
|
export const publishGroupMessagingStream =
|
|
|
|
publisher.publishGroupMessagingStream;
|
|
|
|
export const publishMessagingIndexStream =
|
|
|
|
publisher.publishMessagingIndexStream;
|
2019-01-27 05:55:02 +00:00
|
|
|
export const publishAdminStream = publisher.publishAdminStream;
|