This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
generateRSS.js
80 lines (68 loc) · 1.8 KB
/
generateRSS.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
const { createClient } = require("contentful");
const marked = require("marked");
const fs = require("fs");
const path = require("path");
marked.setOptions({
renderer: new marked.Renderer(),
pedantic: false,
gfm: true,
breaks: false,
sanitize: false,
smartLists: true,
smartypants: false,
xhtml: true,
});
const client = createClient({
space: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_KEY,
});
const posts = async () => {
try {
let res = await client.getEntries({ content_type: "rehber" });
return res;
} catch (err) {
console.log(err);
}
};
const fetchPosts = async () => {
let res = await posts();
return res.items;
};
async function buildRssItems() {
const items = await fetchPosts();
return items
.map((item) => {
const text = `${marked(item.fields.rehber)}`;
const summary = item.fields.description;
const link = `https://teknolojirehberleri.xyz/rehber/${item.fields.slug}`;
const title = item.fields.title;
return `
<entry>
<title>${title}</title>
<link href="${link}" />
<id>${link}</id>
<updated>${item.sys.updatedAt}</updated>
<summary>${summary}</summary>
<content type="xhtml">${text}</content>
</entry>
`;
})
.join("");
}
async function generateRSS() {
const rssFeed = `<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>teknolojirehberleri.xyz</title>
<link href="https://teknolojirehberleri.xyz" />
${await buildRssItems()}
</feed>`;
const staticOutputPath = path.join(process.cwd(), "public");
fs.writeFile(`${staticOutputPath}/rss`, rssFeed, (err) => {
if (err) {
console.log(err);
} else {
console.log(`File written successfully.`);
}
});
}
generateRSS();