Vencord/src/plugins/nitroBypass.ts

142 lines
5.3 KiB
TypeScript
Raw Normal View History

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-10-22 16:18:41 +00:00
import { addPreEditListener, addPreSendListener, removePreEditListener,removePreSendListener } from "../api/MessageEvents";
import { Devs } from "../utils/constants";
2022-10-22 16:18:41 +00:00
import definePlugin, { OptionType } from "../utils/types";
2022-10-21 11:37:53 +00:00
import { Settings } from "../Vencord";
2022-10-22 16:18:41 +00:00
import { findByProps } from "../webpack";
import { UserStore } from "../webpack/common";
2022-08-31 18:53:36 +00:00
export default definePlugin({
2022-10-01 15:04:57 +00:00
name: "NitroBypass",
2022-10-01 00:27:28 +00:00
authors: [Devs.Arjix],
2022-08-31 18:53:36 +00:00
description: "Allows you to stream in nitro quality and send fake emojis.",
2022-08-31 18:58:21 +00:00
dependencies: ["MessageEventsAPI"],
2022-08-31 18:53:36 +00:00
patches: [
{
find: "canUseAnimatedEmojis:function",
2022-10-21 11:37:53 +00:00
predicate: () => Settings.plugins.NitroBypass.enableEmojiBypass === true,
2022-08-31 18:53:36 +00:00
replacement: [
"canUseAnimatedEmojis",
2022-10-21 11:37:53 +00:00
"canUseEmojisEverywhere"
].map(func => {
return {
match: new RegExp(`${func}:function\\(.+?}`),
replace: `${func}:function (e) { return true; }`
};
})
},
{
find: "canUseAnimatedEmojis:function",
predicate: () => Settings.plugins.NitroBypass.enableStreamQualityBypass === true,
replacement: [
2022-10-19 10:27:20 +00:00
"canUseHighVideoUploadQuality",
"canStreamHighQuality",
"canStreamMidQuality"
2022-08-31 18:53:36 +00:00
].map(func => {
return {
match: new RegExp(`${func}:function\\(.+?}`),
replace: `${func}:function (e) { return true; }`
2022-08-31 18:55:58 +00:00
};
2022-08-31 18:53:36 +00:00
})
},
2022-10-01 15:04:57 +00:00
{
find: "STREAM_FPS_OPTION.format",
2022-10-21 11:37:53 +00:00
predicate: () => Settings.plugins.NitroBypass.enableStreamQualityBypass === true,
2022-10-01 15:04:57 +00:00
replacement: {
match: /(userPremiumType|guildPremiumTier):.{0,10}TIER_\d,?/g,
replace: ""
}
}
2022-08-31 18:53:36 +00:00
],
2022-10-21 11:37:53 +00:00
options: {
enableEmojiBypass: {
description: "Allow sending fake emojis",
type: OptionType.BOOLEAN,
default: true,
restartNeeded: true,
},
enableStreamQualityBypass: {
description: "Allow streaming in nitro quality",
type: OptionType.BOOLEAN,
default: true,
restartNeeded: true,
}
},
2022-10-01 15:04:57 +00:00
get guildId() {
return window.location.href.split("channels/")[1].split("/")[0];
},
get canUseEmotes() {
return Boolean(UserStore.getCurrentUser().premiumType);
},
2022-08-31 18:53:36 +00:00
start() {
2022-10-21 11:37:53 +00:00
if (!Settings.plugins.NitroBypass.enableEmojiBypass) {
return;
}
2022-10-01 15:04:57 +00:00
if (this.canUseEmotes) {
console.info("[NitroBypass] Skipping start because you have nitro");
return;
}
2022-08-31 18:53:36 +00:00
2022-10-01 15:04:57 +00:00
const { getCustomEmojiById } = findByProps("getCustomEmojiById");
2022-08-31 18:53:36 +00:00
function getWordBoundary(origStr, offset) {
return (!origStr[offset] || /\s/.test(origStr[offset])) ? "" : " ";
}
this.preSend = addPreSendListener((_, messageObj) => {
2022-10-08 18:36:57 +00:00
const { guildId } = this;
2022-08-31 18:53:36 +00:00
for (const emoji of messageObj.validNonShortcutEmojis) {
if (!emoji.require_colons) continue;
if (emoji.guildId === guildId && !emoji.animated) continue;
const emojiString = `<${emoji.animated ? "a" : ""}:${emoji.originalName || emoji.name}:${emoji.id}>`;
const url = emoji.url.replace(/\?size=[0-9]+/, "?size=48");
messageObj.content = messageObj.content.replace(emojiString, (match, offset, origStr) => {
2022-10-05 22:11:32 +00:00
return `${getWordBoundary(origStr, offset - 1)}${url}${getWordBoundary(origStr, offset + match.length)}`;
});
2022-08-31 18:53:36 +00:00
}
2022-08-31 18:55:58 +00:00
});
2022-10-01 15:04:57 +00:00
this.preEdit = addPreEditListener((_, __, messageObj) => {
2022-10-08 18:36:57 +00:00
const { guildId } = this;
2022-08-31 18:53:36 +00:00
for (const [emojiStr, _, emojiId] of messageObj.content.matchAll(/(?<!\\)<a?:(\w+):(\d+)>/ig)) {
const emoji = getCustomEmojiById(emojiId);
if (emoji == null || (emoji.guildId === guildId && !emoji.animated)) continue;
if (!emoji.require_colons) continue;
2022-08-31 18:53:36 +00:00
const url = emoji.url.replace(/\?size=[0-9]+/, "?size=48");
messageObj.content = messageObj.content.replace(emojiStr, (match, offset, origStr) => {
2022-10-05 22:11:32 +00:00
return `${getWordBoundary(origStr, offset - 1)}${url}${getWordBoundary(origStr, offset + match.length)}`;
});
2022-08-31 18:53:36 +00:00
}
2022-08-31 18:55:58 +00:00
});
2022-08-31 18:53:36 +00:00
},
stop() {
removePreSendListener(this.preSend);
removePreEditListener(this.preEdit);
}
2022-08-31 18:55:58 +00:00
});