-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
88 lines (75 loc) · 2.6 KB
/
main.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
import "https://deno.land/[email protected]/dotenv/load.ts";
import { parseFeed } from "https://deno.land/x/[email protected]/mod.ts";
import * as discordeno from "https://deno.land/x/[email protected]/mod.ts";
import type { Embed } from "https://deno.land/x/[email protected]/transformers/embed.ts";
import { unescape } from "https://deno.land/x/[email protected]/unescape.ts";
import textClipper from "https://deno.land/x/[email protected]/mod.ts";
import { FeedEntry } from "https://deno.land/x/[email protected]/src/types/feed.ts";
const token = Deno.env.get("BOT_TOKEN") ?? "";
const botId = BigInt(Deno.env.get("BOT_ID") ?? "");
const channelId = BigInt(Deno.env.get("CHANNEL_ID") ?? "");
const link = Deno.env.get("RSS_LINK") ?? "";
const lastPublishedFilePath = `lastPublished/${link.replaceAll("/", "_").replaceAll(":", "_")}.json`;
const lastPublishedFile = await Deno.open(lastPublishedFilePath, {
read: true,
write: true,
create: true,
});
lastPublishedFile.close();
const lastPublishedRaw = (await Deno.readTextFile(lastPublishedFilePath)).trim() || "{}"
const lastPublished = new Date((JSON.parse(lastPublishedRaw)).lastPublished) ?? new Date();
const fetchRSS = async (target: string): Promise<FeedEntry[]> => {
const response = await fetch(target);
const xml = await response.text();
try {
const { entries } = await parseFeed(xml);
return entries;
} catch (error) {
console.error(JSON.stringify({
errorMessage: error.message,
xml,
}));
Deno.exit(1);
}
};
console.log(`lastPublishedRaw: ${JSON.stringify(lastPublished)}`);
const entries = await fetchRSS(link);
const [entriesToPublish, newLastPublished]: [FeedEntry[], Date] = entries
.filter((it) =>
it.published !== undefined && it.published > lastPublished
)
.reduce(
(
acc,
it,
) => [acc[0].concat(it), acc[1] > it.published! ? acc[1] : it.published!],
[new Array<FeedEntry>(), lastPublished],
);
console.log(`entriesToPublish: ${entriesToPublish}`);
const embeds: Embed[] = entriesToPublish
.map((it) => ({
title: it.title?.value,
description: textClipper(
unescape(it.description?.value ?? "")
.replace(/<[^>]*>/g, ""),
100,
{ html: false, indicator: "..." },
),
url: it.links[0].href,
}));
if (embeds.length > 0) {
const bot = discordeno.createBot({
token,
botId,
});
discordeno.sendMessage(
bot,
channelId,
{
embeds,
},
);
}
console.log(`newLastPublishedRaw: ${JSON.stringify(lastPublished)}`);
const content = JSON.stringify({ lastPublished: newLastPublished });
await Deno.writeTextFile(lastPublishedFilePath, content);