better crash resistance with VLC client

This commit is contained in:
Jeeves 2025-02-18 22:37:14 -07:00
parent 364578bd7e
commit baf29cefa5

View file

@ -38,18 +38,25 @@ const topic =
"Something Fun For Everyone With Streamboy!!!!!!!! git.jeevio.xyz/jeeves/streamboy";
setInterval(async () => {
const songinfo = await getVlcSongInfo();
let songinfo: SongInfo | null = null;
try {
songinfo = await getVlcSongInfo();
} catch {
// properly handling this error is by ignoring it,
// since then that leaves songinfo as null,
// and that is guaranteed to be handled correctly.
}
const data = {
blocks: [
{ text: topic, color: "#ffffff" },
{ text: `${songinfo.title} - ${songinfo.artist}`, color: "#ffffff" },
],
blocks: [{ text: topic, color: "#ffffff" }],
};
if (songinfo != null) {
data.blocks.push({
text: `${songinfo.title} - ${songinfo.artist}`,
color: "#ffffff",
});
}
for (const ws of wsClients) {
// ws.send(
// `${topic} | ♪ ${songinfo.title} - ${songinfo.artist} | `,
// );
//
ws.send(JSON.stringify(data));
}
}, 900);
@ -72,17 +79,23 @@ async function getVlcSongInfo(): Promise<SongInfo> {
const songinfo: SongInfo = {};
for (const category of json.root.information.category) {
if (category["@_name"] != "meta") continue;
for (const property of category.info) {
if (property["@_name"] == "title") {
songinfo.title = processBadXmlString(property["#text"]);
} else if (property["@_name"] == "artist") {
songinfo.artist = processBadXmlString(property["#text"]);
} else if (property["@_name"] == "album") {
songinfo.album = processBadXmlString(property["#text"]);
try {
for (const category of json.root.information.category) {
if (category["@_name"] != "meta") continue;
for (const property of category.info) {
if (property["@_name"] == "title") {
songinfo.title = processBadXmlString(property["#text"]);
} else if (property["@_name"] == "artist") {
songinfo.artist = processBadXmlString(property["#text"]);
} else if (property["@_name"] == "album") {
songinfo.album = processBadXmlString(property["#text"]);
}
}
}
} catch {
songinfo.title = "Unknown Title";
songinfo.artist = "Unknown Artist";
songinfo.album = "Unknown Album";
}
return songinfo;