forked from modit/socket.io-adapter-mongo
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
100 lines (77 loc) · 1.98 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/**
* Module dependencies.
*/
var uid2 = require('uid2')
, mubsub = require('mubsub')
, msgpack = require('msgpack-js')
, Adapter = require('socket.io-adapter')
, debug = require('debug')('socket.io-mongo')
, mongodbUri = require('mongodb-uri');
;
/**
* Module exports.
*/
module.exports = adapter;
/**
* Returns a mongo Adapter class.
*
* @param {String} mongo uri
* @return {Mongo} adapter
* @api public
*/
function adapter(uri, opts) {
opts = opts || {};
// opts
var socket = opts.socket;
var client = opts.client;
var key = opts.key || 'socket.io';
delete opts.key; // prevent key from being passed to mongoDB (via mubsub) and generating a warning
// init clients if needed
if (!client) client = socket ? mubsub(socket) : mubsub(uri, opts);
// this server's key
var uid = uid2(6);
var channel = client.channel(key);
/**
* Adapter constructor.
*
* @param {String} namespace name
* @api public
*/
function Mongo(nsp) {
Adapter.call(this, nsp);
channel.subscribe(key, this.onmessage.bind(this));
}
/**
* Inherits from `Adapter`.
*/
Mongo.prototype.__proto__ = Adapter.prototype;
/**
* Called with a subscription message
*
* @api private
*/
Mongo.prototype.onmessage = function (msg) {
if (uid == msg.uid || !msg.uid) return debug('ignore same uid');
var args = msgpack.decode(msg.data.buffer);
if (args[0] && args[0].nsp === undefined)
args[0].nsp = '/';
if (!args[0] || args[0].nsp != this.nsp.name) return debug('ignore different namespace');
args.push(true);
this.broadcast.apply(this, args);
};
/**
* Broadcasts a packet.
*
* @param {Object} packet to emit
* @param {Object} options
* @param {Boolean} whether the packet came from another node
* @api public
*/
Mongo.prototype.broadcast = function (packet, opts, remote) {
Adapter.prototype.broadcast.call(this, packet, opts);
if (!remote) {
channel.publish(key, { uid: uid, data: msgpack.encode([packet, opts]) });
}
};
return Mongo;
}