2019-02-05 06:14:23 +01:00
|
|
|
import redis from '../db/redis';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { User } from '../models/entities/user';
|
|
|
|
import { Note } from '../models/entities/note';
|
|
|
|
import { UserList } from '../models/entities/user-list';
|
|
|
|
import { ReversiGame } from '../models/entities/games/reversi/game';
|
2017-03-20 05:54:59 +01:00
|
|
|
|
2018-09-11 19:48:19 +02:00
|
|
|
class Publisher {
|
2019-04-12 18:43:22 +02:00
|
|
|
private publish = (channel: string, type: string | null, value?: any): void => {
|
2018-09-11 19:48:19 +02:00
|
|
|
const message = type == null ? value : value == null ?
|
2018-10-07 18:56:36 +02:00
|
|
|
{ type: type, body: null } :
|
2018-09-11 19:48:19 +02:00
|
|
|
{ type: type, body: value };
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2019-04-13 12:19:32 +02:00
|
|
|
redis.publish('misskey', JSON.stringify({
|
|
|
|
channel: channel,
|
|
|
|
message: message
|
|
|
|
}));
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
2018-07-11 02:36:30 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishMainStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`mainStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishDriveStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`driveStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
2017-05-24 13:50:17 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishNoteStream = (noteId: Note['id'], type: string, value: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`noteStream:${noteId}`, type, {
|
|
|
|
id: noteId,
|
|
|
|
body: value
|
|
|
|
});
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishUserListStream = (listId: UserList['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`userListStream:${listId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishMessagingStream = (userId: User['id'], otherpartyId: User['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`messagingStream:${userId}-${otherpartyId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishMessagingIndexStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`messagingIndexStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishReversiStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`reversiStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 19:48:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishReversiGameStream = (gameId: ReversiGame['id'], type: string, value?: any): void => {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.publish(`reversiGameStream:${gameId}`, type, typeof value === 'undefined' ? null : value);
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishNotesStream = (note: any): void => {
|
|
|
|
this.publish('notesStream', null, note);
|
2018-09-17 02:00:20 +02:00
|
|
|
}
|
2018-11-03 03:38:00 +01:00
|
|
|
|
|
|
|
public publishApLogStream = (log: any): void => {
|
|
|
|
this.publish('apLog', null, log);
|
|
|
|
}
|
2019-01-27 06:55:02 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
public publishAdminStream = (userId: User['id'], type: string, value?: any): void => {
|
2019-01-27 06:55:02 +01:00
|
|
|
this.publish(`adminStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
|
|
|
}
|
2018-07-30 00:20:27 +02:00
|
|
|
}
|
2018-09-11 19:48:19 +02:00
|
|
|
|
|
|
|
const publisher = new Publisher();
|
|
|
|
|
|
|
|
export default publisher;
|
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
export const publishMainStream = publisher.publishMainStream;
|
2018-09-11 19:48:19 +02:00
|
|
|
export const publishDriveStream = publisher.publishDriveStream;
|
|
|
|
export const publishNoteStream = publisher.publishNoteStream;
|
2019-04-07 14:50:36 +02:00
|
|
|
export const publishNotesStream = publisher.publishNotesStream;
|
2018-09-11 19:48:19 +02:00
|
|
|
export const publishUserListStream = publisher.publishUserListStream;
|
|
|
|
export const publishMessagingStream = publisher.publishMessagingStream;
|
|
|
|
export const publishMessagingIndexStream = publisher.publishMessagingIndexStream;
|
|
|
|
export const publishReversiStream = publisher.publishReversiStream;
|
|
|
|
export const publishReversiGameStream = publisher.publishReversiGameStream;
|
2018-11-03 03:38:00 +01:00
|
|
|
export const publishApLogStream = publisher.publishApLogStream;
|
2019-01-27 06:55:02 +01:00
|
|
|
export const publishAdminStream = publisher.publishAdminStream;
|