2016-12-28 16:49:51 -06:00
|
|
|
import * as mongo from 'mongodb';
|
2018-10-11 04:09:41 -05:00
|
|
|
import redis from './db/redis';
|
2018-07-29 17:20:27 -05:00
|
|
|
import Xev from 'xev';
|
2018-09-11 12:48:19 -05:00
|
|
|
import Meta, { IMeta } from './models/meta';
|
2017-11-16 08:46:36 -06:00
|
|
|
|
2018-07-29 17:20:27 -05:00
|
|
|
type ID = string | mongo.ObjectID;
|
2017-03-19 23:54:59 -05:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
class Publisher {
|
|
|
|
private ev: Xev;
|
|
|
|
private meta: IMeta;
|
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();
|
|
|
|
}
|
2017-05-24 06:50:17 -05:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
setInterval(async () => {
|
|
|
|
this.meta = await Meta.findOne({});
|
|
|
|
}, 5000);
|
|
|
|
}
|
2017-11-13 09:54:16 -06:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
public getMeta = async () => {
|
|
|
|
if (this.meta != null) return this.meta;
|
2018-03-06 20:40:40 -06:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
this.meta = await Meta.findOne({});
|
|
|
|
return this.meta;
|
|
|
|
}
|
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
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
public publishMainStream = (userId: ID, type: string, value?: any): void => {
|
|
|
|
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
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
public publishDriveStream = (userId: 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
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
public publishNoteStream = (noteId: ID, type: string, value: any): void => {
|
|
|
|
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
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
public publishUserListStream = (listId: 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
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
public publishMessagingStream = (userId: ID, otherpartyId: 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
|
|
|
}
|
|
|
|
|
|
|
|
public publishMessagingIndexStream = (userId: 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
|
|
|
}
|
|
|
|
|
|
|
|
public publishReversiStream = (userId: 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
|
|
|
}
|
|
|
|
|
|
|
|
public publishReversiGameStream = (gameId: ID, type: string, value?: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(`reversiGameStream:${gameId}`, type, typeof value === 'undefined' ? null : value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public publishHomeTimelineStream = (userId: ID, note: any): void => {
|
|
|
|
this.publish(`homeTimeline:${userId}`, null, note);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-09-11 12:48:19 -05:00
|
|
|
public publishLocalTimelineStream = async (note: any): Promise<void> => {
|
|
|
|
const meta = await this.getMeta();
|
|
|
|
if (meta.disableLocalTimeline) return;
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish('localTimeline', null, note);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public publishHybridTimelineStream = async (userId: ID, note: any): Promise<void> => {
|
|
|
|
const meta = await this.getMeta();
|
|
|
|
if (meta.disableLocalTimeline) return;
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish(userId ? `hybridTimeline:${userId}` : 'hybridTimeline', null, note);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public publishGlobalTimelineStream = (note: any): void => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.publish('globalTimeline', null, note);
|
2018-09-11 12:48:19 -05:00
|
|
|
}
|
2018-09-16 19:00:20 -05:00
|
|
|
|
|
|
|
public publishHashtagStream = (note: any): void => {
|
|
|
|
this.publish('hashtag', null, note);
|
|
|
|
}
|
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;
|
|
|
|
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-10-06 21:06:17 -05:00
|
|
|
export const publishHomeTimelineStream = publisher.publishHomeTimelineStream;
|
2018-09-11 12:48:19 -05:00
|
|
|
export const publishLocalTimelineStream = publisher.publishLocalTimelineStream;
|
|
|
|
export const publishHybridTimelineStream = publisher.publishHybridTimelineStream;
|
|
|
|
export const publishGlobalTimelineStream = publisher.publishGlobalTimelineStream;
|
2018-09-16 19:00:20 -05:00
|
|
|
export const publishHashtagStream = publisher.publishHashtagStream;
|