"use strict"; var meta = require('../meta'), Messaging = require('../messaging'), utils = require('../../public/src/utils'), server = require('./'), SocketModules = { chats: {}, sounds: {}, settings: {} }; /* Chat */ SocketModules.chats.get = function(socket, data, callback) { if(!data) { return callback(new Error('[[error:invalid-data]]')); } Messaging.getMessages(socket.uid, data.touid, data.since, false, callback); }; SocketModules.chats.send = function(socket, data, callback) { if (!data) { return callback(new Error('[[error:invalid-data]]')); } var now = Date.now(), touid = parseInt(data.touid, 10); // Websocket rate limiting socket.lastChatMessageTime = socket.lastChatMessageTime || 0; if (now - socket.lastChatMessageTime < 200) { return callback(new Error('[[error:too-many-messages]]')); } else { socket.lastChatMessageTime = now; } Messaging.canMessage(socket.uid, touid, function(err, allowed) { if (err || !allowed) { return callback(err || new Error('[[error:chat-restricted]]')); } Messaging.addMessage(socket.uid, touid, data.message, function(err, message) { if (err) { return callback(err); } Messaging.notifyUser(socket.uid, touid, message); callback(); }); }); }; SocketModules.chats.canMessage = function(socket, toUid, callback) { Messaging.canMessage(socket.uid, toUid, function(err, allowed) { callback(!allowed ? new Error('[[error:chat-restricted]]') : undefined); }); }; SocketModules.chats.markRead = function(socket, touid, callback) { Messaging.markRead(socket.uid, touid, function(err) { if (!err) { Messaging.pushUnreadCount(socket.uid); } }); }; SocketModules.chats.userStartTyping = function(socket, data, callback) { sendTypingNotification('event:chats.userStartTyping', socket, data, callback); }; SocketModules.chats.userStopTyping = function(socket, data, callback) { sendTypingNotification('event:chats.userStopTyping', socket, data, callback); }; function sendTypingNotification(event, socket, data, callback) { if (!socket.uid || !data) { return; } server.in('uid_' + data.touid).emit(event, data.fromUid); } 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), stop = start + 9; Messaging.getRecentChats(socket.uid, start, stop, callback); }; /* Sounds */ SocketModules.sounds.getSounds = function(socket, data, callback) { // Read sounds from local directory meta.sounds.getFiles(callback); }; SocketModules.sounds.getMapping = function(socket, data, callback) { meta.sounds.getMapping(callback); }; module.exports = SocketModules;