2022-10-16 11:15:15 -04:00
|
|
|
#!/usr/bin/node
|
2022-10-21 19:22:44 -04: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/>.
|
|
|
|
*/
|
|
|
|
|
2022-10-16 11:15:15 -04:00
|
|
|
import esbuild from "esbuild";
|
2023-11-08 20:32:34 -05:00
|
|
|
import { readdir } from "fs/promises";
|
|
|
|
import { join } from "path";
|
2022-10-23 17:23:52 -04:00
|
|
|
|
2024-06-20 13:48:37 -04:00
|
|
|
import { BUILD_TIMESTAMP, commonOpts, exists, globPlugins, IS_DEV, IS_REPORTER, IS_STANDALONE, IS_UPDATER_DISABLED, resolvePluginName, VERSION, watch } from "./common.mjs";
|
2022-10-23 17:23:52 -04:00
|
|
|
|
|
|
|
const defines = {
|
2024-05-29 05:45:44 -04:00
|
|
|
IS_STANDALONE,
|
|
|
|
IS_DEV,
|
|
|
|
IS_REPORTER,
|
|
|
|
IS_UPDATER_DISABLED,
|
2023-09-22 09:58:29 -04:00
|
|
|
IS_WEB: false,
|
|
|
|
IS_EXTENSION: false,
|
2023-06-16 13:07:22 -04:00
|
|
|
VERSION: JSON.stringify(VERSION),
|
2024-05-29 05:45:44 -04:00
|
|
|
BUILD_TIMESTAMP
|
2022-10-23 17:23:52 -04:00
|
|
|
};
|
2024-05-29 05:45:44 -04:00
|
|
|
|
|
|
|
if (defines.IS_STANDALONE === false)
|
|
|
|
// If this is a local build (not standalone), optimize
|
2022-10-23 17:23:52 -04:00
|
|
|
// for the specific platform we're on
|
|
|
|
defines["process.platform"] = JSON.stringify(process.platform);
|
|
|
|
|
2022-10-16 11:15:15 -04:00
|
|
|
/**
|
|
|
|
* @type {esbuild.BuildOptions}
|
|
|
|
*/
|
|
|
|
const nodeCommonOpts = {
|
|
|
|
...commonOpts,
|
|
|
|
format: "cjs",
|
|
|
|
platform: "node",
|
|
|
|
target: ["esnext"],
|
2023-11-08 20:32:34 -05:00
|
|
|
external: ["electron", "original-fs", "~pluginNatives", ...commonOpts.external],
|
2024-05-29 05:45:44 -04:00
|
|
|
define: defines
|
2022-10-16 11:15:15 -04:00
|
|
|
};
|
|
|
|
|
2022-11-09 13:26:39 -05:00
|
|
|
const sourceMapFooter = s => watch ? "" : `//# sourceMappingURL=vencord://${s}.js.map`;
|
|
|
|
const sourcemap = watch ? "inline" : "external";
|
|
|
|
|
2023-11-08 20:32:34 -05:00
|
|
|
/**
|
|
|
|
* @type {import("esbuild").Plugin}
|
|
|
|
*/
|
|
|
|
const globNativesPlugin = {
|
|
|
|
name: "glob-natives-plugin",
|
|
|
|
setup: build => {
|
|
|
|
const filter = /^~pluginNatives$/;
|
|
|
|
build.onResolve({ filter }, args => {
|
|
|
|
return {
|
|
|
|
namespace: "import-natives",
|
|
|
|
path: args.path
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
build.onLoad({ filter, namespace: "import-natives" }, async () => {
|
|
|
|
const pluginDirs = ["plugins", "userplugins"];
|
|
|
|
let code = "";
|
|
|
|
let natives = "\n";
|
|
|
|
let i = 0;
|
|
|
|
for (const dir of pluginDirs) {
|
|
|
|
const dirPath = join("src", dir);
|
2024-05-29 05:45:44 -04:00
|
|
|
if (!await exists(dirPath)) continue;
|
2024-06-20 13:48:37 -04:00
|
|
|
const plugins = await readdir(dirPath, { withFileTypes: true });
|
|
|
|
for (const file of plugins) {
|
|
|
|
const fileName = file.name;
|
|
|
|
const nativePath = join(dirPath, fileName, "native.ts");
|
|
|
|
const indexNativePath = join(dirPath, fileName, "native/index.ts");
|
2023-12-06 16:25:29 -05:00
|
|
|
|
2024-05-29 05:45:44 -04:00
|
|
|
if (!(await exists(nativePath)) && !(await exists(indexNativePath)))
|
2023-12-06 16:25:29 -05:00
|
|
|
continue;
|
2023-11-08 20:32:34 -05:00
|
|
|
|
2024-06-20 13:48:37 -04:00
|
|
|
const pluginName = await resolvePluginName(dirPath, file);
|
2023-11-08 20:32:34 -05:00
|
|
|
|
|
|
|
const mod = `p${i}`;
|
2024-06-20 13:48:37 -04:00
|
|
|
code += `import * as ${mod} from "./${dir}/${fileName}/native";\n`;
|
|
|
|
natives += `${JSON.stringify(pluginName)}:${mod},\n`;
|
2023-11-08 20:32:34 -05:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
code += `export default {${natives}};`;
|
|
|
|
return {
|
|
|
|
contents: code,
|
|
|
|
resolveDir: "./src"
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-10-16 11:15:15 -04:00
|
|
|
await Promise.all([
|
2023-08-10 18:14:50 -04:00
|
|
|
// Discord Desktop main & renderer & preload
|
2022-10-16 11:15:15 -04:00
|
|
|
esbuild.build({
|
|
|
|
...nodeCommonOpts,
|
2023-04-03 19:16:29 -04:00
|
|
|
entryPoints: ["src/main/index.ts"],
|
2022-10-16 11:15:15 -04:00
|
|
|
outfile: "dist/patcher.js",
|
2022-11-09 13:26:39 -05:00
|
|
|
footer: { js: "//# sourceURL=VencordPatcher\n" + sourceMapFooter("patcher") },
|
|
|
|
sourcemap,
|
2023-04-03 19:16:29 -04:00
|
|
|
define: {
|
|
|
|
...defines,
|
|
|
|
IS_DISCORD_DESKTOP: true,
|
2023-08-15 19:55:56 -04:00
|
|
|
IS_VESKTOP: false
|
2023-11-08 20:32:34 -05:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...nodeCommonOpts.plugins,
|
|
|
|
globNativesPlugin
|
|
|
|
]
|
2022-10-16 11:15:15 -04:00
|
|
|
}),
|
|
|
|
esbuild.build({
|
|
|
|
...commonOpts,
|
|
|
|
entryPoints: ["src/Vencord.ts"],
|
|
|
|
outfile: "dist/renderer.js",
|
|
|
|
format: "iife",
|
|
|
|
target: ["esnext"],
|
2022-11-09 13:26:39 -05:00
|
|
|
footer: { js: "//# sourceURL=VencordRenderer\n" + sourceMapFooter("renderer") },
|
2022-10-16 11:15:15 -04:00
|
|
|
globalName: "Vencord",
|
2022-11-09 13:26:39 -05:00
|
|
|
sourcemap,
|
2022-10-16 11:15:15 -04:00
|
|
|
plugins: [
|
2023-04-04 22:09:42 -04:00
|
|
|
globPlugins("discordDesktop"),
|
2022-10-23 17:23:52 -04:00
|
|
|
...commonOpts.plugins
|
2022-10-16 11:15:15 -04:00
|
|
|
],
|
|
|
|
define: {
|
2022-10-29 21:58:11 -04:00
|
|
|
...defines,
|
2023-04-03 19:16:29 -04:00
|
|
|
IS_DISCORD_DESKTOP: true,
|
2023-08-15 19:55:56 -04:00
|
|
|
IS_VESKTOP: false
|
2023-04-03 19:16:29 -04:00
|
|
|
}
|
|
|
|
}),
|
2023-08-10 18:14:50 -04:00
|
|
|
esbuild.build({
|
|
|
|
...nodeCommonOpts,
|
|
|
|
entryPoints: ["src/preload.ts"],
|
|
|
|
outfile: "dist/preload.js",
|
|
|
|
footer: { js: "//# sourceURL=VencordPreload\n" + sourceMapFooter("preload") },
|
|
|
|
sourcemap,
|
|
|
|
define: {
|
|
|
|
...defines,
|
|
|
|
IS_DISCORD_DESKTOP: true,
|
2023-08-15 19:55:56 -04:00
|
|
|
IS_VESKTOP: false
|
2023-08-10 18:14:50 -04:00
|
|
|
}
|
|
|
|
}),
|
2023-04-03 19:16:29 -04:00
|
|
|
|
2023-08-10 18:14:50 -04:00
|
|
|
// Vencord Desktop main & renderer & preload
|
2023-04-03 19:16:29 -04:00
|
|
|
esbuild.build({
|
|
|
|
...nodeCommonOpts,
|
|
|
|
entryPoints: ["src/main/index.ts"],
|
|
|
|
outfile: "dist/vencordDesktopMain.js",
|
|
|
|
footer: { js: "//# sourceURL=VencordDesktopMain\n" + sourceMapFooter("vencordDesktopMain") },
|
|
|
|
sourcemap,
|
|
|
|
define: {
|
|
|
|
...defines,
|
|
|
|
IS_DISCORD_DESKTOP: false,
|
2023-08-15 19:55:56 -04:00
|
|
|
IS_VESKTOP: true
|
2023-11-08 20:32:34 -05:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...nodeCommonOpts.plugins,
|
|
|
|
globNativesPlugin
|
|
|
|
]
|
2023-04-03 19:16:29 -04:00
|
|
|
}),
|
|
|
|
esbuild.build({
|
|
|
|
...commonOpts,
|
|
|
|
entryPoints: ["src/Vencord.ts"],
|
|
|
|
outfile: "dist/vencordDesktopRenderer.js",
|
|
|
|
format: "iife",
|
|
|
|
target: ["esnext"],
|
|
|
|
footer: { js: "//# sourceURL=VencordDesktopRenderer\n" + sourceMapFooter("vencordDesktopRenderer") },
|
|
|
|
globalName: "Vencord",
|
|
|
|
sourcemap,
|
|
|
|
plugins: [
|
2023-04-04 22:09:42 -04:00
|
|
|
globPlugins("vencordDesktop"),
|
2023-04-03 19:16:29 -04:00
|
|
|
...commonOpts.plugins
|
|
|
|
],
|
|
|
|
define: {
|
|
|
|
...defines,
|
|
|
|
IS_DISCORD_DESKTOP: false,
|
2023-08-15 19:55:56 -04:00
|
|
|
IS_VESKTOP: true
|
2022-10-16 11:15:15 -04:00
|
|
|
}
|
|
|
|
}),
|
2023-08-10 18:14:50 -04:00
|
|
|
esbuild.build({
|
|
|
|
...nodeCommonOpts,
|
|
|
|
entryPoints: ["src/preload.ts"],
|
|
|
|
outfile: "dist/vencordDesktopPreload.js",
|
|
|
|
footer: { js: "//# sourceURL=VencordPreload\n" + sourceMapFooter("vencordDesktopPreload") },
|
|
|
|
sourcemap,
|
|
|
|
define: {
|
|
|
|
...defines,
|
|
|
|
IS_DISCORD_DESKTOP: false,
|
2023-08-15 19:55:56 -04:00
|
|
|
IS_VESKTOP: true
|
2023-08-10 18:14:50 -04:00
|
|
|
}
|
|
|
|
}),
|
2022-10-16 11:15:15 -04:00
|
|
|
]).catch(err => {
|
|
|
|
console.error("Build failed");
|
|
|
|
console.error(err.message);
|
|
|
|
// make ci fail
|
2022-10-21 22:41:33 -04:00
|
|
|
if (!commonOpts.watch)
|
2022-10-16 11:15:15 -04:00
|
|
|
process.exitCode = 1;
|
|
|
|
});
|