| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | var async = require('async'); | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | var validator = require('validator'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-21 10:36:44 +02:00
										 |  |  | var meta = require('../meta'); | 
					
						
							| 
									
										
										
										
											2016-01-18 13:57:02 -05:00
										 |  |  | var notifications = require('../notifications'); | 
					
						
							| 
									
										
										
										
											2016-07-13 17:33:04 -04:00
										 |  |  | var plugins = require('../plugins'); | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | var Messaging = require('../messaging'); | 
					
						
							|  |  |  | var utils = require('../../public/src/utils'); | 
					
						
							|  |  |  | var server = require('./'); | 
					
						
							|  |  |  | var user = require('../user'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var SocketModules = { | 
					
						
							| 
									
										
										
										
											2014-03-14 00:34:51 -04:00
										 |  |  | 		chats: {}, | 
					
						
							|  |  |  | 		sounds: {}, | 
					
						
							|  |  |  | 		settings: {} | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Chat */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-16 15:28:21 -05:00
										 |  |  | SocketModules.chats.get = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-16 10:09:00 +02:00
										 |  |  | 	if(!data || !data.roomId) { | 
					
						
							| 
									
										
										
										
											2014-04-09 21:36:57 -04:00
										 |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							| 
									
										
										
										
											2014-01-17 12:55:38 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-27 17:32:33 -04:00
										 |  |  | 	Messaging.getMessages({ | 
					
						
							| 
									
										
										
										
											2015-12-15 17:50:30 +02:00
										 |  |  | 		uid: socket.uid, | 
					
						
							|  |  |  | 		roomId: data.roomId, | 
					
						
							| 
									
										
										
										
											2015-08-27 17:32:33 -04:00
										 |  |  | 		since: data.since, | 
					
						
							|  |  |  | 		isNew: false | 
					
						
							|  |  |  | 	}, callback); | 
					
						
							| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | SocketModules.chats.getRaw = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-17 11:22:15 +02:00
										 |  |  | 	if (!data || !data.hasOwnProperty('mid')) { | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-17 11:22:15 +02:00
										 |  |  | 	async.waterfall([ | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.isUserInRoom(socket.uid, data.roomId, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (inRoom, next) { | 
					
						
							|  |  |  | 			if (!inRoom) { | 
					
						
							|  |  |  | 				return next(new Error('[[error:not-allowed]]')); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			Messaging.getMessageField(data.mid, 'content', next); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	], callback); | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | SocketModules.chats.newRoom = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-16 11:15:43 +02:00
										 |  |  | 	if (!data) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-09-07 18:48:00 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (rateLimitExceeded(socket)) { | 
					
						
							| 
									
										
										
										
											2015-12-16 11:15:43 +02:00
										 |  |  | 		return callback(new Error('[[error:too-many-messages]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-11 13:38:52 +02:00
										 |  |  | 	Messaging.canMessageUser(socket.uid, data.touid, function(err) { | 
					
						
							| 
									
										
										
										
											2016-02-29 10:36:20 +02:00
										 |  |  | 		if (err) { | 
					
						
							|  |  |  | 			return callback(err); | 
					
						
							| 
									
										
										
										
											2015-12-16 11:15:43 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 		Messaging.newRoom(socket.uid, [data.touid], callback); | 
					
						
							| 
									
										
										
										
											2015-12-16 11:15:43 +02:00
										 |  |  | 	}); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-28 12:13:01 -04:00
										 |  |  | SocketModules.chats.send = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-15 20:00:51 +02:00
										 |  |  | 	if (!data || !data.roomId) { | 
					
						
							| 
									
										
										
										
											2014-04-09 21:36:57 -04:00
										 |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							| 
									
										
										
										
											2014-01-17 12:55:38 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 18:48:00 +03:00
										 |  |  | 	if (rateLimitExceeded(socket)) { | 
					
						
							| 
									
										
										
										
											2014-10-15 14:49:11 -04:00
										 |  |  | 		return callback(new Error('[[error:too-many-messages]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-07-23 18:23:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 	async.waterfall([ | 
					
						
							| 
									
										
										
										
											2016-07-13 17:33:04 -04:00
										 |  |  | 		function (next) { | 
					
						
							|  |  |  | 			plugins.fireHook('filter:messaging.send', { | 
					
						
							|  |  |  | 				data: data, | 
					
						
							|  |  |  | 				uid: socket.uid | 
					
						
							|  |  |  | 			}, function(err, results) { | 
					
						
							|  |  |  | 				data = results.data; | 
					
						
							|  |  |  | 				next(err); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.canMessageRoom(socket.uid, data.roomId, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							| 
									
										
										
										
											2016-09-07 18:48:00 +03:00
										 |  |  | 			Messaging.sendMessage(socket.uid, data.roomId, data.message, Date.now(), next); | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		function (message, next) { | 
					
						
							| 
									
										
										
										
											2015-12-16 11:15:43 +02:00
										 |  |  | 			Messaging.notifyUsersInRoom(socket.uid, data.roomId, message); | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 			user.updateOnlineUsers(socket.uid); | 
					
						
							|  |  |  | 			next(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	], callback); | 
					
						
							| 
									
										
										
										
											2014-10-30 17:50:07 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-10-03 15:28:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 18:48:00 +03:00
										 |  |  | function rateLimitExceeded(socket) { | 
					
						
							|  |  |  | 	var now = Date.now(); | 
					
						
							|  |  |  | 	socket.lastChatMessageTime = socket.lastChatMessageTime || 0; | 
					
						
							|  |  |  | 	var delay = meta.config.hasOwnProperty('chatMessageDelay') ? parseInt(meta.config.chatMessageDelay, 10) : 200; | 
					
						
							|  |  |  | 	if (now - socket.lastChatMessageTime < delay) { | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		socket.lastChatMessageTime = now; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-21 10:14:44 +02:00
										 |  |  | SocketModules.chats.loadRoom = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 	if (!data || !data.roomId) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 	async.waterfall([ | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | 			Messaging.isUserInRoom(socket.uid, data.roomId, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (inRoom, next) { | 
					
						
							|  |  |  | 			if (!inRoom) { | 
					
						
							|  |  |  | 				return next(new Error('[[error:not-allowed]]')); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-21 10:14:44 +02:00
										 |  |  | 			async.parallel({ | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | 				roomData: async.apply(Messaging.getRoomData, data.roomId), | 
					
						
							|  |  |  | 				users: async.apply(Messaging.getUsersInRoom, data.roomId, 0, -1) | 
					
						
							| 
									
										
										
										
											2015-12-21 10:14:44 +02:00
										 |  |  | 			}, next); | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2015-12-21 10:14:44 +02:00
										 |  |  | 		function (results, next) { | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | 			results.roomData.users = results.users; | 
					
						
							|  |  |  | 			results.roomData.isOwner = parseInt(results.roomData.owner, 10) === socket.uid; | 
					
						
							| 
									
										
										
										
											2015-12-24 09:52:25 +02:00
										 |  |  | 			results.roomData.maximumUsersInChatRoom = parseInt(meta.config.maximumUsersInChatRoom, 10) || 0; | 
					
						
							|  |  |  | 			results.roomData.showUserInput = !results.roomData.maximumUsersInChatRoom || results.roomData.maximumUsersInChatRoom > 2; | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | 			next(null, results.roomData); | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-19 12:02:51 +02:00
										 |  |  | 	], callback); | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SocketModules.chats.addUserToRoom = function(socket, data, callback) { | 
					
						
							|  |  |  | 	if (!data || !data.roomId || !data.username) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	async.waterfall([ | 
					
						
							| 
									
										
										
										
											2015-12-24 09:52:25 +02:00
										 |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.getUserCountInRoom(data.roomId, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (userCount, next) { | 
					
						
							|  |  |  | 			var maxUsers = parseInt(meta.config.maximumUsersInChatRoom, 10) || 0; | 
					
						
							|  |  |  | 			if (maxUsers && userCount >= maxUsers) { | 
					
						
							|  |  |  | 				return next(new Error('[[error:cant-add-more-users-to-chat-room]]')); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			next(); | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 		function (next) { | 
					
						
							|  |  |  | 			user.getUidByUsername(data.username, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (uid, next) { | 
					
						
							|  |  |  | 			if (!uid) { | 
					
						
							|  |  |  | 				return next(new Error('[[error:no-user]]')); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-23 13:00:43 +02:00
										 |  |  | 			if (socket.uid === parseInt(uid, 10)) { | 
					
						
							|  |  |  | 				return next(new Error('[[error:cant-add-self-to-chat-room]]')); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-16 13:35:24 +02:00
										 |  |  | 			Messaging.addUsersToRoom(socket.uid, [uid], data.roomId, next); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	], callback); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SocketModules.chats.removeUserFromRoom = function(socket, data, callback) { | 
					
						
							|  |  |  | 	if (!data || !data.roomId) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	async.waterfall([ | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							|  |  |  | 			user.getUidByUsername(data.username, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (uid, next) { | 
					
						
							|  |  |  | 			if (!uid) { | 
					
						
							|  |  |  | 				return next(new Error('[[error:no-user]]')); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Messaging.removeUsersFromRoom(socket.uid, [uid], data.roomId, next); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	], callback); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 12:34:09 +02:00
										 |  |  | SocketModules.chats.leave = function(socket, roomid, callback) { | 
					
						
							|  |  |  | 	if (!socket.uid || !roomid) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Messaging.leaveRoom([socket.uid], roomid, callback); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | SocketModules.chats.edit = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-15 19:39:45 +02:00
										 |  |  | 	if (!data || !data.roomId) { | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Messaging.canEdit(data.mid, socket.uid, function(err, allowed) { | 
					
						
							| 
									
										
										
										
											2015-12-15 19:39:45 +02:00
										 |  |  | 		if (err || !allowed) { | 
					
						
							|  |  |  | 			return callback(err || new Error('[[error:cant-edit-chat-message]]')); | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-15 19:39:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Messaging.editMessage(socket.uid, data.mid, data.roomId, data.message, callback); | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 	}); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SocketModules.chats.delete = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2015-12-15 14:10:32 +02:00
										 |  |  | 	if (!data || !data.roomId || !data.messageId) { | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Messaging.canEdit(data.messageId, socket.uid, function(err, allowed) { | 
					
						
							| 
									
										
										
										
											2015-12-17 12:05:35 +02:00
										 |  |  | 		if (err || !allowed) { | 
					
						
							|  |  |  | 			return callback(err || new Error('[[error:cant-delete-chat-message]]')); | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-17 12:05:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Messaging.deleteMessage(data.messageId, data.roomId, callback); | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2015-12-16 11:15:43 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-12-11 12:07:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 10:09:00 +02:00
										 |  |  | SocketModules.chats.canMessage = function(socket, roomId, callback) { | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 	Messaging.canMessageRoom(socket.uid, roomId, callback); | 
					
						
							| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 10:09:00 +02:00
										 |  |  | SocketModules.chats.markRead = function(socket, roomId, callback) { | 
					
						
							| 
									
										
										
										
											2016-01-19 12:02:51 +02:00
										 |  |  | 	async.parallel({ | 
					
						
							|  |  |  | 		usersInRoom: async.apply(Messaging.getUidsInRoom, roomId, 0, -1), | 
					
						
							|  |  |  | 		markRead: async.apply(Messaging.markRead, socket.uid, roomId) | 
					
						
							|  |  |  | 	}, function(err, results) { | 
					
						
							| 
									
										
										
										
											2015-10-02 17:31:18 -04:00
										 |  |  | 		if (err) { | 
					
						
							|  |  |  | 			return callback(err); | 
					
						
							| 
									
										
										
										
											2014-07-19 10:33:27 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-02 17:31:18 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Messaging.pushUnreadCount(socket.uid); | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 12:02:51 +02:00
										 |  |  | 		// Mark notification read
 | 
					
						
							|  |  |  | 		var nids = results.usersInRoom.filter(function(uid) { | 
					
						
							|  |  |  | 			return parseInt(uid, 10) !== socket.uid; | 
					
						
							|  |  |  | 		}).map(function(uid) { | 
					
						
							|  |  |  | 			return 'chat_' + uid + '_' + roomId; | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 12:02:51 +02:00
										 |  |  | 		notifications.markReadMultiple(nids, socket.uid, function() { | 
					
						
							|  |  |  | 			user.notifications.pushCount(socket.uid); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-02-01 21:09:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-21 12:57:44 -04:00
										 |  |  | 		server.in('uid_' + socket.uid).emit('event:chats.markedAsRead', {roomId: roomId}); | 
					
						
							| 
									
										
										
										
											2015-10-02 17:31:18 -04:00
										 |  |  | 		callback(); | 
					
						
							| 
									
										
										
										
											2014-07-19 10:33:27 -04:00
										 |  |  | 	}); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-11 13:38:52 +02:00
										 |  |  | SocketModules.chats.markAllRead = function(socket, data, callback) { | 
					
						
							|  |  |  | 	async.waterfall([ | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.markAllRead(socket.uid, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.pushUnreadCount(socket.uid); | 
					
						
							|  |  |  | 			next(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	], callback); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | SocketModules.chats.renameRoom = function(socket, data, callback) { | 
					
						
							|  |  |  | 	if (!data) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-name]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	async.waterfall([ | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.renameRoom(socket.uid, data.roomId, data.newName, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (next) { | 
					
						
							|  |  |  | 			Messaging.getUidsInRoom(data.roomId, 0, -1, next); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		function (uids, next) { | 
					
						
							| 
									
										
										
										
											2016-08-27 15:45:15 +03:00
										 |  |  | 			var eventData = {roomId: data.roomId, newName: validator.escape(String(data.newName))}; | 
					
						
							| 
									
										
										
										
											2015-12-23 11:27:34 +02:00
										 |  |  | 			uids.forEach(function(uid) { | 
					
						
							|  |  |  | 				server.in('uid_' + uid).emit('event:chats.roomRename', eventData); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 			next(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	], callback); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 16:26:25 -04:00
										 |  |  | SocketModules.chats.getRecentChats = function(socket, data, callback) { | 
					
						
							|  |  |  | 	if (!data || !utils.isNumber(data.after)) { | 
					
						
							|  |  |  | 		return callback(new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	var start = parseInt(data.after, 10), | 
					
						
							| 
									
										
										
										
											2015-03-31 23:40:58 -04:00
										 |  |  | 		stop = start + 9; | 
					
						
							| 
									
										
										
										
											2014-09-15 16:26:25 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-31 23:40:58 -04:00
										 |  |  | 	Messaging.getRecentChats(socket.uid, start, stop, callback); | 
					
						
							| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-18 15:35:24 +02:00
										 |  |  | SocketModules.chats.hasPrivateChat = function(socket, uid, callback) { | 
					
						
							|  |  |  | 	if (!socket.uid || !uid) { | 
					
						
							|  |  |  | 		return callback(null, new Error('[[error:invalid-data]]')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Messaging.hasPrivateChat(socket.uid, uid, callback); | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-01-10 16:00:03 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-13 17:15:07 -04:00
										 |  |  | /* Sounds */ | 
					
						
							| 
									
										
										
										
											2014-03-14 00:34:51 -04:00
										 |  |  | SocketModules.sounds.getSounds = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2014-03-13 17:15:07 -04:00
										 |  |  | 	// Read sounds from local directory
 | 
					
						
							| 
									
										
										
										
											2014-04-12 18:33:52 -04:00
										 |  |  | 	meta.sounds.getFiles(callback); | 
					
						
							| 
									
										
										
										
											2014-03-13 17:15:07 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-14 00:34:51 -04:00
										 |  |  | SocketModules.sounds.getMapping = function(socket, data, callback) { | 
					
						
							| 
									
										
										
										
											2016-08-29 12:43:32 +03:00
										 |  |  | 	meta.sounds.getMapping(socket.uid, callback); | 
					
						
							| 
									
										
										
										
											2014-03-13 17:15:07 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-20 18:47:34 -04:00
										 |  |  | SocketModules.sounds.getData = function(socket, data, callback) { | 
					
						
							|  |  |  | 	async.parallel({ | 
					
						
							| 
									
										
										
										
											2016-08-29 12:43:32 +03:00
										 |  |  | 		mapping: async.apply(meta.sounds.getMapping, socket.uid), | 
					
						
							| 
									
										
										
										
											2015-10-20 18:47:34 -04:00
										 |  |  | 		files: async.apply(meta.sounds.getFiles) | 
					
						
							|  |  |  | 	}, callback); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-10 20:31:57 +01:00
										 |  |  | module.exports = SocketModules; |