mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 02:55:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			324 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			324 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| var	SocketIO = require('socket.io'),
 | |
| 	socketioWildcard = require('socket.io-wildcard'),
 | |
| 	util = require('util'),
 | |
| 	async = require('async'),
 | |
| 	path = require('path'),
 | |
| 	fs = require('fs'),
 | |
| 	nconf = require('nconf'),
 | |
| 	express = require('express'),
 | |
| 	socketCookieParser = express.cookieParser(nconf.get('secret')),
 | |
| 	winston = require('winston'),
 | |
| 
 | |
| 	db = require('../database'),
 | |
| 	user = require('../user'),
 | |
| 	topics = require('../topics'),
 | |
| 	logger = require('../logger'),
 | |
| 	meta = require('../meta'),
 | |
| 
 | |
| 	Sockets = {},
 | |
| 	Namespaces = {};
 | |
| 
 | |
| /* === */
 | |
| 
 | |
| var users = {},
 | |
| 	io;
 | |
| 
 | |
| 
 | |
| Sockets.userSockets = {};
 | |
| Sockets.rooms = {};
 | |
| 
 | |
| 
 | |
| Sockets.init = function() {
 | |
| 
 | |
| 	io = socketioWildcard(SocketIO).listen(global.server, {
 | |
| 		log: false,
 | |
| 		transports: ['websocket', 'xhr-polling', 'jsonp-polling', 'flashsocket'],
 | |
| 		'browser client minification': true
 | |
| 	});
 | |
| 
 | |
| 	Sockets.server = io;
 | |
| 
 | |
| 	fs.readdir(__dirname, function(err, files) {
 | |
| 		files.splice(files.indexOf('index.js'), 1);
 | |
| 
 | |
| 		async.each(files, function(lib, next) {
 | |
| 			lib = lib.slice(0, -3);
 | |
| 			Namespaces[lib] = require('./' + lib);
 | |
| 			next();
 | |
| 		});
 | |
| 	});
 | |
| 
 | |
| 	io.sockets.on('connection', function(socket) {
 | |
| 		var hs = socket.handshake,
 | |
| 			sessionID, uid, lastPostTime = 0;
 | |
| 
 | |
| 		// Validate the session, if present
 | |
| 		socketCookieParser(hs, {}, function(err) {
 | |
| 			sessionID = socket.handshake.signedCookies["express.sid"];
 | |
| 			db.sessionStore.get(sessionID, function(err, sessionData) {
 | |
| 				if (!err && sessionData && sessionData.passport && sessionData.passport.user) {
 | |
| 					uid = users[sessionID] = sessionData.passport.user;
 | |
| 				} else {
 | |
| 					uid = users[sessionID] = 0;
 | |
| 				}
 | |
| 
 | |
| 				socket.uid = parseInt(uid, 10);
 | |
| 
 | |
| 				Sockets.userSockets[uid] = Sockets.userSockets[uid] || [];
 | |
| 				Sockets.userSockets[uid].push(socket);
 | |
| 
 | |
| 				/* Need to save some state for the logger & maybe some other modules later on */
 | |
| 				socket.state = {
 | |
| 					user : {
 | |
| 						uid : uid
 | |
| 					}
 | |
| 				};
 | |
| 
 | |
| 				/* If meta.config.loggerIOStatus > 0, logger.io_one will hook into this socket */
 | |
| 				logger.io_one(socket,uid);
 | |
| 
 | |
| 				if (uid) {
 | |
| 
 | |
| 					db.sortedSetAdd('users:online', Date.now(), uid, function(err, data) {
 | |
| 						socket.join('uid_' + uid);
 | |
| 
 | |
| 						user.getUserField(uid, 'username', function(err, username) {
 | |
| 							socket.emit('event:connect', {
 | |
| 								status: 1,
 | |
| 								username: username,
 | |
| 								uid: uid
 | |
| 							});
 | |
| 						});
 | |
| 					});
 | |
| 				}
 | |
| 
 | |
| 				io.sockets.in('global').emit('user.isOnline', isUserOnline(uid));
 | |
| 			});
 | |
| 		});
 | |
| 
 | |
| 		socket.on('disconnect', function() {
 | |
| 
 | |
| 			var index = (Sockets.userSockets[uid] || []).indexOf(socket);
 | |
| 			if (index !== -1) {
 | |
| 				Sockets.userSockets[uid].splice(index, 1);
 | |
| 			}
 | |
| 
 | |
| 			if (Sockets.userSockets[uid] && Sockets.userSockets[uid].length === 0) {
 | |
| 				delete users[sessionID];
 | |
| 				delete Sockets.userSockets[uid];
 | |
| 				if (uid) {
 | |
| 					db.sortedSetRemove('users:online', uid, function(err, data) {
 | |
| 					});
 | |
| 				}
 | |
| 			}
 | |
| 
 | |
| 			io.sockets.in('global').emit('user.isOnline', isUserOnline(uid));
 | |
| 
 | |
| 			emitOnlineUserCount();
 | |
| 
 | |
| 			for (var roomName in Sockets.rooms) {
 | |
| 				if (Sockets.rooms.hasOwnProperty(roomName)) {
 | |
| 					socket.leave(roomName);
 | |
| 
 | |
| 					if (Sockets.rooms[roomName][socket.id]) {
 | |
| 						delete Sockets.rooms[roomName][socket.id];
 | |
| 					}
 | |
| 
 | |
| 					updateRoomBrowsingText(roomName);
 | |
| 				}
 | |
| 			}
 | |
| 		});
 | |
| 
 | |
| 		socket.on('*', function(payload, callback) {
 | |
| 			function callMethod(method) {
 | |
| 				method.call(null, socket, payload.args.length ? payload.args[0] : null, function(err, result) {
 | |
| 					if (callback) {
 | |
| 						callback(err?{message:err.message}:null, result);
 | |
| 					}
 | |
| 				});
 | |
| 			}
 | |
| 
 | |
| 
 | |
| 			var parts = payload.name.split('.'),
 | |
| 				namespace = parts.slice(0, 1),
 | |
| 				methodToCall = parts.reduce(function(prev, cur) {
 | |
| 					if (prev !== null && prev[cur]) {
 | |
| 						return prev[cur];
 | |
| 					} else {
 | |
| 						return null;
 | |
| 					}
 | |
| 				}, Namespaces);
 | |
| 
 | |
| 			if (methodToCall !== null) {
 | |
| 
 | |
| 				if (Namespaces[namespace].before) {
 | |
| 					Namespaces[namespace].before(socket, function() {
 | |
| 						callMethod(methodToCall);
 | |
| 					});
 | |
| 				} else {
 | |
| 					callMethod(methodToCall);
 | |
| 				}
 | |
| 			} else {
 | |
| 				winston.warn('[socket.io] Unrecognized message: ' + payload.name);
 | |
| 			}
 | |
| 		});
 | |
| 	});
 | |
| };
 | |
| 
 | |
| Sockets.logoutUser = function(uid) {
 | |
| 	if(Sockets.userSockets[uid] && Sockets.userSockets[uid].length) {
 | |
| 		for(var i=0; i< Sockets.userSockets[uid].length; ++i) {
 | |
| 			Sockets.userSockets[uid][i].emit('event:disconnect');
 | |
| 			Sockets.userSockets[uid][i].disconnect();
 | |
| 
 | |
| 			if(!Sockets.userSockets[uid]) {
 | |
| 				return;
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| };
 | |
| 
 | |
| Sockets.emitUserCount = function() {
 | |
| 	db.getObjectField('global', 'userCount', function(err, count) {
 | |
| 		io.sockets.emit('user.count', err?{message:err.message}:null, {
 | |
| 			count: count
 | |
| 		});
 | |
| 	});
 | |
| };
 | |
| 
 | |
| // Use sessionData.server.sockets.in() instead of this method.
 | |
| Sockets.in = function(room) {
 | |
| 	return io.sockets.in(room);
 | |
| };
 | |
| 
 | |
| Sockets.getConnectedClients = function() {
 | |
| 	return Sockets.userSockets;
 | |
| };
 | |
| 
 | |
| Sockets.getOnlineAnonCount = function () {
 | |
| 	return Sockets.userSockets[0] ? Sockets.userSockets[0].length : 0;
 | |
| };
 | |
| 
 | |
| /* Helpers */
 | |
| 
 | |
| Sockets.isUserOnline = isUserOnline;
 | |
| function isUserOnline(uid) {
 | |
| 	return !!Sockets.userSockets[uid] && Sockets.userSockets[uid].length > 0;
 | |
| }
 | |
| 
 | |
| Sockets.updateRoomBrowsingText = updateRoomBrowsingText;
 | |
| function updateRoomBrowsingText(roomName) {
 | |
| 
 | |
| 	function getUidsInRoom(room) {
 | |
| 		var uids = [];
 | |
| 		for (var socketId in room) {
 | |
| 			if (uids.indexOf(room[socketId]) === -1) {
 | |
| 				uids.push(room[socketId]);
 | |
| 			}
 | |
| 		}
 | |
| 		return uids;
 | |
| 	}
 | |
| 
 | |
| 	function getAnonymousCount(roomName) {
 | |
| 		var clients = io.sockets.clients(roomName);
 | |
| 		var anonCount = 0;
 | |
| 
 | |
| 		for (var i = 0; i < clients.length; ++i) {
 | |
| 			var hs = clients[i].handshake;
 | |
| 			if (hs && clients[i].state && clients[i].state.user.uid === 0) {
 | |
| 				++anonCount;
 | |
| 			}
 | |
| 		}
 | |
| 		return anonCount;
 | |
| 	}
 | |
| 
 | |
| 	var	uids = getUidsInRoom(Sockets.rooms[roomName]),
 | |
| 		anonymousCount = getAnonymousCount(roomName);
 | |
| 
 | |
| 	if (uids.length === 0) {
 | |
| 		io.sockets.in(roomName).emit('get_users_in_room', { users: [], anonymousCount: anonymousCount });
 | |
| 	} else {
 | |
| 		user.getMultipleUserFields(uids, ['uid', 'username', 'userslug', 'picture'], function(err, users) {
 | |
| 			if(!err) {
 | |
| 				io.sockets.in(roomName).emit('get_users_in_room', { users: users, anonymousCount: anonymousCount });
 | |
| 			}
 | |
| 		});
 | |
| 	}
 | |
| }
 | |
| 
 | |
| Sockets.emitTopicPostStats = emitTopicPostStats;
 | |
| function emitTopicPostStats(callback) {
 | |
| 	db.getObjectFields('global', ['topicCount', 'postCount'], function(err, data) {
 | |
| 		if (err) {
 | |
| 			return winston.err(err);
 | |
| 		}
 | |
| 
 | |
| 		var stats = {
 | |
| 			topics: data.topicCount ? data.topicCount : 0,
 | |
| 			posts: data.postCount ? data.postCount : 0
 | |
| 		};
 | |
| 
 | |
| 		if (!callback) {
 | |
| 			io.sockets.emit('post.stats', null, stats);
 | |
| 		} else {
 | |
| 			callback(null, stats);
 | |
| 		}
 | |
| 	});
 | |
| }
 | |
| 
 | |
| Sockets.emitOnlineUserCount = emitOnlineUserCount;
 | |
| function emitOnlineUserCount(callback) {
 | |
| 	var anon = Sockets.userSockets[0] ? Sockets.userSockets[0].length : 0;
 | |
| 	var registered = Object.keys(Sockets.userSockets).length;
 | |
| 	if (anon) {
 | |
| 		registered = registered - 1;
 | |
| 	}
 | |
| 
 | |
| 	var returnObj = {
 | |
| 		users: registered + anon,
 | |
| 		anon: anon
 | |
| 	};
 | |
| 
 | |
| 	if (callback) {
 | |
| 		callback(null, returnObj);
 | |
| 	} else {
 | |
| 		io.sockets.emit('user.getActiveUsers', null, returnObj);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| Sockets.emitAlert = emitAlert;
 | |
| function emitAlert(socket, title, message) {
 | |
| 	socket.emit('event:alert', {
 | |
| 		type: 'danger',
 | |
| 		timeout: 2000,
 | |
| 		title: title,
 | |
| 		message: message,
 | |
| 		alert_id: 'post_error'
 | |
| 	});
 | |
| }
 | |
| 
 | |
| Sockets.emitContentTooShortAlert = emitContentTooShortAlert;
 | |
| function emitContentTooShortAlert(socket) {
 | |
| 	socket.emit('event:alert', {
 | |
| 		type: 'danger',
 | |
| 		timeout: 2000,
 | |
| 		title: 'Content too short',
 | |
| 		message: "Please enter a longer post. At least " + meta.config.minimumPostLength + " characters.",
 | |
| 		alert_id: 'post_error'
 | |
| 	});
 | |
| }
 | |
| 
 | |
| Sockets.emitTooManyPostsAlert = emitTooManyPostsAlert;
 | |
| function emitTooManyPostsAlert(socket) {
 | |
| 	socket.emit('event:alert', {
 | |
| 		title: 'Too many posts!',
 | |
| 		message: 'You can only post every ' + meta.config.postDelay + ' seconds.',
 | |
| 		type: 'danger',
 | |
| 		timeout: 2000
 | |
| 	});
 | |
| }
 | |
| 
 | |
| /* Exporting */
 | |
| module.exports = Sockets; |