Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get user id socket.io, passport, koa

I'm using Koa, Passport.js and koa-session to authenticate users. So it basically looks like:

// session
var session = require('koa-session');
app.keys = [config.secret];
app.use(session());


// auth
require(__dirname+'/lib/auth'); // de/serializeUser, strategies etc..
var passport = require('koa-passport');
app.use(passport.initialize());
app.use(passport.session());

This works well. On requests I do have the req.user, with the user id. But when using sockets, I can do:

io.on('connection', function(socket) {
  console.log(socket.request.headers.cookie),
});

But of course it's only the encrypted session ID, how could I deserialize the user and get the user.id just like I do when I get the req.user on get or post request?

Thank you in advance.

like image 650
Cohars Avatar asked Oct 30 '14 01:10

Cohars


1 Answers

This is a very late response but I hope it will be of use to you. I just spent about four hours trying to solve this problem.

The first issue you will run into is that koa-session does not use real session stores. It embeds all information in the cookie itself and then parses it to and from the client. While this can be convenient, it works against you when trying to incorporate Socket.IO, as Socket.IO has no access to koa-session.

You'll need to migrate to koa-generic-session and use a session store to keep track of your sessions. This is, in my opinion, a better move regardless. I am currently using koa-redis for my session stores.

In order to have access to your sessions in Socket.IO, you will need to set up a global store. Here's what my global store looks like.

// store.js

var RedisStore = require('koa-redis'),
    store = undefined; // global

module.exports = function(app, settings) {
    // Where (app) is Koa and (settings) is arbitrary information
    return (function(app, settings) {
        store = store || new RedisStore();
        return store;
    })(app, settings);
}

After that, the initial setup is easy.

// app.js

... arbitrary code here ...

var session = require('koa-generic-session');

app.keys = [config.secret];
app.use(session({
    store: require('./store')(app, settings)
}));

... arbitrary code here ...

Now that you have a global session storage, you can then access it in Socket.IO. Please keep in mind you will need to install the cookie and co modules.

// io.js

var cookie = require('cookie'),
    co = require('co'),
    store = require('./store')(null, settings); // We don't require the Koa app

io.use(function(socket, next){
    // Now you will need to set up the authorization middleware. In order to
    // authenticate, you will need the SID from the cookie generated by
    // koa-generic-session. The property name is by default 'koa.sid'.

    var sid = cookie.parse(socket.handshake.headers.cookie)['koa.sid'];

    // We need co to handle generators for us or everything will blow up
    // when you try to access data stores designed for Koa.

    co(function*(){
        // 'koa:sess:' is the default prefix for generic sessions.
        var session = yield store.get('koa:sess:' + sid);

        // At this point you can do any validation you'd like. If all is well,
        // authorize the connection. Feel free to add any additional properties
        // to the handshake from the session if you please.

        if (session) next(null, true) // authenticated
        else throw new Error('Authentication error.');
    });
});

io.on('connection', function(socket){
    // Access handshake here.
});

I've adjusted the code for Socket.IO v1. I hope this helps.

like image 142
dimiguel Avatar answered Oct 05 '22 11:10

dimiguel