我正在尝试使用Node.js,express和sockets.io创建新闻源。
我的问题是socket.on("connection", function{});
没有给你会话ID,所以我无法知道哪个用户已连接。我想知道是否有办法在会话中传递用户ID。
我已经考虑过从客户端连接套接字,在连接用户ID后立即向服务器发送消息,服务器在收到带有用户ID的消息后发回适当的新闻源项。
我想知道是否有更好/更具可扩展性/效率的方法。
答案 0 :(得分:2)
如果您要授权socket.io请求,则可以过滤用户。
您必须序列化,反序列化用户对象才能使用socket.io
访问属性passport.serializeUser(function (user, done) {
done(null, user.id);
});
passport.deserializeUser(function (id, done) {
User.findById(id, function (err, user) {
done(err, user);
});
});
看看passportSocketIO。您可以像这样设置对传入的socket.io请求的授权。
sio.set("authorization", passportSocketIo.authorize({
key: 'express.sid', //the cookie where express (or connect) stores its session id.
secret: 'my session secret', //the session secret to parse the cookie
store: mySessionStore, //the session store that express uses
fail: function(data, accept) { // *optional* callbacks on success or fail
accept(null, false); // second param takes boolean on whether or not to allow handshake
},
success: function(data, accept) {
accept(null, true);
}
}));
然后你可以像这样过滤掉'连接'回调中的用户。
sio.sockets.on("connection", function(socket){
console.log("user connected: ", socket.handshake.user.name);
//filter sockets by user...
var userProperty = socket.handshake.user.property, //property
// you can use user's property here.
//filter users with specific property
passportSocketIo.filterSocketsByUser(sio, function (user) {
return user.property=== propertyValue; //filter users with specific property
}).forEach(function(s){
s.send("msg");
});
});