-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfeed.ts
128 lines (101 loc) · 2.45 KB
/
feed.ts
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
127
128
//// import
import { ATOM, JSON, RSS } from "src/utility/feed/index.ts";
import { join } from "dep/std.ts";
import { marked } from "dep/x/marked.ts";
import { yaml } from "dep/x/yaml.ts";
//// util
import {
author,
description,
email,
feedDirectory,
postDirectory,
title,
url
} from "src/utility/constant.ts";
import getDocuments from "src/helper/get-documents.ts";
const atomFeed = new ATOM({
authors: [
{
email,
name: author
}
],
description,
id: `${url}/feed/atom`,
link: `${url}/feed/atom`,
title
});
const jsonFeed = new JSON({
authors: [
{
email,
name: author
}
],
description,
feed: `${url}/feed/json`,
link: url,
title
});
const rssFeed = new RSS({
authors: [
{
email,
name: author
}
],
description,
id: `${url}/feed/rss`,
link: `${url}/feed/rss`,
title
});
//// program
createFeeds();
async function createFeeds() {
await Deno.mkdir(feedDirectory, { recursive: true });
const feedPosts = [];
const files = await getDocuments(postDirectory);
for await (const file of files) {
const filePath = join(postDirectory, file);
const postInfo = await yaml.loadFront(filePath);
postInfo.url = `/${file}`;
feedPosts.push(postInfo);
const post = await yaml.loadBack(filePath);
if (post) {
const fullUrl = `${url}${postInfo.url}`;
const postDate = new Date(postInfo.date);
const renderedPost = marked.parse(post);
atomFeed.addItem({
content: { body: renderedPost },
id: fullUrl,
link: fullUrl,
summary: postInfo.tldr,
title: postInfo.title,
updated: postDate
});
jsonFeed.addItem({
content_html: renderedPost,
date_published: postDate,
id: fullUrl,
title: postInfo.title,
url: fullUrl
});
rssFeed.addItem({
content: { body: renderedPost },
description: postInfo.tldr,
id: fullUrl,
link: fullUrl,
title: postInfo.title,
updated: postDate
});
}
}
const latestPostDate = feedPosts[0].date;
atomFeed.updated = new Date(latestPostDate);
rssFeed.updated = new Date(latestPostDate);
Deno.writeTextFileSync(join(feedDirectory, "index.xml"), atomFeed.build());
Deno.writeTextFileSync(join(feedDirectory, "index.json"), jsonFeed.build());
Deno.writeTextFileSync(join(feedDirectory, "index.rss"), rssFeed.build());
console.log("Feeds written");
}