Vencord/src/plugins/index.ts

89 lines
2.4 KiB
TypeScript
Raw Normal View History

2022-08-29 18:27:47 +00:00
import Plugins from "plugins";
2022-10-05 22:11:32 +00:00
import { registerCommand, unregisterCommand } from "../api/Commands";
2022-08-31 02:07:16 +00:00
import { Settings } from "../api/settings";
2022-08-29 18:27:47 +00:00
import Logger from "../utils/logger";
import { Patch, Plugin } from "../utils/types";
2022-08-29 16:11:44 +00:00
2022-08-29 18:27:47 +00:00
const logger = new Logger("PluginManager", "#a6d189");
export const plugins = Plugins;
export const patches = [] as Patch[];
for (const plugin of Object.values(Plugins)) if (plugin.patches && Settings.plugins[plugin.name].enabled) {
2022-08-29 18:27:47 +00:00
for (const patch of plugin.patches) {
patch.plugin = plugin.name;
if (!Array.isArray(patch.replacement)) patch.replacement = [patch.replacement];
patches.push(patch);
}
}
2022-09-30 22:42:50 +00:00
export function startAllPlugins() {
2022-10-05 22:11:32 +00:00
for (const name in Plugins) if (Settings.plugins[name].enabled) {
startPlugin(Plugins[name]);
}
}
export function startPlugin(p: Plugin) {
2022-10-05 22:11:32 +00:00
if (p.start) {
logger.info("Starting plugin", p.name);
if (p.started) {
logger.warn(`${p.name} already started`);
return false;
}
try {
p.start();
p.started = true;
} catch (e) {
logger.error(`Failed to start ${p.name}\n`, e);
return false;
}
}
2022-10-05 22:11:32 +00:00
if (p.commands?.length) {
logger.info("Registering commands of plugin", p.name);
for (const cmd of p.commands) {
try {
registerCommand(cmd, p.name);
} catch (e) {
logger.error(`Failed to register command ${cmd.name}\n`, e);
return false;
}
}
}
2022-10-05 22:11:32 +00:00
return true;
}
export function stopPlugin(p: Plugin) {
2022-10-05 22:11:32 +00:00
if (p.stop) {
logger.info("Stopping plugin", p.name);
if (!p.started) {
logger.warn(`${p.name} already stopped`);
return false;
}
try {
p.stop();
p.started = false;
} catch (e) {
logger.error(`Failed to stop ${p.name}\n`, e);
return false;
}
}
2022-10-05 22:11:32 +00:00
if (p.commands?.length) {
logger.info("Unregistering commands of plugin", p.name);
for (const cmd of p.commands) {
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
return true;
2022-09-16 20:59:34 +00:00
}