You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/websockets.js

141 lines
3.7 KiB
JavaScript

12 years ago
var SocketIO = require('socket.io').listen(global.server,{log:false}),
cookie = require('cookie'),
connect = require('connect'),
config = require('../config.js');
(function(io) {
var modules = null,
12 years ago
users = {};
global.io = io;
module.exports.init = function() {
modules = global.modules;
}
// Adapted from http://howtonode.org/socket-io-auth
io.set('authorization', function(handshakeData, accept) {
if (handshakeData.headers.cookie) {
handshakeData.cookie = cookie.parse(handshakeData.headers.cookie);
handshakeData.sessionID = connect.utils.parseSignedCookie(handshakeData.cookie['express.sid'], config.secret);
if (handshakeData.cookie['express.sid'] == handshakeData.sessionID) {
return accept('Cookie is invalid.', false);
}
} else {
// No cookie sent
return accept('No cookie transmitted', false);
}
// Otherwise, continue unimpeded.
12 years ago
var sessionID = handshakeData.sessionID;
global.modules.user.get_uid_by_session(sessionID, function(userId) {
if (userId)
{
users[sessionID] = userId;
}
else
users[sessionID] = 0;
accept(null, true);
});
});
io.sockets.on('connection', function(socket) {
12 years ago
var hs = socket.handshake;
var uid = users[hs.sessionID];
if (DEVELOPMENT === true) {
// refreshing templates
modules.templates.init();
}
process.on('uncaughtException', function(err) {
// handle the error safely
console.log("error message "+err);
socket.emit('event:consolelog',{type:'uncaughtException', stack:err.stack, error:err.toString()});
});
socket.emit('event:connect', {status: 1});
12 years ago
socket.on('disconnect', function() {
console.log('Got disconnect! SESSION ID : '+hs.sessionID+' USER ID : '+uid);
delete users[hs.sessionID];
console.log(users);
});
// BEGIN: API calls (todo: organize)
// julian: :^)
socket.on('api:user.get', function(data) {
modules.user.get(socket, uid, data.fields);
});
socket.on('api:user.getNameByUid', function(data) {
modules.user.get_username_by_uid(data.uid, function(data){
socket.emit('api:user.getNameByUid', data);
});
});
socket.on('user.exists', function(data) {
modules.user.exists(socket, data.username);
});
socket.on('user.count', function(data) {
modules.user.count(socket, data);
});
socket.on('user.latest', function(data) {
modules.user.latest(socket, data);
});
socket.on('user.login', function(data) {
data.sessionID = sessionID;
modules.user.login(socket, data);
});
socket.on('user.email.exists', function(data) {
modules.user.email.exists(socket, data.email);
});
socket.on('user:reset.send', function(data) {
modules.user.reset.send(socket, data.email);
});
socket.on('user:reset.valid', function(data) {
modules.user.reset.validate(socket, data.code);
});
socket.on('user:reset.commit', function(data) {
modules.user.reset.commit(socket, data.code, data.password);
});
socket.on('api:topics.post', function(data) {
modules.topics.post(socket, uid, data.title, data.content);
});
12 years ago
socket.on('api:posts.reply', function(data) {
modules.posts.reply(socket, data.topic_id, uid, data.content);
12 years ago
});
socket.on('api:user.active.get', function() {
modules.user.active.get();
});
socket.on('api:posts.favourite', function(data) {
modules.posts.favourite(socket, data.pid);
});
socket.on('api:posts.unfavourite', function(data) {
modules.posts.unfavourite(socket, data.pid);
});
socket.on('api:user.active.get_record', function() {
modules.user.active.get_record(socket);
});
});
}(SocketIO));