mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-28 17:46:16 +01:00
more fixes
This commit is contained in:
@@ -311,7 +311,7 @@ var async = require('async'),
|
||||
|
||||
|
||||
|
||||
Messaging.notifyUser = function(fromuid, touid, messageObj) {
|
||||
Messaging.notifyUser = function(uid, roomId, messageObj) {
|
||||
// Immediate notifications
|
||||
// Recipient
|
||||
Messaging.pushUnreadCount(touid);
|
||||
@@ -355,10 +355,10 @@ var async = require('async'),
|
||||
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
Messaging.roomExists(roomId, next);
|
||||
Messaging.isUserInRoom(uid, roomId, next);
|
||||
},
|
||||
function (roomExists, next) {
|
||||
if (!roomExists) {
|
||||
function (inRoom, next) {
|
||||
if (!inRoom) {
|
||||
return callback(null, false);
|
||||
}
|
||||
user.getUserFields(uid, ['banned', 'email:confirmed'], next);
|
||||
|
||||
@@ -10,7 +10,7 @@ var db = require('../database');
|
||||
module.exports = function(Messaging) {
|
||||
|
||||
|
||||
Messaging.newMessage = function(fromuid, toUids, content, timestamp, callback) {
|
||||
Messaging.newMessage = function(uid, toUids, content, timestamp, callback) {
|
||||
var roomId;
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
@@ -21,30 +21,30 @@ module.exports = function(Messaging) {
|
||||
},
|
||||
function (_roomId, next) {
|
||||
roomId = _roomId;
|
||||
db.sortedSetAdd('chat:room:' + roomId + ':uids', timestamp, fromuid, next);
|
||||
db.sortedSetAdd('chat:room:' + roomId + ':uids', timestamp, uid, next);
|
||||
},
|
||||
function (next) {
|
||||
Messaging.addUsersToRoom(fromuid, toUids, roomId, next);
|
||||
Messaging.addUsersToRoom(uid, toUids, roomId, next);
|
||||
},
|
||||
function (next) {
|
||||
Messaging.sendMessage(fromuid, roomId, content, timestamp, next);
|
||||
Messaging.sendMessage(uid, roomId, content, timestamp, next);
|
||||
}
|
||||
], callback);
|
||||
};
|
||||
|
||||
Messaging.sendMessage = function(fromuid, roomId, content, timestamp, callback) {
|
||||
Messaging.sendMessage = function(uid, roomId, content, timestamp, callback) {
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
Messaging.checkContent(content, next);
|
||||
},
|
||||
function (next) {
|
||||
Messaging.roomExists(roomId, next);
|
||||
Messaging.isUserInRoom(uid, roomId, next);
|
||||
},
|
||||
function (exists, next) {
|
||||
if (!exists) {
|
||||
return next(new Error('[[error:chat-room-does-not-exist]]'));
|
||||
function (inRoom, next) {
|
||||
if (!inRoom) {
|
||||
return next(new Error('[[error:not-allowed]]'));
|
||||
}
|
||||
Messaging.addMessage(fromuid, roomId, content, timestamp, next);
|
||||
Messaging.addMessage(uid, roomId, content, timestamp, next);
|
||||
}
|
||||
], callback);
|
||||
};
|
||||
@@ -74,8 +74,7 @@ module.exports = function(Messaging) {
|
||||
message = {
|
||||
content: content,
|
||||
timestamp: timestamp,
|
||||
fromuid: fromuid,
|
||||
roomId: roomId
|
||||
fromuid: fromuid
|
||||
};
|
||||
|
||||
plugins.fireHook('filter:messaging.save', message, next);
|
||||
@@ -95,19 +94,19 @@ module.exports = function(Messaging) {
|
||||
], next);
|
||||
},
|
||||
function (results, next) {
|
||||
Messaging.getMessagesData([mid], fromuid, touid, true, next);
|
||||
async.parallel({
|
||||
messages: async.apply(Messaging.getMessagesData, [mid], fromuid, roomId, true),
|
||||
isNewSet: async.apply(Messaging.isNewSet, fromuid, roomId, mid)
|
||||
}, next);
|
||||
},
|
||||
function (messages, next) {
|
||||
Messaging.isNewSet(fromuid, touid, mid, next);
|
||||
},
|
||||
function (isNewSet, next) {
|
||||
if (!messages || !messages[0]) {
|
||||
function (results, next) {
|
||||
if (!results.messages || !results.messages[0]) {
|
||||
return next(null, null);
|
||||
}
|
||||
|
||||
messages[0].newSet = isNewSet;
|
||||
messages[0].mid = mid;
|
||||
next(null, messages[0]);
|
||||
results.messages[0].newSet = results.isNewSet;
|
||||
results.messages[0].mid = mid;
|
||||
next(null, results.messages[0]);
|
||||
}
|
||||
], callback);
|
||||
};
|
||||
|
||||
@@ -40,12 +40,11 @@ SocketModules.chats.getRaw = function(socket, data, callback) {
|
||||
};
|
||||
|
||||
SocketModules.chats.send = function(socket, data, callback) {
|
||||
if (!data) {
|
||||
if (!data || !data.roomId) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
}
|
||||
|
||||
var now = Date.now(),
|
||||
touid = parseInt(data.touid, 10);
|
||||
var now = Date.now();
|
||||
|
||||
// Websocket rate limiting
|
||||
socket.lastChatMessageTime = socket.lastChatMessageTime || 0;
|
||||
@@ -55,17 +54,17 @@ SocketModules.chats.send = function(socket, data, callback) {
|
||||
socket.lastChatMessageTime = now;
|
||||
}
|
||||
|
||||
Messaging.canMessage(socket.uid, touid, function(err, allowed) {
|
||||
Messaging.canMessage(socket.uid, data.roomId, function(err, allowed) {
|
||||
if (err || !allowed) {
|
||||
return callback(err || new Error('[[error:chat-restricted]]'));
|
||||
}
|
||||
|
||||
Messaging.addMessage(socket.uid, touid, data.message, now, function(err, message) {
|
||||
Messaging.sendMessage(socket.uid, data.roomId, data.message, now, function(err, message) {
|
||||
if (err) {
|
||||
return callback(err);
|
||||
}
|
||||
|
||||
Messaging.notifyUser(socket.uid, touid, message);
|
||||
Messaging.notifyUser(socket.uid, data.roomId, message);
|
||||
|
||||
callback();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user