show the last posts content and user in topic feeds
v1.18.x
Barış Soner Uşaklı 10 years ago
parent 705111a1d9
commit 29fd89407c

@ -212,47 +212,30 @@ function generateForTopics(options, set, req, res, next) {
} }
function generateTopicsFeed(feedOptions, feedTopics, callback) { function generateTopicsFeed(feedOptions, feedTopics, callback) {
var tids = feedTopics.map(function(topic) {
return topic ? topic.tid : null;
});
topics.getMainPids(tids, function(err, pids) {
if (err) {
return callback(err);
}
posts.getPostsFields(pids, ['content'], function(err, posts) {
if (err) {
return callback(err);
}
feedTopics.forEach(function(topic, index) { feedOptions.ttl = 60;
if (topic && posts[index]) { feedOptions.feed_url = nconf.get('url') + feedOptions.feed_url;
topic.mainPost = posts[index].content; feedOptions.site_url = nconf.get('url') + feedOptions.site_url;
}
});
feedOptions.ttl = 60;
feedOptions.feed_url = nconf.get('url') + feedOptions.feed_url;
feedOptions.site_url = nconf.get('url') + feedOptions.site_url;
var feed = new rss(feedOptions); var feed = new rss(feedOptions);
if (feedTopics.length > 0) { if (feedTopics.length > 0) {
feed.pubDate = new Date(parseInt(feedTopics[0].lastposttime, 10)).toUTCString(); feed.pubDate = new Date(parseInt(feedTopics[0].lastposttime, 10)).toUTCString();
} }
feedTopics.forEach(function(topicData) { feedTopics.forEach(function(topicData) {
feed.item({ if (topicData && topicData.teaser && topicData.teaser.user) {
title: topicData.title, feed.item({
description: topicData.mainPost, title: topicData.title,
url: nconf.get('url') + '/topic/' + topicData.slug, description: topicData.teaser.content,
author: topicData.username, url: nconf.get('url') + '/topic/' + topicData.slug,
date: new Date(parseInt(topicData.lastposttime, 10)).toUTCString() author: topicData.teaser.user.username,
}); date: new Date(parseInt(topicData.lastposttime, 10)).toUTCString()
}); });
callback(null, feed); }
});
}); });
callback(null, feed);
} }
function generateForRecentPosts(req, res, next) { function generateForRecentPosts(req, res, next) {

Loading…
Cancel
Save