2022-11-11 11:37:37 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// eslint-disable-next-line spaced-comment
|
|
|
|
/// <reference types="../src/globals" />
|
|
|
|
// eslint-disable-next-line spaced-comment
|
|
|
|
/// <reference types="../src/modules" />
|
|
|
|
|
|
|
|
import { readFileSync } from "fs";
|
2022-11-11 12:06:04 +00:00
|
|
|
import pup, { JSHandle } from "puppeteer-core";
|
|
|
|
|
|
|
|
for (const variable of ["DISCORD_TOKEN", "CHROMIUM_BIN"]) {
|
|
|
|
if (!process.env[variable]) {
|
|
|
|
console.error(`Missing environment variable ${variable}`);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
2022-11-11 11:37:37 +00:00
|
|
|
|
2022-12-20 01:59:16 +00:00
|
|
|
const CANARY = process.env.USE_CANARY === "true";
|
|
|
|
|
2022-11-11 11:37:37 +00:00
|
|
|
const browser = await pup.launch({
|
|
|
|
headless: true,
|
2022-11-11 12:06:04 +00:00
|
|
|
executablePath: process.env.CHROMIUM_BIN
|
2022-11-11 11:37:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const page = await browser.newPage();
|
2022-12-20 01:59:16 +00:00
|
|
|
await page.setUserAgent("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36");
|
2022-11-11 11:37:37 +00:00
|
|
|
|
|
|
|
function maybeGetError(handle: JSHandle) {
|
|
|
|
return (handle as JSHandle<Error>)?.getProperty("message")
|
|
|
|
.then(m => m.jsonValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
const report = {
|
|
|
|
badPatches: [] as {
|
|
|
|
plugin: string;
|
|
|
|
type: string;
|
|
|
|
id: string;
|
|
|
|
match: string;
|
|
|
|
error?: string;
|
|
|
|
}[],
|
|
|
|
badStarts: [] as {
|
|
|
|
plugin: string;
|
|
|
|
error: string;
|
|
|
|
}[],
|
|
|
|
otherErrors: [] as string[]
|
|
|
|
};
|
|
|
|
|
|
|
|
function toCodeBlock(s: string) {
|
|
|
|
s = s.replace(/```/g, "`\u200B`\u200B`");
|
|
|
|
return "```" + s + " ```";
|
|
|
|
}
|
|
|
|
|
2022-11-11 12:27:44 +00:00
|
|
|
async function printReport() {
|
2022-12-20 01:59:16 +00:00
|
|
|
console.log("# Vencord Report" + (CANARY ? " (Canary)" : ""));
|
2022-11-11 11:37:37 +00:00
|
|
|
console.log();
|
|
|
|
|
|
|
|
console.log("## Bad Patches");
|
|
|
|
report.badPatches.forEach(p => {
|
|
|
|
console.log(`- ${p.plugin} (${p.type})`);
|
|
|
|
console.log(` - ID: \`${p.id}\``);
|
|
|
|
console.log(` - Match: ${toCodeBlock(p.match)}`);
|
|
|
|
if (p.error) console.log(` - Error: ${toCodeBlock(p.error)}`);
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log();
|
|
|
|
|
|
|
|
console.log("## Bad Starts");
|
|
|
|
report.badStarts.forEach(p => {
|
|
|
|
console.log(`- ${p.plugin}`);
|
|
|
|
console.log(` - Error: ${toCodeBlock(p.error)}`);
|
|
|
|
});
|
2022-11-11 12:06:04 +00:00
|
|
|
|
|
|
|
console.log("## Discord Errors");
|
|
|
|
report.otherErrors.forEach(e => {
|
|
|
|
console.log(`- ${toCodeBlock(e)}`);
|
|
|
|
});
|
2022-11-11 12:27:44 +00:00
|
|
|
|
|
|
|
if (process.env.DISCORD_WEBHOOK) {
|
|
|
|
// this code was written almost entirely by Copilot xD
|
|
|
|
await fetch(process.env.DISCORD_WEBHOOK, {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json"
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
description: "Here's the latest Vencord Report!",
|
2022-12-20 01:59:16 +00:00
|
|
|
username: "Vencord Reporter" + (CANARY ? " (Canary)" : ""),
|
2022-11-11 12:27:44 +00:00
|
|
|
avatar_url: "https://cdn.discordapp.com/icons/1015060230222131221/f0204a918c6c9c9a43195997e97d8adf.webp",
|
|
|
|
embeds: [
|
|
|
|
{
|
|
|
|
title: "Bad Patches",
|
|
|
|
description: report.badPatches.map(p => {
|
|
|
|
const lines = [
|
|
|
|
`**__${p.plugin} (${p.type}):__**`,
|
|
|
|
`ID: \`${p.id}\``,
|
|
|
|
`Match: ${toCodeBlock(p.match)}`
|
|
|
|
];
|
|
|
|
if (p.error) lines.push(`Error: ${toCodeBlock(p.error)}`);
|
|
|
|
return lines.join("\n");
|
|
|
|
}).join("\n\n") || "None",
|
|
|
|
color: report.badPatches.length ? 0xff0000 : 0x00ff00
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Bad Starts",
|
|
|
|
description: report.badStarts.map(p => {
|
|
|
|
const lines = [
|
|
|
|
`**__${p.plugin}:__**`,
|
|
|
|
toCodeBlock(p.error)
|
|
|
|
];
|
|
|
|
return lines.join("\n");
|
|
|
|
}
|
|
|
|
).join("\n\n") || "None",
|
|
|
|
color: report.badStarts.length ? 0xff0000 : 0x00ff00
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Discord Errors",
|
|
|
|
description: toCodeBlock(report.otherErrors.join("\n")),
|
|
|
|
color: report.otherErrors.length ? 0xff0000 : 0x00ff00
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}).then(res => {
|
|
|
|
if (!res.ok) console.error(`Webhook failed with status ${res.status}`);
|
|
|
|
else console.error("Posted to Discord Webhook successfully");
|
|
|
|
});
|
|
|
|
}
|
2022-11-11 11:37:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
page.on("console", async e => {
|
|
|
|
const level = e.type();
|
|
|
|
const args = e.args();
|
|
|
|
|
|
|
|
const firstArg = (await args[0]?.jsonValue());
|
|
|
|
if (firstArg === "PUPPETEER_TEST_DONE_SIGNAL") {
|
|
|
|
await browser.close();
|
2022-11-11 12:27:44 +00:00
|
|
|
await printReport();
|
2022-11-11 11:37:37 +00:00
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
const isVencord = (await args[0]?.jsonValue()) === "[Vencord]";
|
2022-11-11 12:06:04 +00:00
|
|
|
const isDebug = (await args[0]?.jsonValue()) === "[PUP_DEBUG]";
|
|
|
|
|
2022-11-11 11:37:37 +00:00
|
|
|
if (isVencord) {
|
|
|
|
// make ci fail
|
|
|
|
process.exitCode = 1;
|
|
|
|
|
|
|
|
const jsonArgs = await Promise.all(args.map(a => a.jsonValue()));
|
|
|
|
const [, tag, message] = jsonArgs;
|
|
|
|
const cause = await maybeGetError(args[3]);
|
|
|
|
|
|
|
|
switch (tag) {
|
|
|
|
case "WebpackInterceptor:":
|
|
|
|
const [, plugin, type, id, regex] = (message as string).match(/Patch by (.+?) (had no effect|errored|found no module) \(Module id is (.+?)\): (.+)/)!;
|
|
|
|
report.badPatches.push({
|
|
|
|
plugin,
|
|
|
|
type,
|
|
|
|
id,
|
|
|
|
match: regex,
|
|
|
|
error: cause
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "PluginManager:":
|
|
|
|
const [, name] = (message as string).match(/Failed to start (.+)/)!;
|
|
|
|
report.badStarts.push({
|
|
|
|
plugin: name,
|
|
|
|
error: cause
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
2022-11-11 12:06:04 +00:00
|
|
|
} else if (isDebug) {
|
|
|
|
console.error(e.text());
|
2022-11-11 11:37:37 +00:00
|
|
|
} else if (level === "error") {
|
2023-02-01 13:13:55 +00:00
|
|
|
const text = e.text();
|
|
|
|
if (!text.startsWith("Failed to load resource: the server responded with a status of")) {
|
|
|
|
console.error("Got unexpected error", text);
|
|
|
|
report.otherErrors.push(text);
|
|
|
|
}
|
2022-11-11 11:37:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
page.on("error", e => console.error("[Error]", e));
|
|
|
|
page.on("pageerror", e => console.error("[Page Error]", e));
|
|
|
|
|
|
|
|
await page.setBypassCSP(true);
|
|
|
|
|
|
|
|
function runTime(token: string) {
|
2022-11-11 12:06:04 +00:00
|
|
|
console.error("[PUP_DEBUG]", "Starting test...");
|
|
|
|
|
|
|
|
try {
|
|
|
|
// spoof languages to not be suspicious
|
|
|
|
Object.defineProperty(navigator, "languages", {
|
|
|
|
get: function () {
|
|
|
|
return ["en-US", "en"];
|
|
|
|
},
|
2022-11-11 11:37:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2022-11-11 12:06:04 +00:00
|
|
|
// Monkey patch Logger to not log with custom css
|
2023-02-01 13:13:55 +00:00
|
|
|
// @ts-ignore
|
2022-11-11 12:06:04 +00:00
|
|
|
Vencord.Util.Logger.prototype._log = function (level, levelColor, args) {
|
|
|
|
if (level === "warn" || level === "error")
|
|
|
|
console[level]("[Vencord]", this.name + ":", ...args);
|
|
|
|
};
|
|
|
|
|
|
|
|
// force enable all plugins and patches
|
|
|
|
Vencord.Plugins.patches.length = 0;
|
|
|
|
Object.values(Vencord.Plugins.plugins).forEach(p => {
|
2023-01-07 02:28:40 +00:00
|
|
|
// Needs native server to run
|
|
|
|
if (p.name === "WebRichPresence (arRPC)") return;
|
|
|
|
|
2022-11-11 12:06:04 +00:00
|
|
|
p.required = true;
|
|
|
|
p.patches?.forEach(patch => {
|
|
|
|
patch.plugin = p.name;
|
|
|
|
delete patch.predicate;
|
|
|
|
if (!Array.isArray(patch.replacement))
|
|
|
|
patch.replacement = [patch.replacement];
|
|
|
|
Vencord.Plugins.patches.push(patch);
|
|
|
|
});
|
|
|
|
});
|
2022-11-11 11:37:37 +00:00
|
|
|
|
2022-11-11 12:06:04 +00:00
|
|
|
Vencord.Webpack.waitFor(
|
|
|
|
"loginToken",
|
|
|
|
m => {
|
|
|
|
console.error("[PUP_DEBUG]", "Logging in with token...");
|
|
|
|
m.loginToken(token);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// force load all chunks
|
|
|
|
Vencord.Webpack.onceReady.then(() => setTimeout(async () => {
|
|
|
|
console.error("[PUP_DEBUG]", "Webpack is ready!");
|
|
|
|
|
|
|
|
const { wreq } = Vencord.Webpack;
|
|
|
|
|
|
|
|
console.error("[PUP_DEBUG]", "Loading all chunks...");
|
|
|
|
const ids = Function("return" + wreq.u.toString().match(/\{.+\}/s)![0])();
|
|
|
|
for (const id in ids) {
|
|
|
|
const isWasm = await fetch(wreq.p + wreq.u(id))
|
|
|
|
.then(r => r.text())
|
|
|
|
.then(t => t.includes(".module.wasm"));
|
|
|
|
|
|
|
|
if (!isWasm)
|
|
|
|
await wreq.e(id as any);
|
2023-02-01 13:13:55 +00:00
|
|
|
|
|
|
|
await new Promise(r => setTimeout(r, 100));
|
2022-11-11 12:06:04 +00:00
|
|
|
}
|
|
|
|
console.error("[PUP_DEBUG]", "Finished loading chunks!");
|
|
|
|
|
|
|
|
for (const patch of Vencord.Plugins.patches) {
|
2022-11-11 18:01:01 +00:00
|
|
|
if (!patch.all) {
|
|
|
|
new Vencord.Util.Logger("WebpackInterceptor").warn(`Patch by ${patch.plugin} found no module (Module id is -): ${patch.find}`);
|
|
|
|
}
|
2022-11-11 12:06:04 +00:00
|
|
|
}
|
|
|
|
setTimeout(() => console.log("PUPPETEER_TEST_DONE_SIGNAL"), 1000);
|
|
|
|
}, 1000));
|
|
|
|
} catch (e) {
|
|
|
|
console.error("[PUP_DEBUG]", "A fatal error occured");
|
|
|
|
console.error("[PUP_DEBUG]", e);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2022-11-11 11:37:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await page.evaluateOnNewDocument(`
|
|
|
|
${readFileSync("./dist/browser.js", "utf-8")}
|
|
|
|
|
|
|
|
;(${runTime.toString()})(${JSON.stringify(process.env.DISCORD_TOKEN)});
|
|
|
|
`);
|
|
|
|
|
2022-12-20 01:59:16 +00:00
|
|
|
await page.goto(CANARY ? "https://canary.discord.com/login" : "https://discord.com/login");
|