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.
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
var EventEmitter = require('events');
|
|
var nconf = require('nconf');
|
|
|
|
var real;
|
|
|
|
function get() {
|
|
if (real) {
|
|
return real;
|
|
}
|
|
|
|
var pubsub;
|
|
|
|
if (nconf.get('isCluster') === 'false') {
|
|
pubsub = new EventEmitter();
|
|
pubsub.publish = pubsub.emit.bind(pubsub);
|
|
} else if (nconf.get('singleHostCluster')) {
|
|
pubsub = new EventEmitter();
|
|
pubsub.publish = function (event, data) {
|
|
process.send({
|
|
action: 'pubsub',
|
|
event: event,
|
|
data: data,
|
|
});
|
|
};
|
|
process.on('message', function (message) {
|
|
if (message && typeof message === 'object' && message.action === 'pubsub') {
|
|
pubsub.emit(message.event, message.data);
|
|
}
|
|
});
|
|
} else if (nconf.get('redis')) {
|
|
pubsub = require('./database/redis/pubsub');
|
|
} else if (nconf.get('mongo')) {
|
|
pubsub = require('./database/mongo/pubsub');
|
|
}
|
|
|
|
real = pubsub;
|
|
|
|
return pubsub;
|
|
}
|
|
|
|
module.exports = {
|
|
publish: function (event, data) {
|
|
get().publish(event, data);
|
|
},
|
|
on: function (event, callback) {
|
|
get().on(event, callback);
|
|
},
|
|
removeAllListeners: function (event) {
|
|
get().removeAllListeners(event);
|
|
},
|
|
};
|