mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-23 21:37:03 -04:00
64 lines
2.3 KiB
TypeScript
64 lines
2.3 KiB
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2023 Vendicated, MrDiamond, ant0n, and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { definePluginSettings } from "@api/Settings";
|
|
import { Devs, EquicordDevs } from "@utils/constants";
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
import { MessageStore, UserStore } from "@webpack/common";
|
|
import { MessageJSON } from "discord-types/general";
|
|
|
|
export const settings = definePluginSettings({
|
|
alwaysPingOnReply: {
|
|
type: OptionType.BOOLEAN,
|
|
description: "Always get pinged when someone replies to your messages",
|
|
default: false,
|
|
},
|
|
replyPingWhitelist: {
|
|
type: OptionType.STRING,
|
|
description: "Comma-separated list of User IDs to always receive reply pings from",
|
|
default: "",
|
|
disabled: () => settings.store.alwaysPingOnReply,
|
|
}
|
|
});
|
|
|
|
export default definePlugin({
|
|
name: "ReplyPingControl",
|
|
description: "Control whether to always or never get pinged on message replies, with a whitelist feature",
|
|
authors: [Devs.ant0n, EquicordDevs.MrDiamond],
|
|
settings,
|
|
|
|
patches: [{
|
|
find: "_channelMessages",
|
|
replacement: {
|
|
match: /receiveMessage\((\i)\)\{/,
|
|
replace: "$&$self.modifyMentions($1);"
|
|
}
|
|
}],
|
|
|
|
modifyMentions(message: MessageJSON) {
|
|
const user = UserStore.getCurrentUser();
|
|
if (message.author.id === user.id) return;
|
|
|
|
const repliedMessage = this.getRepliedMessage(message);
|
|
if (!repliedMessage || repliedMessage.author.id !== user.id) return;
|
|
|
|
const whitelist = settings.store.replyPingWhitelist.split(",").map(id => id.trim());
|
|
const isWhitelisted = settings.store.replyPingWhitelist.includes(message.author.id);
|
|
|
|
if (isWhitelisted || settings.store.alwaysPingOnReply) {
|
|
if (!message.mentions.some(mention => mention.id === user.id)) {
|
|
message.mentions.push(user as any);
|
|
}
|
|
} else {
|
|
message.mentions = message.mentions.filter(mention => mention.id !== user.id);
|
|
}
|
|
},
|
|
|
|
getRepliedMessage(message: MessageJSON) {
|
|
const ref = message.message_reference;
|
|
return ref && MessageStore.getMessage(ref.channel_id, ref.message_id);
|
|
},
|
|
});
|