2022-10-22 01:17:06 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
2025-01-23 02:48:44 +01:00
|
|
|
import { addProfileBadge, removeProfileBadge } from "@api/Badges";
|
|
|
|
import { addChatBarButton, removeChatBarButton } from "@api/ChatButtons";
|
2022-11-28 13:37:55 +01:00
|
|
|
import { registerCommand, unregisterCommand } from "@api/Commands";
|
2024-03-07 11:06:24 +01:00
|
|
|
import { addContextMenuPatch, removeContextMenuPatch } from "@api/ContextMenu";
|
2025-01-23 02:48:44 +01:00
|
|
|
import { addMemberListDecorator, removeMemberListDecorator } from "@api/MemberListDecorators";
|
|
|
|
import { addMessageAccessory, removeMessageAccessory } from "@api/MessageAccessories";
|
|
|
|
import { addMessageDecoration, removeMessageDecoration } from "@api/MessageDecorations";
|
|
|
|
import { addMessageClickListener, addMessagePreEditListener, addMessagePreSendListener, removeMessageClickListener, removeMessagePreEditListener, removeMessagePreSendListener } from "@api/MessageEvents";
|
|
|
|
import { addMessagePopoverButton, removeMessagePopoverButton } from "@api/MessagePopover";
|
2023-05-06 01:36:00 +02:00
|
|
|
import { Settings } from "@api/Settings";
|
|
|
|
import { Logger } from "@utils/Logger";
|
2024-05-15 00:38:07 -03:00
|
|
|
import { canonicalizeFind } from "@utils/patches";
|
2025-01-23 02:48:44 +01:00
|
|
|
import { Patch, Plugin, PluginDef, ReporterTestable, StartAt } from "@utils/types";
|
2023-04-22 03:18:19 +02:00
|
|
|
import { FluxDispatcher } from "@webpack/common";
|
|
|
|
import { FluxEvents } from "@webpack/types";
|
2022-11-28 13:37:55 +01:00
|
|
|
|
2022-10-23 23:23:52 +02:00
|
|
|
import Plugins from "~plugins";
|
2022-10-17 20:18:25 +01:00
|
|
|
|
2022-11-07 21:05:33 +01:00
|
|
|
import { traceFunction } from "../debug/Tracer";
|
2022-08-29 18:11:44 +02:00
|
|
|
|
2022-08-29 20:27:47 +02:00
|
|
|
const logger = new Logger("PluginManager", "#a6d189");
|
|
|
|
|
2022-10-30 20:45:18 +01:00
|
|
|
export const PMLogger = logger;
|
2022-08-29 20:27:47 +02:00
|
|
|
export const plugins = Plugins;
|
2024-06-19 10:56:01 -04:00
|
|
|
export const patches = [] as Patch[];
|
2022-08-29 20:27:47 +02:00
|
|
|
|
2024-05-02 18:52:41 -03:00
|
|
|
/** Whether we have subscribed to flux events of all the enabled plugins when FluxDispatcher was ready */
|
|
|
|
let enabledPluginsSubscribedFlux = false;
|
2024-05-07 02:46:52 -03:00
|
|
|
const subscribedFluxEventsPlugins = new Set<string>();
|
2024-05-02 18:52:41 -03:00
|
|
|
|
2024-05-29 06:45:44 -03:00
|
|
|
const pluginsValues = Object.values(Plugins);
|
2022-11-12 15:09:02 +01:00
|
|
|
const settings = Settings.plugins;
|
|
|
|
|
2022-10-29 20:45:31 +02:00
|
|
|
export function isPluginEnabled(p: string) {
|
2022-11-12 15:09:02 +01:00
|
|
|
return (
|
|
|
|
Plugins[p]?.required ||
|
|
|
|
Plugins[p]?.isDependency ||
|
|
|
|
settings[p]?.enabled
|
|
|
|
) ?? false;
|
|
|
|
}
|
|
|
|
|
2024-05-29 06:45:44 -03:00
|
|
|
export function addPatch(newPatch: Omit<Patch, "plugin">, pluginName: string) {
|
|
|
|
const patch = newPatch as Patch;
|
|
|
|
patch.plugin = pluginName;
|
|
|
|
|
|
|
|
if (IS_REPORTER) {
|
|
|
|
delete patch.predicate;
|
|
|
|
delete patch.group;
|
|
|
|
}
|
|
|
|
|
2024-07-03 00:06:12 -03:00
|
|
|
if (patch.predicate && !patch.predicate()) return;
|
|
|
|
|
2024-05-29 06:45:44 -03:00
|
|
|
canonicalizeFind(patch);
|
|
|
|
if (!Array.isArray(patch.replacement)) {
|
|
|
|
patch.replacement = [patch.replacement];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IS_REPORTER) {
|
|
|
|
patch.replacement.forEach(r => {
|
|
|
|
delete r.predicate;
|
|
|
|
});
|
|
|
|
}
|
2022-11-12 15:09:02 +01:00
|
|
|
|
2024-09-06 09:40:10 -03:00
|
|
|
patch.replacement = patch.replacement.filter(({ predicate }) => !predicate || predicate());
|
|
|
|
|
2024-05-29 06:45:44 -03:00
|
|
|
patches.push(patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
function isReporterTestable(p: Plugin, part: ReporterTestable) {
|
|
|
|
return p.reporterTestable == null
|
|
|
|
? true
|
|
|
|
: (p.reporterTestable & part) === part;
|
|
|
|
}
|
|
|
|
|
2025-01-23 02:48:44 +01:00
|
|
|
const pluginKeysToBind: Array<keyof PluginDef & `${"on" | "render"}${string}`> = [
|
|
|
|
"onBeforeMessageEdit", "onBeforeMessageSend", "onMessageClick",
|
|
|
|
"renderChatBarButton", "renderMemberListDecorator", "renderMessageAccessory", "renderMessageDecoration", "renderMessagePopoverButton"
|
|
|
|
];
|
|
|
|
|
|
|
|
const neededApiPlugins = new Set<string>();
|
|
|
|
|
2024-05-29 06:45:44 -03:00
|
|
|
// First round-trip to mark and force enable dependencies
|
2023-03-25 15:20:00 +00:00
|
|
|
//
|
|
|
|
// 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
|
2024-05-29 06:45:44 -03:00
|
|
|
for (const p of pluginsValues) if (isPluginEnabled(p.name)) {
|
2022-11-12 15:09:02 +01:00
|
|
|
p.dependencies?.forEach(d => {
|
|
|
|
const dep = Plugins[d];
|
2024-05-29 06:45:44 -03:00
|
|
|
|
|
|
|
if (!dep) {
|
2022-11-12 15:09:02 +01:00
|
|
|
const error = new Error(`Plugin ${p.name} has unresolved dependency ${d}`);
|
2024-05-29 06:45:44 -03:00
|
|
|
|
|
|
|
if (IS_DEV) {
|
2022-11-12 15:09:02 +01:00
|
|
|
throw error;
|
2024-05-29 06:45:44 -03:00
|
|
|
}
|
|
|
|
|
2022-11-12 15:09:02 +01:00
|
|
|
logger.warn(error);
|
2024-05-29 06:45:44 -03:00
|
|
|
return;
|
2022-11-12 15:09:02 +01:00
|
|
|
}
|
2024-05-29 06:45:44 -03:00
|
|
|
|
|
|
|
settings[d].enabled = true;
|
|
|
|
dep.isDependency = true;
|
2022-11-12 15:09:02 +01:00
|
|
|
});
|
2024-09-18 01:26:25 +02:00
|
|
|
|
2025-01-23 02:48:44 +01:00
|
|
|
if (p.commands?.length) neededApiPlugins.add("CommandsAPI");
|
|
|
|
if (p.onBeforeMessageEdit || p.onBeforeMessageSend || p.onMessageClick) neededApiPlugins.add("MessageEventsAPI");
|
|
|
|
if (p.renderChatBarButton) neededApiPlugins.add("ChatInputButtonAPI");
|
|
|
|
if (p.renderMemberListDecorator) neededApiPlugins.add("MemberListDecoratorsAPI");
|
|
|
|
if (p.renderMessageAccessory) neededApiPlugins.add("MessageAccessoriesAPI");
|
|
|
|
if (p.renderMessageDecoration) neededApiPlugins.add("MessageDecorationsAPI");
|
|
|
|
if (p.renderMessagePopoverButton) neededApiPlugins.add("MessagePopoverAPI");
|
|
|
|
if (p.userProfileBadge) neededApiPlugins.add("BadgeAPI");
|
|
|
|
|
|
|
|
for (const key of pluginKeysToBind) {
|
|
|
|
p[key] &&= p[key].bind(p) as any;
|
2024-09-18 01:26:25 +02:00
|
|
|
}
|
2022-08-29 20:27:47 +02:00
|
|
|
}
|
|
|
|
|
2025-01-23 02:48:44 +01:00
|
|
|
for (const p of neededApiPlugins) {
|
|
|
|
Plugins[p].isDependency = true;
|
|
|
|
settings[p].enabled = true;
|
|
|
|
}
|
|
|
|
|
2023-01-13 17:15:45 -05: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 20:45:31 +02:00
|
|
|
if (p.patches && isPluginEnabled(p.name)) {
|
2024-05-29 06:45:44 -03:00
|
|
|
if (!IS_REPORTER || isReporterTestable(p, ReporterTestable.Patches)) {
|
|
|
|
for (const patch of p.patches) {
|
|
|
|
addPatch(patch, p.name);
|
2024-05-15 00:38:07 -03:00
|
|
|
}
|
2022-10-29 20:45:31 +02:00
|
|
|
}
|
2022-08-31 22:08:05 +02:00
|
|
|
}
|
2023-01-13 17:15:45 -05:00
|
|
|
}
|
2022-10-29 20:45:31 +02:00
|
|
|
|
2023-11-22 06:14:16 +01:00
|
|
|
export const startAllPlugins = traceFunction("startAllPlugins", function startAllPlugins(target: StartAt) {
|
|
|
|
logger.info(`Starting plugins (stage ${target})`);
|
2024-05-29 06:45:44 -03:00
|
|
|
for (const name in Plugins) {
|
|
|
|
if (isPluginEnabled(name) && (!IS_REPORTER || isReporterTestable(Plugins[name], ReporterTestable.Start))) {
|
2023-11-22 06:14:16 +01:00
|
|
|
const p = Plugins[name];
|
|
|
|
|
|
|
|
const startAt = p.startAt ?? StartAt.WebpackReady;
|
|
|
|
if (startAt !== target) continue;
|
|
|
|
|
2022-10-29 20:45:31 +02:00
|
|
|
startPlugin(Plugins[name]);
|
|
|
|
}
|
2024-05-29 06:45:44 -03:00
|
|
|
}
|
2022-11-07 21:05:33 +01:00
|
|
|
});
|
2022-08-31 22:08:05 +02:00
|
|
|
|
2022-10-23 19:09:02 +01:00
|
|
|
export function startDependenciesRecursive(p: Plugin) {
|
|
|
|
let restartNeeded = false;
|
|
|
|
const failures: string[] = [];
|
2024-05-29 06:45:44 -03:00
|
|
|
|
|
|
|
p.dependencies?.forEach(d => {
|
|
|
|
if (!settings[d].enabled) {
|
|
|
|
const dep = Plugins[d];
|
|
|
|
startDependenciesRecursive(dep);
|
|
|
|
|
2022-10-23 19:09:02 +01:00
|
|
|
// If the plugin has patches, don't start the plugin, just enable it.
|
2024-05-29 06:45:44 -03:00
|
|
|
settings[d].enabled = true;
|
|
|
|
dep.isDependency = true;
|
|
|
|
|
|
|
|
if (dep.patches) {
|
|
|
|
logger.warn(`Enabling dependency ${d} requires restart.`);
|
2022-10-23 19:09:02 +01:00
|
|
|
restartNeeded = true;
|
2022-10-29 20:45:31 +02:00
|
|
|
return;
|
2022-10-23 19:09:02 +01:00
|
|
|
}
|
2024-05-29 06:45:44 -03:00
|
|
|
|
|
|
|
const result = startPlugin(dep);
|
|
|
|
if (!result) failures.push(d);
|
2022-10-23 19:09:02 +01:00
|
|
|
}
|
2022-10-29 20:45:31 +02:00
|
|
|
});
|
2024-05-29 06:45:44 -03:00
|
|
|
|
2022-10-23 19:09:02 +01:00
|
|
|
return { restartNeeded, failures };
|
|
|
|
}
|
|
|
|
|
2024-05-02 18:52:41 -03:00
|
|
|
export function subscribePluginFluxEvents(p: Plugin, fluxDispatcher: typeof FluxDispatcher) {
|
2024-05-29 06:45:44 -03:00
|
|
|
if (p.flux && !subscribedFluxEventsPlugins.has(p.name) && (!IS_REPORTER || isReporterTestable(p, ReporterTestable.FluxEvents))) {
|
2024-05-07 02:46:52 -03:00
|
|
|
subscribedFluxEventsPlugins.add(p.name);
|
|
|
|
|
2024-05-02 18:52:41 -03:00
|
|
|
logger.debug("Subscribing to flux events of plugin", p.name);
|
|
|
|
for (const [event, handler] of Object.entries(p.flux)) {
|
2024-06-21 22:42:25 +02:00
|
|
|
const wrappedHandler = p.flux[event] = function () {
|
|
|
|
try {
|
|
|
|
const res = handler.apply(p, arguments as any);
|
|
|
|
return res instanceof Promise
|
|
|
|
? res.catch(e => logger.error(`${p.name}: Error while handling ${event}\n`, e))
|
|
|
|
: res;
|
|
|
|
} catch (e) {
|
|
|
|
logger.error(`${p.name}: Error while handling ${event}\n`, e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fluxDispatcher.subscribe(event as FluxEvents, wrappedHandler);
|
2024-05-02 18:52:41 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function unsubscribePluginFluxEvents(p: Plugin, fluxDispatcher: typeof FluxDispatcher) {
|
|
|
|
if (p.flux) {
|
2024-05-07 02:46:52 -03:00
|
|
|
subscribedFluxEventsPlugins.delete(p.name);
|
|
|
|
|
2024-05-02 18:52:41 -03:00
|
|
|
logger.debug("Unsubscribing from flux events of plugin", p.name);
|
|
|
|
for (const [event, handler] of Object.entries(p.flux)) {
|
|
|
|
fluxDispatcher.unsubscribe(event as FluxEvents, handler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function subscribeAllPluginsFluxEvents(fluxDispatcher: typeof FluxDispatcher) {
|
|
|
|
enabledPluginsSubscribedFlux = true;
|
|
|
|
|
|
|
|
for (const name in Plugins) {
|
|
|
|
if (!isPluginEnabled(name)) continue;
|
|
|
|
subscribePluginFluxEvents(Plugins[name], fluxDispatcher);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:05:33 +01:00
|
|
|
export const startPlugin = traceFunction("startPlugin", function startPlugin(p: Plugin) {
|
2025-01-23 02:48:44 +01:00
|
|
|
const {
|
|
|
|
name, commands, contextMenus, userProfileBadge,
|
|
|
|
onBeforeMessageEdit, onBeforeMessageSend, onMessageClick,
|
|
|
|
renderChatBarButton, renderMemberListDecorator, renderMessageAccessory, renderMessageDecoration, renderMessagePopoverButton
|
|
|
|
} = p;
|
2023-04-22 03:18:19 +02:00
|
|
|
|
2022-10-06 01:11:32 +03:00
|
|
|
if (p.start) {
|
2023-04-22 03:18:19 +02:00
|
|
|
logger.info("Starting plugin", name);
|
2022-10-06 01:11:32 +03:00
|
|
|
if (p.started) {
|
2023-04-22 03:18:19 +02:00
|
|
|
logger.warn(`${name} already started`);
|
2022-10-06 01:11:32 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
p.start();
|
|
|
|
} catch (e) {
|
2023-04-22 03:18:19 +02:00
|
|
|
logger.error(`Failed to start ${name}\n`, e);
|
2022-10-06 01:11:32 +03:00
|
|
|
return false;
|
|
|
|
}
|
2022-10-01 22:09:20 +02:00
|
|
|
}
|
|
|
|
|
2024-05-15 21:46:09 -04:00
|
|
|
p.started = true;
|
|
|
|
|
2023-04-22 03:18:19 +02:00
|
|
|
if (commands?.length) {
|
2024-05-02 18:52:41 -03:00
|
|
|
logger.debug("Registering commands of plugin", name);
|
2023-04-22 03:18:19 +02:00
|
|
|
for (const cmd of commands) {
|
2022-10-06 01:11:32 +03:00
|
|
|
try {
|
2023-04-22 03:18:19 +02:00
|
|
|
registerCommand(cmd, name);
|
2022-10-06 01:11:32 +03:00
|
|
|
} catch (e) {
|
|
|
|
logger.error(`Failed to register command ${cmd.name}\n`, e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2023-04-22 03:18:19 +02:00
|
|
|
}
|
2022-10-06 01:11:32 +03:00
|
|
|
|
2024-05-02 18:52:41 -03:00
|
|
|
if (enabledPluginsSubscribedFlux) {
|
|
|
|
subscribePluginFluxEvents(p, FluxDispatcher);
|
2022-08-31 22:08:05 +02:00
|
|
|
}
|
2022-10-06 01:11:32 +03:00
|
|
|
|
2024-03-07 11:06:24 +01:00
|
|
|
if (contextMenus) {
|
2024-05-02 18:52:41 -03:00
|
|
|
logger.debug("Adding context menus patches of plugin", name);
|
2024-03-07 11:06:24 +01:00
|
|
|
for (const navId in contextMenus) {
|
|
|
|
addContextMenuPatch(navId, contextMenus[navId]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-23 02:48:44 +01:00
|
|
|
if (userProfileBadge) addProfileBadge(userProfileBadge);
|
|
|
|
|
|
|
|
if (onBeforeMessageEdit) addMessagePreEditListener(onBeforeMessageEdit);
|
|
|
|
if (onBeforeMessageSend) addMessagePreSendListener(onBeforeMessageSend);
|
|
|
|
if (onMessageClick) addMessageClickListener(onMessageClick);
|
|
|
|
|
|
|
|
if (renderChatBarButton) addChatBarButton(name, renderChatBarButton);
|
|
|
|
if (renderMemberListDecorator) addMemberListDecorator(name, renderMemberListDecorator);
|
|
|
|
if (renderMessageDecoration) addMessageDecoration(name, renderMessageDecoration);
|
|
|
|
if (renderMessageAccessory) addMessageAccessory(name, renderMessageAccessory);
|
|
|
|
if (renderMessagePopoverButton) addMessagePopoverButton(name, renderMessagePopoverButton);
|
|
|
|
|
2022-10-06 01:11:32 +03:00
|
|
|
return true;
|
2022-11-07 21:05:33 +01:00
|
|
|
}, p => `startPlugin ${p.name}`);
|
2022-08-31 22:08:05 +02:00
|
|
|
|
2022-11-07 21:05:33 +01:00
|
|
|
export const stopPlugin = traceFunction("stopPlugin", function stopPlugin(p: Plugin) {
|
2025-01-23 02:48:44 +01:00
|
|
|
const {
|
|
|
|
name, commands, contextMenus, userProfileBadge,
|
|
|
|
onBeforeMessageEdit, onBeforeMessageSend, onMessageClick,
|
|
|
|
renderChatBarButton, renderMemberListDecorator, renderMessageAccessory, renderMessageDecoration, renderMessagePopoverButton
|
|
|
|
} = p;
|
2024-05-15 21:46:09 -04:00
|
|
|
|
2022-10-06 01:11:32 +03:00
|
|
|
if (p.stop) {
|
2023-04-22 03:18:19 +02:00
|
|
|
logger.info("Stopping plugin", name);
|
2022-10-06 01:11:32 +03:00
|
|
|
if (!p.started) {
|
2023-04-22 03:18:19 +02:00
|
|
|
logger.warn(`${name} already stopped`);
|
2022-10-06 01:11:32 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
p.stop();
|
|
|
|
} catch (e) {
|
2023-04-22 03:18:19 +02:00
|
|
|
logger.error(`Failed to stop ${name}\n`, e);
|
2022-10-06 01:11:32 +03:00
|
|
|
return false;
|
|
|
|
}
|
2022-10-01 22:09:20 +02:00
|
|
|
}
|
2022-10-06 01:11:32 +03:00
|
|
|
|
2024-05-15 21:46:09 -04:00
|
|
|
p.started = false;
|
|
|
|
|
2023-04-22 03:18:19 +02:00
|
|
|
if (commands?.length) {
|
2024-05-02 18:52:41 -03:00
|
|
|
logger.debug("Unregistering commands of plugin", name);
|
2023-04-22 03:18:19 +02:00
|
|
|
for (const cmd of commands) {
|
2022-10-06 01:11:32 +03:00
|
|
|
try {
|
|
|
|
unregisterCommand(cmd.name);
|
|
|
|
} catch (e) {
|
|
|
|
logger.error(`Failed to unregister command ${cmd.name}\n`, e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-08-29 20:27:47 +02:00
|
|
|
}
|
2022-10-06 01:11:32 +03:00
|
|
|
|
2024-05-02 18:52:41 -03:00
|
|
|
unsubscribePluginFluxEvents(p, FluxDispatcher);
|
2023-04-22 03:18:19 +02:00
|
|
|
|
2024-03-07 11:06:24 +01:00
|
|
|
if (contextMenus) {
|
2024-05-02 18:52:41 -03:00
|
|
|
logger.debug("Removing context menus patches of plugin", name);
|
2024-03-07 11:06:24 +01:00
|
|
|
for (const navId in contextMenus) {
|
|
|
|
removeContextMenuPatch(navId, contextMenus[navId]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-23 02:48:44 +01:00
|
|
|
if (userProfileBadge) removeProfileBadge(userProfileBadge);
|
|
|
|
|
|
|
|
if (onBeforeMessageEdit) removeMessagePreEditListener(onBeforeMessageEdit);
|
|
|
|
if (onBeforeMessageSend) removeMessagePreSendListener(onBeforeMessageSend);
|
|
|
|
if (onMessageClick) removeMessageClickListener(onMessageClick);
|
|
|
|
|
|
|
|
if (renderChatBarButton) removeChatBarButton(name);
|
|
|
|
if (renderMemberListDecorator) removeMemberListDecorator(name);
|
|
|
|
if (renderMessageDecoration) removeMessageDecoration(name);
|
|
|
|
if (renderMessageAccessory) removeMessageAccessory(name);
|
|
|
|
if (renderMessagePopoverButton) removeMessagePopoverButton(name);
|
|
|
|
|
2022-10-06 01:11:32 +03:00
|
|
|
return true;
|
2022-11-07 21:05:33 +01:00
|
|
|
}, p => `stopPlugin ${p.name}`);
|