-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
125 lines (114 loc) · 3.22 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
// Copyright 2024 Brian Wo. All rights reserved
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
"use strict";
import fs from "node:fs";
import { getFilteredUrlFromFeed } from "./src/filter.js";
import { extract } from "@extractus/article-extractor";
import Mustache from "mustache";
const outputPath = "public";
const feedOutput = `${outputPath}/feed.xml`;
const pageOutput = `${outputPath}/index.html`;
const feedTemplate = fs.readFileSync("templates/feed.xml.mustache", "utf8");
const pageTemplate = fs.readFileSync("templates/index.html.mustache", "utf8");
const feedList = fs.readFileSync("feed_list.txt", "utf8").trim().split("\n");
/**
* @typedef {import("./src/filter.js").FilteredUrl} FilteredUrl
*/
/**
* @typedef {Object} FlattenedUrl
* @property {string} url
* @property {string[]} dates
* @property {string[]} sources
*/
/**
* Fetch feeds and return filtered URLs mentioned in the feed
* @param {string[]} feedList
* @return {Promise<FilteredUrl[]>}
*/
function getNewsUrl(feedList) {
return feedList.map(async (list) => {
const response = await fetch(list);
const text = await response.text();
return getFilteredUrlFromFeed(text);
});
}
/**
* Render RSS using template and write it to `outputFile`
* @param {ArticleData[]} rssItem
*/
function writeToFile(rssItem) {
fs.writeFileSync(
feedOutput,
Mustache.render(feedTemplate, {
items: rssItem,
updated: function () {
return this.dates.at(-1);
},
})
);
fs.writeFileSync(
pageOutput,
Mustache.render(pageTemplate, {
items: rssItem,
hostname: function () {
return this.article.url.split("/")[2];
},
shortTitle: function () {
return this.article.title.split(/[|—–]/)[0].trim();
},
})
);
}
/**
* Flatten URLs into unique set
* @param {FlattenedUrl} acc
* @param {FilteredUrl} curr
* @return {FlattenedUrl}
*/
function getUniqueUrl(acc, curr) {
let prevSources = [];
let prevDates = [];
let dates = [];
if (acc[curr["url"]] != undefined) {
prevSources = acc[curr["url"]]["sources"];
prevDates = acc[curr["url"]]["dates"];
if (Date.parse(prevDates) < Date.parse(curr["date"])) {
dates = [...prevDates, curr["date"]];
} else {
dates = [curr["date"], ...prevDates];
}
}
acc[curr["url"]] = {
url: curr["url"],
sources: [...prevSources, curr["source"]],
dates: dates.length === 0 ? [curr["date"]] : dates,
};
return acc;
}
Promise.all(getNewsUrl(feedList))
.then((source) => source.flat())
.then((flattenData) =>
Promise.all(
[...Object.values(flattenData.reduce(getUniqueUrl, new Object()))].map(
async (link) => {
try {
return {
article: await extract(link["url"]),
dates: link["dates"],
sources: link["sources"],
};
} catch (err) {
return null;
}
}
)
)
.then((rssItem) =>
rssItem
.filter((e) => e !== null)
.sort((a, b) => Date.parse(b["dates"][0]) - Date.parse(a["dates"][0]))
.filter((e) => e["article"] !== null)
)
.then((rssItem) => writeToFile(rssItem))
);