HiddenPhox/src/modules/fedimbed.js

335 lines
9.0 KiB
JavaScript
Raw Normal View History

const {MessageFlags, Routes} = require("oceanic.js");
2022-12-06 02:50:22 +00:00
const events = require("../lib/events.js");
const logger = require("../lib/logger.js");
const {hasFlag} = require("../lib/guildSettings.js");
const {parseHtmlEntities} = require("../lib/utils.js");
const FRIENDLY_USERAGENT =
"HiddenPhox/fedimbed (https://gitlab.com/Cynosphere/HiddenPhox)";
const URLS_REGEX = /(?:\s|^)(https?:\/\/[^\s<]+[^<.,:;"'\]\s])/g;
const PATH_REGEX = {
2022-12-06 02:54:25 +00:00
mastodon: /^\/@(.+?)\/\d+\/?/,
mastodon2: /^\/(.+?)\/statuses\/\d+\/?/,
2022-12-06 02:50:22 +00:00
pleroma:
/^\/objects\/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\/?/,
pleroma2: /^\/notice\/[A-Za-z0-9]+\/?/,
misskey: /^\/notes\/[a-z0-9]+\/?/,
gotosocial: /^\/@(.+?)\/statuses\/[0-9A-Z]+\/?/,
};
const PLATFORM_COLORS = {
mastodon: 0x2791da,
pleroma: 0xfba457,
akkoma: 0x593196,
misskey: 0x99c203,
calckey: 0x31748f,
gotosocial: 0xff853e,
};
const domainCache = new Map();
async function resolvePlatform(url) {
2022-12-06 03:09:13 +00:00
const urlObj = new URL(url);
2022-12-06 02:50:22 +00:00
if (domainCache.has(urlObj.hostname)) return domainCache.get(urlObj.hostname);
const probe = await fetch(urlObj.origin + "/.well-known/nodeinfo", {
headers: {"User-Agent": FRIENDLY_USERAGENT},
}).then((res) => res.json());
if (!probe?.links) {
logger.error("fedimbed", `No nodeinfo for "${urlObj.hostname}"???`);
domainCache.set(urlObj.hostname, null);
return null;
}
const nodeinfo = await fetch(probe.links[probe.links.length - 1].href, {
headers: {"User-Agent": FRIENDLY_USERAGENT},
}).then((res) => res.json());
if (!nodeinfo?.software?.name) {
logger.error(
"fedimbed",
`Got nodeinfo for "${urlObj.hostname}", but missing software name.`
);
domainCache.set(urlObj.hostname, null);
return null;
}
domainCache.set(urlObj.hostname, nodeinfo.software.name);
return nodeinfo.software.name;
}
async function processUrl(msg, url) {
2022-12-06 03:09:13 +00:00
let urlObj = new URL(url);
2022-12-06 02:50:22 +00:00
const platform = await resolvePlatform(url);
const color = PLATFORM_COLORS[platform];
const platformName = platform
.replace("gotosocial", "GoToSocial")
.replace(/^(.)/, (_, c) => c.toUpperCase());
const attachments = [];
let content, cw, author, timestamp;
2022-12-06 02:50:22 +00:00
// Fetch post
2022-12-06 02:59:43 +00:00
const rawPostData = await fetch(url, {
2022-12-06 02:50:22 +00:00
headers: {
"User-Agent": FRIENDLY_USERAGENT,
Accept: "application/activity+json",
},
})
2022-12-06 02:59:43 +00:00
.then((res) => res.text())
2022-12-06 02:50:22 +00:00
.catch((err) => {
logger.error("fedimbed", `Failed to fetch "${url}" as AS2: ${err}`);
});
2022-12-06 02:59:43 +00:00
let postData;
2022-12-06 03:01:25 +00:00
if (rawPostData.startsWith("{")) {
2022-12-06 02:59:43 +00:00
postData = JSON.parse(rawPostData);
} else {
2022-12-06 03:11:43 +00:00
logger.warn("fedimbed", `Got non-JSON for "${url}": ${rawPostData}`);
2022-12-06 02:59:43 +00:00
}
if (postData?.error) {
2022-12-06 02:50:22 +00:00
logger.error("fedimbed", `Received error for "${url}": ${postData.error}`);
}
if (!postData) {
// We failed to get post.
2022-12-06 04:16:37 +00:00
// Assume it was due to AFM and use MastoAPI
// Follow redirect from /object since we need the ID from /notice
2022-12-06 02:50:22 +00:00
if (PATH_REGEX.pleroma.test(urlObj.pathname)) {
url = await fetch(url, {
method: "HEAD",
headers: {
"User-Agent": FRIENDLY_USERAGENT,
},
redirect: "manual",
}).then((res) => res.headers.get("location"));
2022-12-06 03:05:13 +00:00
if (url.startsWith("/")) {
url = urlObj.origin + url;
}
urlObj = new URL(url);
2022-12-06 02:50:22 +00:00
}
2022-12-06 04:10:15 +00:00
let redirUrl;
2022-12-06 02:50:22 +00:00
if (PATH_REGEX.pleroma2.test(urlObj.pathname)) {
2022-12-06 04:10:15 +00:00
redirUrl = url.replace("notice", "api/v1/statuses");
2022-12-06 04:13:47 +00:00
} else if (PATH_REGEX.mastodon.test(urlObj.pathname)) {
2022-12-06 04:16:37 +00:00
redirUrl = url.replace(/^\/@(.+?)\/(\d+)\/?/, "/api/v1/statuses/$2");
} else if (PATH_REGEX.mastodon2.test(urlObj.pathname)) {
redirUrl = url.replace(/^\/(.+?)\/statuses/, "/api/v1/statuses");
2022-12-06 04:10:15 +00:00
} else {
logger.error(
"fedimbed",
`Missing MastoAPI replacement for "${platform}"`
);
}
if (redirUrl) {
2022-12-06 02:50:22 +00:00
const postData2 = await fetch(url.replace("notice", "api/v1/statuses"), {
headers: {
"User-Agent": FRIENDLY_USERAGENT,
},
})
.then((res) => res.json())
.catch((err) => {
logger.error(
"fedimbed",
`Failed to fetch "${url}" as MastoAPI: ${err}`
);
});
if (!postData2) {
logger.warn(
"fedimbed",
`Bailing trying to re-embed "${url}": Failed to get post from both AS2 and MastoAPI.`
);
} else if (postData2.error) {
2022-12-06 04:10:15 +00:00
logger.error(
"fedimbed",
`Bailing trying to re-embed "${url}", MastoAPI gave us error: ${postData2.error}`
);
2022-12-06 02:50:22 +00:00
} else {
cw = postData2.spoiler_warning;
content =
postData2.akkoma?.source?.content ??
postData2.pleroma?.content?.["text/plain"] ??
postData2.content;
author = {
name: postData2.account.display_name,
handle: postData2.account.fqn,
url: postData2.account.url,
avatar: postData2.account.avatar,
};
2022-12-06 03:39:20 +00:00
timestamp = postData2.created_at;
2022-12-06 03:11:43 +00:00
for (const attachment of postData2.media_attachments) {
2022-12-06 02:50:22 +00:00
attachments.push({
url: attachment.url,
desc: attachment.description,
});
}
}
}
} else {
content = postData.content;
cw = postData.summary;
2022-12-06 03:39:20 +00:00
timestamp = postData.published;
2022-12-06 02:50:22 +00:00
for (const attachment of postData.attachment) {
attachments.push({
url: attachment.url,
desc: attachment.name,
});
}
// Author data is not sent with the post with AS2
2022-12-06 03:51:48 +00:00
const authorData = await fetch(postData.actor ?? postData.attributedTo, {
2022-12-06 02:50:22 +00:00
headers: {
"User-Agent": FRIENDLY_USERAGENT,
Accept: "application/activity+json",
},
})
.then((res) => res.json())
.catch((err) => {
logger.error("fedimbed", `Failed to get author for "${url}": ${err}`);
});
if (authorData) {
author = {
name: authorData.name,
handle: `${authorData.preferredUsername}@${urlObj.hostname}`,
url: authorData.url,
avatar: authorData.icon.url,
};
}
}
// We could just continue without author but it'd look ugly and be confusing.
if (!author) {
logger.warn(
2022-12-06 03:03:02 +00:00
"fedimbed",
`Bailing trying to re-embed "${url}": Failed to get author.`
2022-12-06 02:50:22 +00:00
);
return;
}
// Start constructing embed
content = content ?? "";
cw = cw ?? "";
// TODO: convert certain HTML tags back to markdown
2022-12-06 03:01:25 +00:00
content = content.replace(/(<([^>]+)>)/gi, "");
2022-12-06 02:50:22 +00:00
content = parseHtmlEntities(content);
2022-12-06 03:01:25 +00:00
cw = cw.replace(/(<([^>]+)>)/gi, "");
2022-12-06 02:50:22 +00:00
cw = parseHtmlEntities(cw);
let desc = "";
let MAX_LENGTH = 3999;
if (cw != "") {
desc += "\u26a0 " + cw + "\n\n||" + content + "||";
MAX_LENGTH -= 8 - cw.length;
} else {
desc = content;
}
if (desc.length > MAX_LENGTH) {
if (desc.endsWith("||")) {
desc = desc.substring(0, MAX_LENGTH - 2);
desc += "\u2026||";
} else {
desc = desc.substring(0, MAX_LENGTH) + "\u2026";
}
}
const baseEmbed = {
color,
url,
2022-12-06 03:39:20 +00:00
timestamp,
2022-12-06 02:50:22 +00:00
description: desc,
title: `${author.name} (${author.handle})`,
2022-12-06 03:39:20 +00:00
footer: {
text: platformName,
2022-12-06 02:50:22 +00:00
},
thumbnail: {
url: author.avatar,
2022-12-06 02:50:22 +00:00
},
fields: [],
};
if (attachments.length > 0) {
if (attachments.length > 1) {
baseEmbed.fields.push({
name: "Images",
value: attachments
.map((attachment, index) => `[Image ${index + 1}](${attachment.url})`)
.join(" | "),
});
} else {
baseEmbed.fields.push({
name: "Image",
value: `[Click for image](${attachments[0].url})`,
});
}
}
const embeds = [];
for (const attachment of attachments) {
const embed = Object.assign({}, baseEmbed);
embed.image = {
url: attachment.url,
};
embeds.push(embed);
}
// NB: OceanicJS/Oceanic#32
//await msg.edit({flags: MessageFlags.SUPPRESS_EMBEDS}).catch(() => {});
await hf.bot.rest
.authRequest({
method: "PATCH",
path: Routes.CHANNEL_MESSAGE(msg.channel.id, msg.id),
json: {
flags: MessageFlags.SUPPRESS_EMBEDS,
},
})
.catch(() => {});
2022-12-06 03:15:04 +00:00
await msg.channel.createMessage({
2022-12-06 02:50:22 +00:00
embeds,
allowedMentions: {
repliedUser: false,
},
messageReference: {
messageID: msg.id,
},
});
}
events.add("messageCreate", "fedimbed", async function (msg) {
if (!msg.guildID) return;
if (!(await hasFlag(msg.guildID, "fedimbed"))) return;
if (!msg.content || msg.content == "") return;
if (URLS_REGEX.test(msg.content)) {
const urls = msg.content.match(URLS_REGEX);
for (const url of urls) {
for (const service of Object.keys(PATH_REGEX)) {
const regex = PATH_REGEX[service];
const urlObj = new URL(url);
if (regex.test(urlObj.pathname)) {
logger.verbose(
"fedimbed",
`Hit "${service}" for "${url}", processing now.`
);
await processUrl(msg, url).catch((err) => {
logger.error("fedimbed", `Error processing "${url}": ${err}`);
});
break;
}
}
}
}
});