mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-08-26 22:26:27 +02:00
closes #6369
This commit is contained in:
@@ -67,6 +67,9 @@ chatsController.get = function (req, res, callback) {
|
||||
roomId: req.params.roomid,
|
||||
isNew: false,
|
||||
}),
|
||||
isAdminOrGlobalMod: function (next) {
|
||||
user.isAdminOrGlobalMod(req.uid, next);
|
||||
},
|
||||
}, next);
|
||||
},
|
||||
function (data) {
|
||||
@@ -89,7 +92,7 @@ chatsController.get = function (req, res, callback) {
|
||||
room.maximumUsersInChatRoom = parseInt(meta.config.maximumUsersInChatRoom, 10) || 0;
|
||||
room.maximumChatMessageLength = parseInt(meta.config.maximumChatMessageLength, 10) || 1000;
|
||||
room.showUserInput = !room.maximumUsersInChatRoom || room.maximumUsersInChatRoom > 2;
|
||||
|
||||
room.isAdminOrGlobalMod = data.isAdminOrGlobalMod;
|
||||
res.render('chats', room);
|
||||
},
|
||||
], callback);
|
||||
|
||||
@@ -59,11 +59,7 @@ Messaging.getMessages = function (params, callback) {
|
||||
|
||||
// Filter out deleted messages unless you're the sender of said message
|
||||
messageData = messageData.filter(function (messageData) {
|
||||
if (messageData.deleted && parseInt(messageData.fromuid, 10) !== parseInt(params.uid, 10)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
return (!messageData.deleted || parseInt(messageData.fromuid, 10) === parseInt(params.uid, 10));
|
||||
});
|
||||
|
||||
next(null, messageData);
|
||||
@@ -87,7 +83,6 @@ Messaging.parse = function (message, fromuid, uid, roomId, isNew, callback) {
|
||||
return callback(err);
|
||||
}
|
||||
|
||||
|
||||
var messageData = {
|
||||
message: message,
|
||||
parsed: parsed,
|
||||
|
||||
@@ -8,20 +8,20 @@ var db = require('../database');
|
||||
var user = require('../user');
|
||||
|
||||
module.exports = function (Messaging) {
|
||||
Messaging.sendMessage = function (uid, roomId, content, timestamp, callback) {
|
||||
Messaging.sendMessage = function (data, callback) {
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
Messaging.checkContent(content, next);
|
||||
Messaging.checkContent(data.content, next);
|
||||
},
|
||||
function (next) {
|
||||
Messaging.isUserInRoom(uid, roomId, next);
|
||||
Messaging.isUserInRoom(data.uid, data.roomId, next);
|
||||
},
|
||||
function (inRoom, next) {
|
||||
if (!inRoom) {
|
||||
return next(new Error('[[error:not-allowed]]'));
|
||||
}
|
||||
|
||||
Messaging.addMessage(uid, roomId, content, timestamp, next);
|
||||
Messaging.addMessage(data, next);
|
||||
},
|
||||
], callback);
|
||||
};
|
||||
@@ -39,14 +39,14 @@ module.exports = function (Messaging) {
|
||||
callback();
|
||||
};
|
||||
|
||||
Messaging.addMessage = function (fromuid, roomId, content, timestamp, callback) {
|
||||
Messaging.addMessage = function (data, callback) {
|
||||
var mid;
|
||||
var message;
|
||||
var isNewSet;
|
||||
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
Messaging.checkContent(content, next);
|
||||
Messaging.checkContent(data.content, next);
|
||||
},
|
||||
function (next) {
|
||||
db.incrObjectField('global', 'nextMid', next);
|
||||
@@ -54,12 +54,15 @@ module.exports = function (Messaging) {
|
||||
function (_mid, next) {
|
||||
mid = _mid;
|
||||
message = {
|
||||
content: String(content),
|
||||
timestamp: timestamp,
|
||||
fromuid: fromuid,
|
||||
roomId: roomId,
|
||||
content: String(data.content),
|
||||
timestamp: data.timestamp,
|
||||
fromuid: data.uid,
|
||||
roomId: data.roomId,
|
||||
deleted: 0,
|
||||
};
|
||||
if (data.ip) {
|
||||
message.ip = data.ip;
|
||||
}
|
||||
|
||||
plugins.fireHook('filter:messaging.save', message, next);
|
||||
},
|
||||
@@ -67,27 +70,27 @@ module.exports = function (Messaging) {
|
||||
db.setObject('message:' + mid, message, next);
|
||||
},
|
||||
function (next) {
|
||||
Messaging.isNewSet(fromuid, roomId, timestamp, next);
|
||||
Messaging.isNewSet(data.uid, data.roomId, data.timestamp, next);
|
||||
},
|
||||
function (_isNewSet, next) {
|
||||
isNewSet = _isNewSet;
|
||||
db.getSortedSetRange('chat:room:' + roomId + ':uids', 0, -1, next);
|
||||
db.getSortedSetRange('chat:room:' + data.roomId + ':uids', 0, -1, next);
|
||||
},
|
||||
function (uids, next) {
|
||||
user.blocks.filterUids(fromuid, uids, next);
|
||||
user.blocks.filterUids(data.uid, uids, next);
|
||||
},
|
||||
function (uids, next) {
|
||||
async.parallel([
|
||||
async.apply(Messaging.addRoomToUsers, roomId, uids, timestamp),
|
||||
async.apply(Messaging.addMessageToUsers, roomId, uids, mid, timestamp),
|
||||
async.apply(Messaging.markUnread, uids, roomId),
|
||||
async.apply(Messaging.addUsersToRoom, fromuid, [fromuid], roomId),
|
||||
async.apply(Messaging.addRoomToUsers, data.roomId, uids, data.timestamp),
|
||||
async.apply(Messaging.addMessageToUsers, data.roomId, uids, mid, data.timestamp),
|
||||
async.apply(Messaging.markUnread, uids, data.roomId),
|
||||
async.apply(Messaging.addUsersToRoom, data.uid, [data.uid], data.roomId),
|
||||
], next);
|
||||
},
|
||||
function (results, next) {
|
||||
async.parallel({
|
||||
markRead: async.apply(Messaging.markRead, fromuid, roomId),
|
||||
messages: async.apply(Messaging.getMessagesData, [mid], fromuid, roomId, true),
|
||||
markRead: async.apply(Messaging.markRead, data.uid, data.roomId),
|
||||
messages: async.apply(Messaging.getMessagesData, [mid], data.uid, data.roomId, true),
|
||||
}, next);
|
||||
},
|
||||
function (results, next) {
|
||||
@@ -97,7 +100,7 @@ module.exports = function (Messaging) {
|
||||
|
||||
results.messages[0].newSet = isNewSet;
|
||||
results.messages[0].mid = mid;
|
||||
results.messages[0].roomId = roomId;
|
||||
results.messages[0].roomId = data.roomId;
|
||||
next(null, results.messages[0]);
|
||||
},
|
||||
], callback);
|
||||
|
||||
@@ -44,6 +44,7 @@ module.exports = function (Messaging) {
|
||||
messages = _messages.map(function (msg, idx) {
|
||||
if (msg) {
|
||||
msg.messageId = parseInt(mids[idx], 10);
|
||||
msg.ip = undefined;
|
||||
}
|
||||
return msg;
|
||||
}).filter(Boolean);
|
||||
|
||||
@@ -118,7 +118,13 @@ SocketModules.chats.send = function (socket, data, callback) {
|
||||
Messaging.canMessageRoom(socket.uid, data.roomId, next);
|
||||
},
|
||||
function (next) {
|
||||
Messaging.sendMessage(socket.uid, data.roomId, data.message, Date.now(), next);
|
||||
Messaging.sendMessage({
|
||||
uid: socket.uid,
|
||||
roomId: data.roomId,
|
||||
content: data.message,
|
||||
timestamp: Date.now(),
|
||||
ip: socket.ip,
|
||||
}, next);
|
||||
},
|
||||
function (message, next) {
|
||||
Messaging.notifyUsersInRoom(socket.uid, data.roomId, message);
|
||||
@@ -171,6 +177,9 @@ SocketModules.chats.loadRoom = function (socket, data, callback) {
|
||||
roomId: data.roomId,
|
||||
isNew: false,
|
||||
}),
|
||||
isAdminOrGlobalMod: function (next) {
|
||||
user.isAdminOrGlobalMod(socket.uid, next);
|
||||
},
|
||||
}, next);
|
||||
},
|
||||
function (results, next) {
|
||||
@@ -183,6 +192,7 @@ SocketModules.chats.loadRoom = function (socket, data, callback) {
|
||||
results.roomData.maximumUsersInChatRoom = parseInt(meta.config.maximumUsersInChatRoom, 10) || 0;
|
||||
results.roomData.maximumChatMessageLength = parseInt(meta.config.maximumChatMessageLength, 10) || 1000;
|
||||
results.roomData.showUserInput = !results.roomData.maximumUsersInChatRoom || results.roomData.maximumUsersInChatRoom > 2;
|
||||
results.roomData.isAdminOrGlobalMod = results.isAdminOrGlobalMod;
|
||||
next(null, results.roomData);
|
||||
},
|
||||
], callback);
|
||||
@@ -438,6 +448,20 @@ SocketModules.chats.getMessages = function (socket, data, callback) {
|
||||
Messaging.getMessages(params, callback);
|
||||
};
|
||||
|
||||
SocketModules.chats.getIP = function (socket, mid, callback) {
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
user.isAdminOrGlobalMod(socket.uid, next);
|
||||
},
|
||||
function (allowed, next) {
|
||||
if (!allowed) {
|
||||
return next(new Error('[[error:no-privilege]]'));
|
||||
}
|
||||
Messaging.getMessageField(mid, 'ip', next);
|
||||
},
|
||||
], callback);
|
||||
};
|
||||
|
||||
/* Sounds */
|
||||
SocketModules.sounds.getUserSoundMap = function getUserSoundMap(socket, data, callback) {
|
||||
meta.sounds.getUserSoundMap(socket.uid, callback);
|
||||
|
||||
Reference in New Issue
Block a user