2022-05-07 22:49:07 +00:00
|
|
|
const events = require("../lib/events.js");
|
|
|
|
const {hasFlag} = require("../lib/guildSettings.js");
|
2022-05-07 22:58:15 +00:00
|
|
|
const fetch = require("node-fetch");
|
2022-05-07 22:49:07 +00:00
|
|
|
|
|
|
|
const REGEX_GITHUB =
|
|
|
|
/(?:\s|^)https?:\/\/(www\.)?github\.com\/.+?\/.+?\/blob\/([a-zA-Z0-9-_.#/]*)/g;
|
|
|
|
const REGEX_GITLAB =
|
2022-05-22 19:21:57 +00:00
|
|
|
/(?:\s|^)https?:\/\/.+?\/.+?\/.+?\/-\/blob\/([a-zA-Z0-9-_.#/]*)/g;
|
2022-05-07 22:49:07 +00:00
|
|
|
const REGEX_GITEA =
|
|
|
|
/(?:\s|^)https?:\/\/.+?\/.+?\/.+?\/src\/branch\/([a-zA-Z0-9-_.#/]*)/g;
|
|
|
|
|
|
|
|
function unindent(str) {
|
|
|
|
str = str.replace(/\t/g, " ");
|
|
|
|
const minIndent =
|
|
|
|
str
|
|
|
|
.match(/^ *(?=\S)/gm)
|
|
|
|
?.reduce((prev, curr) => Math.min(prev, curr.length), Infinity) ?? 0;
|
|
|
|
if (!minIndent) return str;
|
|
|
|
return str.replace(new RegExp(`^ {${minIndent}}`, "gm"), "");
|
|
|
|
}
|
|
|
|
|
2022-05-07 23:42:22 +00:00
|
|
|
async function processFile(link) {
|
|
|
|
const file = await fetch(link).then((res) => res.text());
|
|
|
|
const lines = file.replace(/\r/g, "").split("\n");
|
|
|
|
|
|
|
|
const fileName = link.substring(
|
|
|
|
link.lastIndexOf("/") + 1,
|
|
|
|
link.indexOf("#") == -1 ? link.length : link.indexOf("#")
|
|
|
|
);
|
|
|
|
const fileType =
|
|
|
|
fileName.indexOf(".") == -1
|
|
|
|
? ""
|
|
|
|
: fileName.substring(fileName.indexOf(".") + 1);
|
|
|
|
|
|
|
|
const lineStr = link.match(/#L\d+(-L?\d+)?/)?.[0];
|
|
|
|
let startLine, endLine;
|
|
|
|
let entireFile = false;
|
|
|
|
|
|
|
|
if (lineStr) {
|
|
|
|
const [start, end] = link.match(/\d+/g);
|
|
|
|
if (!end) {
|
|
|
|
startLine = endLine = start;
|
|
|
|
} else {
|
|
|
|
startLine = start;
|
|
|
|
endLine = end;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
entireFile = true;
|
|
|
|
startLine = 1;
|
|
|
|
endLine = lines.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
const whichLines = entireFile
|
|
|
|
? ""
|
|
|
|
: startLine == endLine
|
|
|
|
? "Line " + startLine
|
|
|
|
: "Lines " + startLine + "-" + endLine;
|
|
|
|
|
|
|
|
startLine--;
|
|
|
|
endLine--;
|
|
|
|
|
|
|
|
const targetLines = (
|
|
|
|
entireFile ? lines : lines.slice(startLine, endLine + 1)
|
|
|
|
).join("\n");
|
|
|
|
|
|
|
|
return (
|
|
|
|
"**" +
|
|
|
|
fileName +
|
|
|
|
": **" +
|
|
|
|
whichLines +
|
|
|
|
"\n```" +
|
|
|
|
fileType +
|
|
|
|
"\n" +
|
|
|
|
unindent(targetLines) +
|
|
|
|
"\n```\n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-07 22:49:07 +00:00
|
|
|
events.add("messageCreate", "codePreviews", async function (msg) {
|
|
|
|
if (!msg.guildID) return;
|
2022-05-07 23:59:02 +00:00
|
|
|
if (!(await hasFlag(msg.guildID, "codePreviews"))) return;
|
2022-05-07 22:49:07 +00:00
|
|
|
|
|
|
|
let out = "";
|
|
|
|
|
|
|
|
const githubLinks = msg.content.match(REGEX_GITHUB);
|
|
|
|
const gitlabLinks = msg.content.match(REGEX_GITLAB);
|
|
|
|
const giteaLinks = msg.content.match(REGEX_GITEA);
|
|
|
|
|
2022-05-07 22:51:27 +00:00
|
|
|
if (githubLinks?.length) {
|
|
|
|
for (const link of githubLinks) {
|
2022-05-07 23:42:22 +00:00
|
|
|
out += await processFile(link.replace("/blob/", "/raw/"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gitlabLinks?.length) {
|
|
|
|
for (const link of gitlabLinks) {
|
|
|
|
out += await processFile(link.replace("/blob/", "/raw/"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (giteaLinks?.length) {
|
|
|
|
for (const link of giteaLinks) {
|
|
|
|
out += await processFile(link.replace("/src/", "/raw/"));
|
2022-05-07 22:51:27 +00:00
|
|
|
}
|
2022-05-07 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
2022-05-07 23:48:37 +00:00
|
|
|
if (out.length > 2000) return;
|
|
|
|
|
2022-05-07 23:10:31 +00:00
|
|
|
if (out !== "") {
|
|
|
|
await msg.edit({flags: 1 << 2});
|
|
|
|
await msg.channel.createMessage({
|
2022-05-07 22:49:07 +00:00
|
|
|
content: out,
|
|
|
|
allowedMentions: {
|
|
|
|
repliedUser: false,
|
|
|
|
},
|
|
|
|
messageReference: {
|
|
|
|
messageID: msg.id,
|
|
|
|
},
|
|
|
|
});
|
2022-05-07 23:10:31 +00:00
|
|
|
}
|
2022-05-07 22:49:07 +00:00
|
|
|
});
|