72 lines
3.4 KiB
JavaScript
72 lines
3.4 KiB
JavaScript
const args = process.argv;
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
const doSanityChecks = require("./validate");
|
|
const buildPackage = require("./package");
|
|
|
|
const useBdRelease = args[2] && args[2].toLowerCase() === "release";
|
|
const releaseInput = useBdRelease ? args[3] && args[3].toLowerCase() : args[2] && args[2].toLowerCase();
|
|
const release = releaseInput === "canary" ? "Discord Canary" : releaseInput === "ptb" ? "Discord PTB" : "Discord";
|
|
const bdPath = useBdRelease ? path.resolve(__dirname, "..", "dist", "betterdiscord.asar") : path.resolve(__dirname, "..", "dist");
|
|
const discordPath = (function() {
|
|
let resourcePath = "";
|
|
if (process.platform === "win32") {
|
|
const basedir = path.join(process.env.LOCALAPPDATA, release.replace(/ /g, ""));
|
|
if (!fs.existsSync(basedir)) throw new Error(`Cannot find directory for ${release}`);
|
|
const version = fs.readdirSync(basedir).filter(f => fs.lstatSync(path.join(basedir, f)).isDirectory() && f.split(".").length > 1).sort().reverse()[0];
|
|
resourcePath = path.join(basedir, version, "resources");
|
|
}
|
|
else if (process.platform === "darwin") {
|
|
const appPath = releaseInput === "canary" ? path.join("/Applications", "Discord Canary.app")
|
|
: releaseInput === "ptb" ? path.join("/Applications", "Discord PTB.app")
|
|
: useBdRelease && args[3] ? args[3] ? args[2] : args[2]
|
|
: path.join("/Applications", "Discord.app");
|
|
|
|
resourcePath = path.join(appPath, "Contents", "Resources");
|
|
}
|
|
else {
|
|
const userData = process.env.XDG_CONFIG_HOME ? process.env.XDG_CONFIG_HOME : path.join(process.env.HOME, ".config");
|
|
const basedir = path.join(userData, release.toLowerCase().replace(" ", ""));
|
|
if (!fs.existsSync(basedir)) return "";
|
|
const version = fs.readdirSync(basedir).filter(f => fs.lstatSync(path.join(basedir, f)).isDirectory() && f.split(".").length > 1).sort().reverse()[0];
|
|
if (!version) return "";
|
|
resourcePath = path.join(basedir, version, "modules", "discord_desktop_core");
|
|
}
|
|
|
|
if (fs.existsSync(resourcePath)) return resourcePath;
|
|
return "";
|
|
})();
|
|
|
|
doSanityChecks(bdPath);
|
|
buildPackage(bdPath);
|
|
console.log("");
|
|
|
|
console.log(`Injecting into ${release}`);
|
|
if (!fs.existsSync(discordPath)) throw new Error(`Cannot find directory for ${release}`);
|
|
console.log(` ✅ Found ${release} in ${discordPath}`);
|
|
|
|
const appPath = process.platform === "win32" || process.platform === "darwin" ? path.join(discordPath, "app") : discordPath;
|
|
const packageJson = path.join(appPath, "package.json");
|
|
const indexJs = path.join(appPath, "index.js");
|
|
|
|
if (!fs.existsSync(appPath)) fs.mkdirSync(appPath);
|
|
if (fs.existsSync(packageJson)) fs.unlinkSync(packageJson);
|
|
if (fs.existsSync(indexJs)) fs.unlinkSync(indexJs);
|
|
|
|
if (process.platform === "win32" || process.platform === "darwin") {
|
|
fs.writeFileSync(packageJson, JSON.stringify({
|
|
name: "betterdiscord",
|
|
main: "index.js",
|
|
}, null, 4));
|
|
console.log(" ✅ Wrote package.json");
|
|
|
|
fs.writeFileSync(indexJs, `require("${bdPath.replace(/\\/g, "\\\\").replace(/"/g, "\\\"")}");`);
|
|
}
|
|
else {
|
|
fs.writeFileSync(indexJs, `require("${bdPath.replace(/\\/g, "\\\\").replace(/"/g, "\\\"")}");\nmodule.exports = require("./core.asar");`);
|
|
}
|
|
|
|
console.log(" ✅ Wrote index.js");
|
|
console.log("");
|
|
console.log(`Injection successful, please restart ${release}.`); |