|
|
@ -14,7 +14,10 @@ module.exports = function (SocketTopics) {
|
|
|
|
if (!data || !data.tid || !utils.isNumber(data.after) || parseInt(data.after, 10) < 0) {
|
|
|
|
if (!data || !data.tid || !utils.isNumber(data.after) || parseInt(data.after, 10) < 0) {
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var userPrivileges;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
|
|
|
|
function (next) {
|
|
|
|
async.parallel({
|
|
|
|
async.parallel({
|
|
|
|
privileges: function (next) {
|
|
|
|
privileges: function (next) {
|
|
|
|
privileges.topics.get(data.tid, socket.uid, next);
|
|
|
|
privileges.topics.get(data.tid, socket.uid, next);
|
|
|
@ -22,15 +25,15 @@ module.exports = function (SocketTopics) {
|
|
|
|
topic: function (next) {
|
|
|
|
topic: function (next) {
|
|
|
|
topics.getTopicFields(data.tid, ['postcount', 'deleted'], next);
|
|
|
|
topics.getTopicFields(data.tid, ['postcount', 'deleted'], next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, function (err, results) {
|
|
|
|
}, next);
|
|
|
|
if (err) {
|
|
|
|
},
|
|
|
|
return callback(err);
|
|
|
|
function (results, next) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!results.privileges.read || (parseInt(results.topic.deleted, 10) && !results.privileges.view_deleted)) {
|
|
|
|
if (!results.privileges.read || (parseInt(results.topic.deleted, 10) && !results.privileges.view_deleted)) {
|
|
|
|
return callback(new Error('[[error:no-privileges]]'));
|
|
|
|
return callback(new Error('[[error:no-privileges]]'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
userPrivileges = results.privileges;
|
|
|
|
|
|
|
|
|
|
|
|
var set = 'tid:' + data.tid + ':posts';
|
|
|
|
var set = 'tid:' + data.tid + ':posts';
|
|
|
|
if (data.topicPostSort === 'most_votes') {
|
|
|
|
if (data.topicPostSort === 'most_votes') {
|
|
|
|
set = 'tid:' + data.tid + ':posts:votes';
|
|
|
|
set = 'tid:' + data.tid + ':posts:votes';
|
|
|
@ -70,22 +73,21 @@ module.exports = function (SocketTopics) {
|
|
|
|
postSharing: function (next) {
|
|
|
|
postSharing: function (next) {
|
|
|
|
social.getActivePostSharing(next);
|
|
|
|
social.getActivePostSharing(next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, function (err, topicData) {
|
|
|
|
}, next);
|
|
|
|
if (err) {
|
|
|
|
},
|
|
|
|
return callback(err);
|
|
|
|
function (topicData, next) {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (topicData.mainPost) {
|
|
|
|
if (topicData.mainPost) {
|
|
|
|
topicData.posts = [topicData.mainPost].concat(topicData.posts);
|
|
|
|
topicData.posts = [topicData.mainPost].concat(topicData.posts);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
topicData.privileges = results.privileges;
|
|
|
|
topicData.privileges = userPrivileges;
|
|
|
|
topicData['reputation:disabled'] = parseInt(meta.config['reputation:disabled'], 10) === 1;
|
|
|
|
topicData['reputation:disabled'] = parseInt(meta.config['reputation:disabled'], 10) === 1;
|
|
|
|
topicData['downvote:disabled'] = parseInt(meta.config['downvote:disabled'], 10) === 1;
|
|
|
|
topicData['downvote:disabled'] = parseInt(meta.config['downvote:disabled'], 10) === 1;
|
|
|
|
|
|
|
|
|
|
|
|
topics.modifyPostsByPrivilege(topicData, results.privileges);
|
|
|
|
topics.modifyPostsByPrivilege(topicData, userPrivileges);
|
|
|
|
callback(null, topicData);
|
|
|
|
next(null, topicData);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
], callback);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
SocketTopics.loadMoreUnreadTopics = function (socket, data, callback) {
|
|
|
|
SocketTopics.loadMoreUnreadTopics = function (socket, data, callback) {
|
|
|
@ -110,7 +112,6 @@ module.exports = function (SocketTopics) {
|
|
|
|
topics.getRecentTopics(data.cid, socket.uid, start, stop, data.filter, callback);
|
|
|
|
topics.getRecentTopics(data.cid, socket.uid, start, stop, data.filter, callback);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SocketTopics.loadMoreFromSet = function (socket, data, callback) {
|
|
|
|
SocketTopics.loadMoreFromSet = function (socket, data, callback) {
|
|
|
|
if (!data || !utils.isNumber(data.after) || parseInt(data.after, 10) < 0 || !data.set) {
|
|
|
|
if (!data || !utils.isNumber(data.after) || parseInt(data.after, 10) < 0 || !data.set) {
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
|
|