2019-02-04 23:14:23 -06:00
|
|
|
import redis from '../db/redis';
|
2018-07-29 17:20:27 -05:00
|
|
|
import Xev from 'xev';
|
2019-04-07 07:50:36 -05: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-19 23:54:59 -05:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
class Publisher {
|
|
|
|
private ev: Xev;
|
2018-04-25 04:04:16 -05:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
constructor() {
|
2018-10-11 04:09:41 -05:00
|
|
|
// Redisがインストールされてないときはプロセス間通信を使う
|
|
|
|
if (redis == null) {
|
|
|
|
this.ev = new Xev();
|
|
|
|
}
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2018-03-07 02:48:32 -06:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
private publish = (channel: string, type: string, value?: any): void => {
|
|
|
|
const message = type == null ? value : value == null ?
|
2018-10-07 11:56:36 -05:00
|
|
|
{ type: type, body: null } :
|
2018-09-11 12:48:19 -05:00
|
|
|
{ type: type, body: value };
|
2018-04-17 00:52:28 -05:00
|
|
|
|
2018-10-11 04:09:41 -05:00
|
|
|
if (this.ev) {
|
|
|
|
this.ev.emit(channel, message);
|
|
|
|
} else {
|
|
|
|
redis.publish('misskey', JSON.stringify({
|
|
|
|
channel: channel,
|
|
|
|
message: message
|
|
|
|
}));
|
|
|
|
}
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2018-07-10 19:36:30 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishMainStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`mainStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2018-04-17 00:52:28 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishDriveStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`driveStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2017-05-24 06:50:17 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishNoteStream = (noteId: Note['id'], type: string, value: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`noteStream:${noteId}`, type, {
|
|
|
|
id: noteId,
|
|
|
|
body: value
|
|
|
|
});
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishUserListStream = (listId: UserList['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`userListStream:${listId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishMessagingStream = (userId: User['id'], otherpartyId: User['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`messagingStream:${userId}-${otherpartyId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishMessagingIndexStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`messagingIndexStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishReversiStream = (userId: User['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`reversiStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishReversiGameStream = (gameId: ReversiGame['id'], type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`reversiGameStream:${gameId}`, type, typeof value === 'undefined' ? null : value);
|
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishNotesStream = (note: any): void => {
|
|
|
|
this.publish('notesStream', null, note);
|
2018-09-16 19:00:20 -05:00
|
|
|
}
|
2018-11-02 21:38:00 -05:00
|
|
|
|
|
|
|
public publishApLogStream = (log: any): void => {
|
|
|
|
this.publish('apLog', null, log);
|
|
|
|
}
|
2019-01-26 23:55:02 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
public publishAdminStream = (userId: User['id'], type: string, value?: any): void => {
|
2019-01-26 23:55:02 -06:00
|
|
|
this.publish(`adminStream:${userId}`, type, typeof value === 'undefined' ? null : value);
|
|
|
|
}
|
2018-07-29 17:20:27 -05:00
|
|
|
}
|
2018-09-11 12:48:19 -05:00
|
|
|
|
|
|
|
const publisher = new Publisher();
|
|
|
|
|
|
|
|
export default publisher;
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
export const publishMainStream = publisher.publishMainStream;
|
2018-09-11 12:48:19 -05:00
|
|
|
export const publishDriveStream = publisher.publishDriveStream;
|
|
|
|
export const publishNoteStream = publisher.publishNoteStream;
|
2019-04-07 07:50:36 -05:00
|
|
|
export const publishNotesStream = publisher.publishNotesStream;
|
2018-09-11 12:48:19 -05: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-02 21:38:00 -05:00
|
|
|
export const publishApLogStream = publisher.publishApLogStream;
|
2019-01-26 23:55:02 -06:00
|
|
|
export const publishAdminStream = publisher.publishAdminStream;
|