-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.js
More file actions
64 lines (56 loc) · 1.71 KB
/
rss.js
File metadata and controls
64 lines (56 loc) · 1.71 KB
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
const axios = require("axios")
const cheerio = require("cheerio")
const RSS = require("rss")
function createFeed(data) {
const feed = new RSS({
title: "Javascript Bytes",
description: "Bytes: Your weekly dose of JS",
author: "Bytes.dev",
site_url: "https://bytes.dev",
image_url: "https://bytes.dev/favicon/favicon-32x32.png",
ttl: 60,
})
for (const article of [...data]) {
feed.item({
title: article.title,
url: article.url,
date: article.pubDate,
})
}
let xml = feed.xml({ indent: true })
return xml
}
function scrape(html) {
const $ = cheerio.load(html)
const sec_1 = $("section").first()
const sec_2 = $("section").eq(1)
let articles = []
articles.push({
url: "https://bytes.dev" + sec_1.find("a").attr("href"),
pubDate: sec_1.find("span").first().text(),
title: `${sec_1.find("span").eq(1).text()}: ${sec_1.find("p").first().text()}`,
})
const archive = sec_2.find("li").slice(0, 5)
archive.each((i, el) => {
const anchor = $(el).find("a")
const link = "https://bytes.dev" + anchor.attr("href")
articles.push({
url: link,
pubDate: $(el).find("span").first().text(),
title: `${$(el).find("span").eq(1).text()}: ${$(el).find("div").eq(1).text()}`,
})
})
return createFeed(articles)
}
async function fetchRss() {
try {
const res = await axios.get("https://bytes.dev/archives");
const data = res.data;
const xmlData = scrape(data);
return xmlData;
} catch (err) {
console.log(err);
throw err;
}
}
module.exports = { fetchRss }