You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
874 B
JavaScript
40 lines
874 B
JavaScript
'use strict';
|
|
|
|
var nconf = require('nconf');
|
|
var util = require('util');
|
|
var winston = require('winston');
|
|
var EventEmitter = require('events').EventEmitter;
|
|
|
|
var channelName;
|
|
|
|
var PubSub = function () {
|
|
var self = this;
|
|
var db = require('../redis');
|
|
var subClient = db.connect();
|
|
this.pubClient = db.connect();
|
|
|
|
channelName = 'db:' + nconf.get('redis:database') + 'pubsub_channel';
|
|
subClient.subscribe(channelName);
|
|
|
|
subClient.on('message', function (channel, message) {
|
|
if (channel !== channelName) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
var msg = JSON.parse(message);
|
|
self.emit(msg.event, msg.data);
|
|
} catch (err) {
|
|
winston.error(err.stack);
|
|
}
|
|
});
|
|
};
|
|
|
|
util.inherits(PubSub, EventEmitter);
|
|
|
|
PubSub.prototype.publish = function (event, data) {
|
|
this.pubClient.publish(channelName, JSON.stringify({ event: event, data: data }));
|
|
};
|
|
|
|
module.exports = new PubSub();
|