Files
NodeBB/src/topics/teaser.js

119 lines
3.1 KiB
JavaScript
Raw Normal View History

2014-11-11 19:47:56 -05:00
'use strict';
2016-04-27 09:03:34 +03:00
var async = require('async');
var S = require('string');
2014-11-11 19:47:56 -05:00
2016-04-27 09:03:34 +03:00
var meta = require('../meta');
var user = require('../user');
var posts = require('../posts');
var plugins = require('../plugins');
var utils = require('../../public/src/utils');
2014-11-11 19:47:56 -05:00
module.exports = function(Topics) {
2014-12-19 23:56:51 -05:00
Topics.getTeasers = function(topics, callback) {
if (!Array.isArray(topics) || !topics.length) {
2014-11-11 19:47:56 -05:00
return callback(null, []);
}
2014-12-19 23:56:51 -05:00
var counts = [];
var teaserPids = [];
2015-08-07 17:56:03 -04:00
var postData;
var tidToPost = {};
2014-12-19 23:56:51 -05:00
topics.forEach(function(topic) {
counts.push(topic && (parseInt(topic.postcount, 10) || 0));
2015-07-10 16:43:25 -04:00
if (topic) {
2015-08-07 17:56:03 -04:00
teaserPids.push(meta.config.teaserPost === 'first' ? topic.mainPid : topic.teaserPid);
2014-12-19 23:56:51 -05:00
}
});
2015-08-07 17:56:03 -04:00
async.waterfall([
function(next) {
posts.getPostsFields(teaserPids, ['pid', 'uid', 'timestamp', 'tid', 'content'], next);
},
function(_postData, next) {
postData = _postData;
var uids = postData.map(function(post) {
return post.uid;
}).filter(function(uid, index, array) {
return array.indexOf(uid) === index;
});
2014-11-11 19:47:56 -05:00
user.getUsersFields(uids, ['uid', 'username', 'userslug', 'picture'], next);
2015-08-07 17:56:03 -04:00
},
function(usersData, next) {
2014-12-19 23:56:51 -05:00
var users = {};
usersData.forEach(function(user) {
users[user.uid] = user;
});
2015-08-07 17:56:03 -04:00
async.each(postData, function(post, next) {
2015-07-24 10:22:21 -04:00
// If the post author isn't represented in the retrieved users' data, then it means they were deleted, assume guest.
if (!users.hasOwnProperty(post.uid)) {
post.uid = 0;
}
2014-12-19 23:56:51 -05:00
post.user = users[post.uid];
2016-03-03 20:13:30 +02:00
post.timestampISO = utils.toISOString(post.timestamp);
2014-12-19 23:56:51 -05:00
tidToPost[post.tid] = post;
posts.parsePost(post, next);
2015-08-07 17:56:03 -04:00
}, next);
},
function(next) {
var teasers = topics.map(function(topic, index) {
if (!topic) {
return null;
2014-11-11 19:47:56 -05:00
}
2015-08-07 17:56:03 -04:00
if (tidToPost[topic.tid]) {
tidToPost[topic.tid].index = meta.config.teaserPost === 'first' ? 1 : counts[index];
if (tidToPost[topic.tid].content) {
var s = S(tidToPost[topic.tid].content);
2016-04-27 09:03:34 +03:00
tidToPost[topic.tid].content = s.stripTags.apply(s, utils.stripTags).s;
}
2015-08-07 17:56:03 -04:00
}
return tidToPost[topic.tid];
2015-03-20 12:21:27 -04:00
});
2015-08-07 17:56:03 -04:00
plugins.fireHook('filter:teasers.get', {teasers: teasers}, next);
},
function(data, next) {
next(null, data.teasers);
}
], callback);
2014-11-11 19:47:56 -05:00
};
2014-12-19 23:56:51 -05:00
Topics.getTeasersByTids = function(tids, callback) {
if (!Array.isArray(tids) || !tids.length) {
return callback(null, []);
}
async.waterfall([
function(next) {
Topics.getTopicsFields(tids, ['tid', 'postcount', 'teaserPid'], next);
},
function(topics, next) {
Topics.getTeasers(topics, next);
}
], callback);
};
Topics.getTeaser = function(tid, callback) {
2014-12-19 23:56:51 -05:00
Topics.getTeasersByTids([tid], function(err, teasers) {
callback(err, Array.isArray(teasers) && teasers.length ? teasers[0] : null);
});
};
Topics.updateTeaser = function(tid, callback) {
Topics.getLatestUndeletedReply(tid, function(err, pid) {
if (err) {
2014-11-11 19:47:56 -05:00
return callback(err);
}
pid = pid || null;
Topics.setTopicField(tid, 'teaserPid', pid, callback);
2014-11-11 19:47:56 -05:00
});
};
};