i'm using this authorization function in my socket.io setup:
io.set('authorization', function (data, accept) {
if (!data.headers.cookie) {
return accept('Session cookie required.', false);
}
data.cookie = require("cookie").parse(data.headers.cookie);
data.cookie = require("connect").utils.parseSignedCookies(data.cookie,"yeah whatever");
data.sessionID = data.cookie['connect.sid'];
sessionStore.get(data.sessionID, function(err, session){
if (err) {
return accept('Error in session store.', false);
} else if (!session) {
return accept('Session not found.', false);
}
// success! we're authenticated with a known session.info.
return accept(null, true);
});
});
then i manipulate the session variables like this:
var addAchievementToUser = function(achievement, sessionID) {
sessionStore.get(sessionID, function(err, session) {
//stuff happens here such as
session.info.username = "whatever";
sessionStore.set(sessionID, session, function () {
});
}
});
};
this works fine and does what i want but sometimes it produces some evil race conditions.
so, how can i rewrite this so that it does not create race conditions? i've looked into the connect middleware to see if it is possible to manipulate only a single key / value pair instead of the whole session object. but it seems that this is not possible since the session needs to be a string:
MemoryStore.prototype.set = function(sid, sess, fn){
var self = this;
process.nextTick(function(){
self.sessions[sid] = JSON.stringify(sess);
fn && fn();
});
};
any ideas?