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