Get user id socket.io, passport, koa

后端 未结 2 992
無奈伤痛
無奈伤痛 2021-02-10 08:20

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 = [con         


        
2条回答
  •  执笔经年
    2021-02-10 08:26

    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.

提交回复
热议问题