Files
NodeBB/src/topics/teaser.js

140 lines
3.5 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) {
Topics.getTeasers = function (topics, callback) {
2014-12-19 23:56:51 -05:00
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) {
2014-12-19 23:56:51 -05:00
counts.push(topic && (parseInt(topic.postcount, 10) || 0));
2015-07-10 16:43:25 -04:00
if (topic) {
if (topic.teaserPid === 'null') {
delete topic.teaserPid;
}
switch (meta.config.teaserPost) {
case 'first':
teaserPids.push(topic.mainPid);
break;
case 'last-post':
teaserPids.push(topic.teaserPid || topic.mainPid);
break;
case 'last-reply': // intentional fall-through
default:
teaserPids.push(topic.teaserPid);
break;
}
2014-12-19 23:56:51 -05:00
}
});
2015-08-07 17:56:03 -04:00
async.waterfall([
function (next) {
2015-08-07 17:56:03 -04:00
posts.getPostsFields(teaserPids, ['pid', 'uid', 'timestamp', 'tid', 'content'], next);
},
function (_postData, next) {
2015-08-07 17:56:03 -04:00
postData = _postData;
var uids = postData.map(function (post) {
2015-08-07 17:56:03 -04:00
return post.uid;
}).filter(function (uid, index, array) {
2015-08-07 17:56:03 -04:00
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) {
2014-12-19 23:56:51 -05:00
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) {
2015-08-07 17:56:03 -04:00
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) {
2015-08-07 17:56:03 -04:00
next(null, data.teasers);
2017-02-17 19:31:21 -07:00
},
2015-08-07 17:56:03 -04:00
], callback);
2014-11-11 19:47:56 -05:00
};
Topics.getTeasersByTids = function (tids, callback) {
2014-12-19 23:56:51 -05:00
if (!Array.isArray(tids) || !tids.length) {
return callback(null, []);
}
async.waterfall([
function (next) {
2014-12-19 23:56:51 -05:00
Topics.getTopicsFields(tids, ['tid', 'postcount', 'teaserPid'], next);
},
function (topics, next) {
2014-12-19 23:56:51 -05:00
Topics.getTeasers(topics, next);
2017-02-17 19:31:21 -07:00
},
2014-12-19 23:56:51 -05:00
], callback);
};
Topics.getTeaser = function (tid, callback) {
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;
if (pid) {
Topics.setTopicField(tid, 'teaserPid', pid, callback);
} else {
Topics.deleteTopicField(tid, 'teaserPid', callback);
}
2014-11-11 19:47:56 -05:00
});
};
2017-02-18 02:30:48 -07:00
};