Compare commits
No commits in common. "a430d0d1ed171afc1fa263abdd02c279f4eec51d" and "f50788420ae8354a4ca50118b3d19924c16c860e" have entirely different histories.
a430d0d1ed
...
f50788420a
3 changed files with 6 additions and 21 deletions
|
@ -2,7 +2,7 @@ const mappings = {};
|
||||||
|
|
||||||
async function cacheList() {
|
async function cacheList() {
|
||||||
const data = await fetch(
|
const data = await fetch(
|
||||||
"https://www.unicode.org/Public/UNIDATA/UnicodeData.txt"
|
"https://unicode.org/Public/UNIDATA/UnicodeData.txt"
|
||||||
).then((res) => res.text());
|
).then((res) => res.text());
|
||||||
|
|
||||||
data
|
data
|
||||||
|
|
|
@ -40,8 +40,6 @@ async function updateNowPlaying() {
|
||||||
lines = lines.slice(4, lines.length - 2);
|
lines = lines.slice(4, lines.length - 2);
|
||||||
const line = lines[0];
|
const line = lines[0];
|
||||||
|
|
||||||
if (!line) return;
|
|
||||||
|
|
||||||
const [_, _time, id, name] = line.match(/^(.{3,4} .{4})\s+(.+?) {2}(.+?)$/);
|
const [_, _time, id, name] = line.match(/^(.{3,4} .{4})\s+(.+?) {2}(.+?)$/);
|
||||||
|
|
||||||
const liveNow = {name: "ident", id: "aNONradio"};
|
const liveNow = {name: "ident", id: "aNONradio"};
|
||||||
|
@ -57,8 +55,6 @@ async function updateNowPlaying() {
|
||||||
if (playing.includes("listeners with a daily peak of")) {
|
if (playing.includes("listeners with a daily peak of")) {
|
||||||
title = `${liveNow.name} (\`${liveNow.id}\`)`;
|
title = `${liveNow.name} (\`${liveNow.id}\`)`;
|
||||||
subtitle = playing;
|
subtitle = playing;
|
||||||
} else if (playing.startsWith("Coming up")) {
|
|
||||||
title = playing;
|
|
||||||
} else {
|
} else {
|
||||||
const [_, current, peakDay, peakMonth, dj, metadata] = playing.match(
|
const [_, current, peakDay, peakMonth, dj, metadata] = playing.match(
|
||||||
/\[(\d+)\/(\d+)\/(\d+)\] \((.+?)\): (.+)/
|
/\[(\d+)\/(\d+)\/(\d+)\] \((.+?)\): (.+)/
|
||||||
|
@ -99,21 +95,10 @@ async function updateNowPlaying() {
|
||||||
|
|
||||||
const content = `${title}\n${subtitle}\n${openmicTime}`.trim();
|
const content = `${title}\n${subtitle}\n${openmicTime}`.trim();
|
||||||
const thread = hf.bot.guilds.get(GUILD_ID).threads.get(THREAD_ID);
|
const thread = hf.bot.guilds.get(GUILD_ID).threads.get(THREAD_ID);
|
||||||
if (thread) {
|
const msg = await thread.getMessage(MESSAGE_ID);
|
||||||
const msg = await thread.getMessage(MESSAGE_ID);
|
if (msg.content !== content) {
|
||||||
if (msg.content !== content) {
|
thread.editMessage(MESSAGE_ID, {content});
|
||||||
await thread.editMessage(MESSAGE_ID, {content});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hf.timer.add(
|
hf.timer.add("anonradio", updateNowPlaying, 2000);
|
||||||
"anonradio",
|
|
||||||
async () => {
|
|
||||||
await new Promise((resolve, reject) => {
|
|
||||||
setTimeout(() => reject("timeout"), 1900);
|
|
||||||
updateNowPlaying().then(() => resolve(true));
|
|
||||||
}).catch(() => {});
|
|
||||||
},
|
|
||||||
2000
|
|
||||||
);
|
|
||||||
|
|
|
@ -289,7 +289,7 @@ async function processUrl(msg, url) {
|
||||||
cw = cw ?? "";
|
cw = cw ?? "";
|
||||||
|
|
||||||
// TODO: convert certain HTML tags back to markdown
|
// TODO: convert certain HTML tags back to markdown
|
||||||
content = content.replace(/<\/?\s*br\s*\/?>/g, "\n");
|
content = content.replace(/<br>/g, "\n");
|
||||||
content = content.replace(/<\/p><p>/g, "\n\n");
|
content = content.replace(/<\/p><p>/g, "\n\n");
|
||||||
content = content.replace(/(<([^>]+)>)/gi, "");
|
content = content.replace(/(<([^>]+)>)/gi, "");
|
||||||
content = parseHtmlEntities(content);
|
content = parseHtmlEntities(content);
|
||||||
|
|
Loading…
Reference in a new issue