canMessage

v1.18.x
barisusakli 11 years ago
parent fa2f03aeca
commit 72bb74cf46

@ -295,30 +295,23 @@ var db = require('./database'),
Messaging.canMessage = function(fromUid, toUid, callback) { Messaging.canMessage = function(fromUid, toUid, callback) {
async.waterfall([ async.waterfall([
function(next) { function(next) {
// Check if the sending user is an admin user.getSettings(toUid, next);
user.isAdministrator(fromUid, function(err, isAdmin) {
next(err || isAdmin);
});
}, },
function(next) { function(settings, next) {
// Retrieve the recipient's user setting if (!settings.restrictChat) {
user.getSettings(toUid, function(err, settings) { return callback(null, true);
next(err || !settings.restrictChat); }
});
user.isAdministrator(fromUid, next);
}, },
function(next) { function(isAdmin, next) {
// Does toUid follow fromUid? if (isAdmin) {
return callback(null, true);
}
user.isFollowing(toUid, fromUid, next); user.isFollowing(toUid, fromUid, next);
} }
], function(err, allowed) { ], callback);
// Handle premature returns };
if (err === true) {
return callback(undefined, true);
}
callback.apply(this, arguments);
});
}
function sendNotifications(fromuid, touid, messageObj, callback) { function sendNotifications(fromuid, touid, messageObj, callback) {
// todo #1798 -- this should check if the user is in room `chat_{uidA}_{uidB}` instead, see `Sockets.uidInRoom(uid, room);` // todo #1798 -- this should check if the user is in room `chat_{uidA}_{uidB}` instead, see `Sockets.uidInRoom(uid, room);`

Loading…
Cancel
Save