|
|
@ -272,15 +272,12 @@ var async = require('async'),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Topics.getTopicWithPosts = function(tid, uid, start, end, callback) {
|
|
|
|
Topics.getTopicWithPosts = function(tid, uid, start, end, callback) {
|
|
|
|
threadTools.exists(tid, function(err, exists) {
|
|
|
|
Topics.getTopicData(tid, function(err, topicData) {
|
|
|
|
if (err || !exists) {
|
|
|
|
if (err || !topicData) {
|
|
|
|
return callback(err || new Error('Topic tid \'' + tid + '\' not found'));
|
|
|
|
return callback(err || new Error('Topic tid \'' + tid + '\' not found'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async.parallel({
|
|
|
|
async.parallel({
|
|
|
|
topicData : function(next) {
|
|
|
|
|
|
|
|
Topics.getTopicData(tid, next);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
posts: function(next) {
|
|
|
|
posts: function(next) {
|
|
|
|
Topics.getTopicPosts(tid, start, end, uid, false, next);
|
|
|
|
Topics.getTopicPosts(tid, start, end, uid, false, next);
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -301,7 +298,6 @@ var async = require('async'),
|
|
|
|
return callback(err);
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var topicData = results.topicData;
|
|
|
|
|
|
|
|
topicData.category = results.category;
|
|
|
|
topicData.category = results.category;
|
|
|
|
topicData.posts = results.posts;
|
|
|
|
topicData.posts = results.posts;
|
|
|
|
topicData.thread_tools = results.threadTools;
|
|
|
|
topicData.thread_tools = results.threadTools;
|
|
|
|