|
|
@ -44,7 +44,7 @@ module.exports = function(Topics) {
|
|
|
|
Topics.addPostData = function(postData, uid, callback) {
|
|
|
|
Topics.addPostData = function(postData, uid, callback) {
|
|
|
|
var pids = postData.map(function(post) {
|
|
|
|
var pids = postData.map(function(post) {
|
|
|
|
return post && post.pid;
|
|
|
|
return post && post.pid;
|
|
|
|
}).filter(Boolean);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (!Array.isArray(pids) || !pids.length) {
|
|
|
|
if (!Array.isArray(pids) || !pids.length) {
|
|
|
|
return callback(null, []);
|
|
|
|
return callback(null, []);
|
|
|
@ -61,7 +61,7 @@ module.exports = function(Topics) {
|
|
|
|
var uids = [];
|
|
|
|
var uids = [];
|
|
|
|
|
|
|
|
|
|
|
|
for(var i=0; i<postData.length; ++i) {
|
|
|
|
for(var i=0; i<postData.length; ++i) {
|
|
|
|
if (uids.indexOf(postData[i].uid) === -1) {
|
|
|
|
if (postData[i] && uids.indexOf(postData[i].uid) === -1) {
|
|
|
|
uids.push(postData[i].uid);
|
|
|
|
uids.push(postData[i].uid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -82,7 +82,7 @@ module.exports = function(Topics) {
|
|
|
|
editors: function(next) {
|
|
|
|
editors: function(next) {
|
|
|
|
var editors = [];
|
|
|
|
var editors = [];
|
|
|
|
for(var i=0; i<postData.length; ++i) {
|
|
|
|
for(var i=0; i<postData.length; ++i) {
|
|
|
|
if (postData[i].editor && editors.indexOf(postData[i].editor) === -1) {
|
|
|
|
if (postData[i] && postData[i].editor && editors.indexOf(postData[i].editor) === -1) {
|
|
|
|
editors.push(postData[i].editor);
|
|
|
|
editors.push(postData[i].editor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -94,7 +94,7 @@ module.exports = function(Topics) {
|
|
|
|
var editorData = {};
|
|
|
|
var editorData = {};
|
|
|
|
editors.forEach(function(editor) {
|
|
|
|
editors.forEach(function(editor) {
|
|
|
|
editorData[editor.uid] = editor;
|
|
|
|
editorData[editor.uid] = editor;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
next(null, editorData);
|
|
|
|
next(null, editorData);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -107,19 +107,21 @@ module.exports = function(Topics) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < postData.length; ++i) {
|
|
|
|
for (var i = 0; i < postData.length; ++i) {
|
|
|
|
postData[i].deleted = parseInt(postData[i].deleted, 10) === 1;
|
|
|
|
if (postData[i]) {
|
|
|
|
postData[i].user = results.userData[postData[i].uid];
|
|
|
|
postData[i].deleted = parseInt(postData[i].deleted, 10) === 1;
|
|
|
|
postData[i].editor = postData[i].editor ? results.editors[postData[i].editor] : null;
|
|
|
|
postData[i].user = results.userData[postData[i].uid];
|
|
|
|
postData[i].favourited = results.favourites[i];
|
|
|
|
postData[i].editor = postData[i].editor ? results.editors[postData[i].editor] : null;
|
|
|
|
postData[i].upvoted = results.voteData.upvotes[i];
|
|
|
|
postData[i].favourited = results.favourites[i];
|
|
|
|
postData[i].downvoted = results.voteData.downvotes[i];
|
|
|
|
postData[i].upvoted = results.voteData.upvotes[i];
|
|
|
|
postData[i].votes = postData[i].votes || 0;
|
|
|
|
postData[i].downvoted = results.voteData.downvotes[i];
|
|
|
|
postData[i].display_moderator_tools = results.privileges[i].editable;
|
|
|
|
postData[i].votes = postData[i].votes || 0;
|
|
|
|
postData[i].display_move_tools = results.privileges[i].move && postData[i].index !== 0;
|
|
|
|
postData[i].display_moderator_tools = results.privileges[i].editable;
|
|
|
|
postData[i].selfPost = parseInt(uid, 10) === parseInt(postData[i].uid, 10);
|
|
|
|
postData[i].display_move_tools = results.privileges[i].move && postData[i].index !== 0;
|
|
|
|
|
|
|
|
postData[i].selfPost = parseInt(uid, 10) === parseInt(postData[i].uid, 10);
|
|
|
|
if(postData[i].deleted && !results.privileges[i].view_deleted) {
|
|
|
|
|
|
|
|
postData[i].content = '[[topic:post_is_deleted]]';
|
|
|
|
if(postData[i].deleted && !results.privileges[i].view_deleted) {
|
|
|
|
|
|
|
|
postData[i].content = '[[topic:post_is_deleted]]';
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|