2022-10-21 23:17:06 +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/>.
|
|
|
|
*/
|
|
|
|
|
2022-11-28 12:37:55 +00:00
|
|
|
import { registerCommand, unregisterCommand } from "@api/Commands";
|
2023-05-05 23:36:00 +00:00
|
|
|
import { Settings } from "@api/Settings";
|
|
|
|
import { Logger } from "@utils/Logger";
|
2022-11-28 12:37:55 +00:00
|
|
|
import { Patch, Plugin } from "@utils/types";
|
2023-04-22 01:18:19 +00:00
|
|
|
import { FluxDispatcher } from "@webpack/common";
|
|
|
|
import { FluxEvents } from "@webpack/types";
|
2022-11-28 12:37:55 +00:00
|
|
|
|
2022-10-23 21:23:52 +00:00
|
|
|
import Plugins from "~plugins";
|
2022-10-17 19:18:25 +00:00
|
|
|
|
2022-11-07 20:05:33 +00:00
|
|
|
import { traceFunction } from "../debug/Tracer";
|
2022-08-29 16:11:44 +00:00
|
|
|
|
2022-08-29 18:27:47 +00:00
|
|
|
const logger = new Logger("PluginManager", "#a6d189");
|
|
|
|
|
2022-10-30 19:45:18 +00:00
|
|
|
export const PMLogger = logger;
|
2022-08-29 18:27:47 +00:00
|
|
|
export const plugins = Plugins;
|
|
|
|
export const patches = [] as Patch[];
|
|
|
|
|
2022-11-12 14:09:02 +00:00
|
|
|
const settings = Settings.plugins;
|
|
|
|
|
2022-10-29 18:45:31 +00:00
|
|
|
export function isPluginEnabled(p: string) {
|
2022-11-12 14:09:02 +00:00
|
|
|
return (
|
|
|
|
Plugins[p]?.required ||
|
|
|
|
Plugins[p]?.isDependency ||
|
|
|
|
settings[p]?.enabled
|
|
|
|
) ?? false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const pluginsValues = Object.values(Plugins);
|
|
|
|
|
2023-03-25 15:20:00 +00:00
|
|
|
// First roundtrip to mark and force enable dependencies (only for enabled plugins)
|
|
|
|
//
|
|
|
|
// FIXME: might need to revisit this if there's ever nested (dependencies of dependencies) dependencies since this only
|
|
|
|
// goes for the top level and their children, but for now this works okay with the current API plugins
|
|
|
|
for (const p of pluginsValues) if (settings[p.name]?.enabled) {
|
2022-11-12 14:09:02 +00:00
|
|
|
p.dependencies?.forEach(d => {
|
|
|
|
const dep = Plugins[d];
|
|
|
|
if (dep) {
|
|
|
|
settings[d].enabled = true;
|
|
|
|
dep.isDependency = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const error = new Error(`Plugin ${p.name} has unresolved dependency ${d}`);
|
|
|
|
if (IS_DEV)
|
|
|
|
throw error;
|
|
|
|
logger.warn(error);
|
|
|
|
}
|
|
|
|
});
|
2022-08-29 18:27:47 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 22:15:45 +00:00
|
|
|
for (const p of pluginsValues) {
|
|
|
|
if (p.settings) {
|
|
|
|
p.settings.pluginName = p.name;
|
|
|
|
p.options ??= {};
|
|
|
|
for (const [name, def] of Object.entries(p.settings.def)) {
|
|
|
|
const checks = p.settings.checks?.[name];
|
|
|
|
p.options[name] = { ...def, ...checks };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-29 18:45:31 +00:00
|
|
|
if (p.patches && isPluginEnabled(p.name)) {
|
|
|
|
for (const patch of p.patches) {
|
|
|
|
patch.plugin = p.name;
|
|
|
|
if (!Array.isArray(patch.replacement))
|
|
|
|
patch.replacement = [patch.replacement];
|
|
|
|
patches.push(patch);
|
|
|
|
}
|
2022-08-31 20:08:05 +00:00
|
|
|
}
|
2023-01-13 22:15:45 +00:00
|
|
|
}
|
2022-10-29 18:45:31 +00:00
|
|
|
|
2022-11-07 20:05:33 +00:00
|
|
|
export const startAllPlugins = traceFunction("startAllPlugins", function startAllPlugins() {
|
2022-10-29 18:45:31 +00:00
|
|
|
for (const name in Plugins)
|
|
|
|
if (isPluginEnabled(name)) {
|
|
|
|
startPlugin(Plugins[name]);
|
|
|
|
}
|
2022-11-07 20:05:33 +00:00
|
|
|
});
|
2022-08-31 20:08:05 +00:00
|
|
|
|
2022-10-23 18:09:02 +00:00
|
|
|
export function startDependenciesRecursive(p: Plugin) {
|
|
|
|
let restartNeeded = false;
|
|
|
|
const failures: string[] = [];
|
2022-10-29 18:45:31 +00:00
|
|
|
p.dependencies?.forEach(dep => {
|
2022-10-23 18:09:02 +00:00
|
|
|
if (!Settings.plugins[dep].enabled) {
|
|
|
|
startDependenciesRecursive(Plugins[dep]);
|
|
|
|
// If the plugin has patches, don't start the plugin, just enable it.
|
2023-04-30 13:34:38 +00:00
|
|
|
Settings.plugins[dep].enabled = true;
|
2022-10-23 18:09:02 +00:00
|
|
|
if (Plugins[dep].patches) {
|
|
|
|
logger.warn(`Enabling dependency ${dep} requires restart.`);
|
|
|
|
restartNeeded = true;
|
2022-10-29 18:45:31 +00:00
|
|
|
return;
|
2022-10-23 18:09:02 +00:00
|
|
|
}
|
|
|
|
const result = startPlugin(Plugins[dep]);
|
|
|
|
if (!result) failures.push(dep);
|
|
|
|
}
|
2022-10-29 18:45:31 +00:00
|
|
|
});
|
2022-10-23 18:09:02 +00:00
|
|
|
return { restartNeeded, failures };
|
|
|
|
}
|
|
|
|
|
2022-11-07 20:05:33 +00:00
|
|
|
export const startPlugin = traceFunction("startPlugin", function startPlugin(p: Plugin) {
|
2023-04-22 01:18:19 +00:00
|
|
|
const { name, commands, flux } = p;
|
|
|
|
|
2022-10-05 22:11:32 +00:00
|
|
|
if (p.start) {
|
2023-04-22 01:18:19 +00:00
|
|
|
logger.info("Starting plugin", name);
|
2022-10-05 22:11:32 +00:00
|
|
|
if (p.started) {
|
2023-04-22 01:18:19 +00:00
|
|
|
logger.warn(`${name} already started`);
|
2022-10-05 22:11:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
p.start();
|
|
|
|
p.started = true;
|
|
|
|
} catch (e) {
|
2023-04-22 01:18:19 +00:00
|
|
|
logger.error(`Failed to start ${name}\n`, e);
|
2022-10-05 22:11:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-10-01 20:09:20 +00:00
|
|
|
}
|
|
|
|
|
2023-04-22 01:18:19 +00:00
|
|
|
if (commands?.length) {
|
|
|
|
logger.info("Registering commands of plugin", name);
|
|
|
|
for (const cmd of commands) {
|
2022-10-05 22:11:32 +00:00
|
|
|
try {
|
2023-04-22 01:18:19 +00:00
|
|
|
registerCommand(cmd, name);
|
2022-10-05 22:11:32 +00:00
|
|
|
} catch (e) {
|
|
|
|
logger.error(`Failed to register command ${cmd.name}\n`, e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2023-04-22 01:18:19 +00:00
|
|
|
}
|
2022-10-05 22:11:32 +00:00
|
|
|
|
2023-04-22 01:18:19 +00:00
|
|
|
if (flux) {
|
|
|
|
for (const event in flux) {
|
|
|
|
FluxDispatcher.subscribe(event as FluxEvents, flux[event]);
|
|
|
|
}
|
2022-08-31 20:08:05 +00:00
|
|
|
}
|
2022-10-05 22:11:32 +00:00
|
|
|
|
|
|
|
return true;
|
2022-11-07 20:05:33 +00:00
|
|
|
}, p => `startPlugin ${p.name}`);
|
2022-08-31 20:08:05 +00:00
|
|
|
|
2022-11-07 20:05:33 +00:00
|
|
|
export const stopPlugin = traceFunction("stopPlugin", function stopPlugin(p: Plugin) {
|
2023-04-22 01:18:19 +00:00
|
|
|
const { name, commands, flux } = p;
|
2022-10-05 22:11:32 +00:00
|
|
|
if (p.stop) {
|
2023-04-22 01:18:19 +00:00
|
|
|
logger.info("Stopping plugin", name);
|
2022-10-05 22:11:32 +00:00
|
|
|
if (!p.started) {
|
2023-04-22 01:18:19 +00:00
|
|
|
logger.warn(`${name} already stopped`);
|
2022-10-05 22:11:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
p.stop();
|
|
|
|
p.started = false;
|
|
|
|
} catch (e) {
|
2023-04-22 01:18:19 +00:00
|
|
|
logger.error(`Failed to stop ${name}\n`, e);
|
2022-10-05 22:11:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-10-01 20:09:20 +00:00
|
|
|
}
|
2022-10-05 22:11:32 +00:00
|
|
|
|
2023-04-22 01:18:19 +00:00
|
|
|
if (commands?.length) {
|
|
|
|
logger.info("Unregistering commands of plugin", name);
|
|
|
|
for (const cmd of commands) {
|
2022-10-05 22:11:32 +00:00
|
|
|
try {
|
|
|
|
unregisterCommand(cmd.name);
|
|
|
|
} catch (e) {
|
|
|
|
logger.error(`Failed to unregister command ${cmd.name}\n`, e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-08-29 18:27:47 +00:00
|
|
|
}
|
2022-10-05 22:11:32 +00:00
|
|
|
|
2023-04-22 01:18:19 +00:00
|
|
|
if (flux) {
|
|
|
|
for (const event in flux) {
|
|
|
|
FluxDispatcher.unsubscribe(event as FluxEvents, flux[event]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-05 22:11:32 +00:00
|
|
|
return true;
|
2022-11-07 20:05:33 +00:00
|
|
|
}, p => `stopPlugin ${p.name}`);
|