generated from ylines/static-125
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
126 lines (105 loc) · 3.3 KB
/
index.js
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const fs = require('fs');
const path = require('path');
const md = require('markdown-it')({
html: true,
linkify: true,
typographer: true
});
const { Feed } = require('feed');
const copyDir = require('copy-dir');
const argv = require('minimist')(process.argv.slice(2));
const {
baseURL, title, description, fromPath, destPath, themePath,
} = argv;
if(!baseURL || !title || !fromPath || !destPath || !themePath) {
console.error('"--baseURL", "--title", "--fromPath", "--destPath" "--themePath" is required');
return;
}
// prepare paths
const postWrapperPath = path.join(themePath, 'post.html');
const indexWrapperPath = path.join(themePath, 'index.html');
const assetsPath = path.join(themePath, 'assets/');
const destAssetsPath = path.join(destPath, 'assets/');
// copy assets
copyDir.sync(assetsPath, destAssetsPath);
const postWrapper = fs.readFileSync(postWrapperPath, 'utf-8');
const blogPaths = fs.readdirSync(fromPath);
// generate posts and return posts info
const allPosts = blogPaths.map(mdFileName => {
const fullPath = path.join(fromPath, mdFileName);
const mdContent = fs.readFileSync(fullPath, 'utf-8');
// TODO: robuster way to get title and date
const contentArr = mdContent.split('\n');
if (contentArr.length < 4) {
console.log('invalid file', mdFileName);
return null;
}
const blogTitle = contentArr[1].slice(7).trim();
const date = contentArr[2].slice(6).trim();
const author = contentArr[3].slice(8).trim();
const mdContentWithoutTitleDate = contentArr.slice(5).join('\n');
const blogHTML = md.render(mdContentWithoutTitleDate);
const resHTML = postWrapper
.replace(/{{title}}/g, title)
.replace(/{{blogTitle}}/g, blogTitle)
.replace('{{createdDate}}', date)
.replace('{{author}}', author)
.replace('{{content}}', blogHTML)
.replace('{{feedsPubLink}}', `https://feeds.pub/feed/${encodeURIComponent(baseURL)}%2Frss.xml`)
const htmlFileName = mdFileName.replace('.md', '.html');
const destFilePath = path.join(destPath, htmlFileName);
fs.writeFileSync(destFilePath, resHTML);
return {
htmlFileName,
blogTitle,
date,
author
}
})
.filter(post => !!post)
.sort((a, b) => {
return new Date(b.date) - new Date(a.date);
});
// Generate index.html
const indexWrapper = fs.readFileSync(indexWrapperPath, 'utf-8');
const postListHtml = allPosts.map(post => {
const {
htmlFileName,
blogTitle,
date,
author
} = post;
return `
<div class="index-post-wrapper">
<a class="index-post-title" href="./${htmlFileName}">${blogTitle}</a>
<span class="date">${date} by ${author}</span>
</div>
`;
}).join('')
const resIndexHTML = indexWrapper
.replace(/{{title}}/g, title)
.replace('{{blogList}}', postListHtml)
.replace('{{feedsPubLink}}', `https://feeds.pub/feed/${encodeURIComponent(baseURL)}%2Frss.xml`)
const destFilePath = path.join(destPath, 'index.html');
fs.writeFileSync(destFilePath, resIndexHTML);
// Generate RSS
const feed = new Feed({
title,
description,
link: baseURL,
});
allPosts.forEach(post => {
const {
htmlFileName,
blogTitle,
date,
} = post;
feed.addItem({
title: blogTitle,
date: new Date(date),
link: `${baseURL}/${htmlFileName}`,
})
});
const RSSXML = feed.rss2();
const destRSSPath = path.join(destPath, 'rss.xml');
fs.writeFileSync(destRSSPath, RSSXML);