feed per page

This commit is contained in:
me 2025-03-15 10:05:03 +02:00
parent 27b022876e
commit f2ded06594

View File

@ -42,3 +42,33 @@ router.get('/:site', utils.limiter(500), (req, res) => {
res.set('Content-Type', 'text/xml');
res.send(xml);
});
router.get('/:site/*', utils.limiter(500), (req, res) => {
const site = req.params.site;
const path = req.params[0];
var feed = new Feed({
title: 'UCS',
description: 'תגובות עבור הדף ' + site + '/' + path,
id: domain + '/feed/' + site,
link: domain,
language: 'he'
});
const comments = db.pageComments(site, path);
for (const comment of comments) {
feed.addItem({
title: `New message by '${comment.user}' on ${path}`,
description: comment.message,
id: `${site}/${path}#comment-${comment.id}`,
link: `${site}/${path}#comment-${comment.id}`,
date: new Date(comment.published)
});
}
var xml = feed.atom1();
res.set('Content-Type', 'text/xml');
res.send(xml);
});