1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import Dot from 'dot';
import { encodeXML } from 'entities';
import { readFile, writeFile } from 'fs/promises';
import { join } from 'path';
import { debuglog } from 'util';
const internals = {
debuglog: debuglog('blog'),
kFeedName: 'feed.xml',
extractTitle(postText) {
return postText.trim()
.split('\n')[0]
.replace('#', '')
.replace(/&/g, '&')
.trim();
}
};
/**
* Generates an RSS feed XML file
*
* @name RSSGenerator
* @param {string} source the source directory
* @param {string} target the target directory
* @param {Array.<Blog.tPost>} posts the list of posts
*/
export default async function RSSGenerator(source, target, posts) {
internals.debuglog('Generating RSS');
const feedTarget = join(target, internals.kFeedName);
const feedLocation = join(source, internals.kFeedName);
internals.debuglog(`Reading ${feedLocation}`);
const feedTemplate = await readFile(feedLocation, { encoding: 'utf8' });
internals.debuglog('Writing RSS');
posts = posts.map((post) => ({
...post,
createdOn: (new Date(post.createdOn)).toUTCString(),
title: internals.extractTitle(post.raw),
html: encodeXML(post.html)
}));
const feedXml = Dot.template(feedTemplate, {
...Dot.templateSettings,
strip: false
})({ posts });
await writeFile(feedTarget, feedXml);
}
|