I am trying to use Socket.IO in Node.js, and am trying to allow the server to give an identity to each of the Socket.IO clients. As the socket code is outside the scope of the http server code, it doesn't have easy access to the request information sent, so I'm assuming it will need to be sent up during the connection. What is the best way to

1) get the information to the server about who is connecting via Socket.IO

2) authenticate who they say they are (I'm currently using Express, if that makes things any easier)

link|improve this question

73% accept rate
feedback

3 Answers

up vote 34 down vote accepted

Use connect-redis and have redis as your session store for all authenticated users. Make sure on authentication you send the key (normally req.sessionID) to the client. Have the client store this key in a cookie.

On socket connect (or anytime later) fetch this key from the cookie and send it back to the server. Fetch the session information in redis using this key. (GET key)

Eg:

Server side (with redis as session store):

req.session.regenerate...
res.send({rediskey: req.sessionID});

Client side:

//store the key in a cookie
SetCookie('rediskey', <%= rediskey %>); // http://msdn.microsoft.com/en-us/library/ms533693(v=vs.85).aspx

//then when socket is connected, fetch the rediskey from the document.cookie and send it back to server
var socket = new io.Socket();

socket.on('connect', function() {
    var rediskey = GetCookie('rediskey'); // http://msdn.microsoft.com/en-us/library/ms533693(v=vs.85).aspx
    socket.send({rediskey: rediskey});
});

//server-side in io.on('connection')
io.on('connection', function(client) {
      client.on('message', function(message) {
              if(message.rediskey) {
                    //fetch session info from redis
                    redisclient.get(message.rediskey, function(e, c) {
                        client.user_logged_in = c.username;
                   });
              }
      });
});
link|improve this answer
1  
Thanks! This looks exactly like what I'm trying to do – Ryan Jan 21 '11 at 13:28
1  
There is a new interesting link about this => danielbaulig.de/socket-ioexpress – Alfred Aug 14 '11 at 19:33
1  
aha! That link is really good. This is outdated (uses Socket.IO 0.6.3)! Essentially the same concept. Fetch cookie, check in session store and authenticate :) – Shripad K Aug 14 '11 at 19:51
feedback

I also liked the way pusherapp does private channels.enter image description here

A unique socket id is generated and sent to the browser by Pusher. This is sent to your application (1) via an AJAX request which authorizes the user to access the channel against your existing authentication system. If successful your application returns an authorization string to the browser signed with you Pusher secret. This is sent to Pusher over the WebSocket, which completes the authorization (2) if the authorization string matches.

Because also socket.io has unique socket_id for every socket.

socket.on('connect', function() {
        console.log(socket.transport.sessionid);
});

They used signed authorization strings to authorize users.

I haven't yet mirrored this to socket.io, but I think it could be pretty interesting concept.

link|improve this answer
3  
This is awesome. But it would be easier to just use cookies if your app server and websocket server aren't separated. But you generally would like to separate the two(it will be easier to scale the socket server if separated). So it is good :) – Shripad K Jan 24 '11 at 14:32
1  
@Shripad you are completely true and I also really like your implementation :P – Alfred Jan 24 '11 at 15:16
feedback

this should do it

//server side

io.sockets.on('connection', function (con) {
  console.log(con.id)
})

//client side

var io = io.connect('http://...')

console.log(io.sessionid)
link|improve this answer
io.socket.sessionid in my case – ZiTAL May 14 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.