mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:02:35 +08:00
90 lines
2.5 KiB
JavaScript
90 lines
2.5 KiB
JavaScript
const Rx = require('rx')
|
|
const redis = require("redis");
|
|
|
|
Promise.promisifyAll(redis.RedisClient.prototype);
|
|
Promise.promisifyAll(redis.Multi.prototype);
|
|
|
|
class PubsubConnector {
|
|
constructor() {
|
|
this._broadcastClient = null;
|
|
this._listenClient = null;
|
|
this._listenClientSubs = {};
|
|
}
|
|
|
|
buildClient() {
|
|
const client = redis.createClient(process.env.REDIS_URL || null);
|
|
client.on("error", console.error);
|
|
return client;
|
|
}
|
|
|
|
broadcastClient() {
|
|
if (!this._broadcastClient) {
|
|
this._broadcastClient = this.buildClient();
|
|
}
|
|
return this._broadcastClient;
|
|
}
|
|
|
|
queueProcessMessage({messageId, accountId}) {
|
|
if (!messageId) {
|
|
throw new Error("queueProcessMessage: The message body processor expects a messageId")
|
|
}
|
|
if (!accountId) {
|
|
throw new Error("queueProcessMessage: The message body processor expects a accountId")
|
|
}
|
|
this.broadcastClient().lpush(`message-processor-queue`, JSON.stringify({messageId, accountId}));
|
|
}
|
|
|
|
// Shared channel
|
|
_observableForChannelOnSharedListener(channel) {
|
|
if (!this._listenClient) {
|
|
this._listenClient = this.buildClient();
|
|
this._listenClientSubs = {};
|
|
}
|
|
|
|
return Rx.Observable.create((observer) => {
|
|
this._listenClient.on("message", (msgChannel, message) => {
|
|
if (msgChannel !== channel) { return }
|
|
observer.onNext(message)
|
|
});
|
|
|
|
if (!this._listenClientSubs[channel]) {
|
|
this._listenClientSubs[channel] = 1;
|
|
this._listenClient.subscribe(channel);
|
|
} else {
|
|
this._listenClientSubs[channel] += 1;
|
|
}
|
|
return () => {
|
|
this._listenClientSubs[channel] -= 1;
|
|
if (this._listenClientSubs[channel] === 0) {
|
|
this._listenClient.unsubscribe(channel);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
notify({accountId, type, data}) {
|
|
this.broadcastClient().publish(`channel-${accountId}`, JSON.stringify({type, data}));
|
|
}
|
|
|
|
observe(accountId) {
|
|
return this._observableForChannelOnSharedListener(`channel-${accountId}`);
|
|
}
|
|
|
|
notifyDelta(accountId, data) {
|
|
this.broadcastClient().publish(`channel-${accountId}-deltas`, JSON.stringify(data))
|
|
}
|
|
|
|
observeDeltas(accountId) {
|
|
return Rx.Observable.create((observer) => {
|
|
const sub = this.buildClient();
|
|
sub.on("message", (channel, message) => observer.onNext(message));
|
|
sub.subscribe(`channel-${accountId}-deltas`);
|
|
return () => {
|
|
sub.unsubscribe();
|
|
sub.quit();
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
module.exports = new PubsubConnector()
|