2022-10-09 16:18:18 +00:00
|
|
|
import definePlugin from "../utils/types";
|
|
|
|
import { Devs } from "../utils/constants";
|
|
|
|
import { Message } from "discord-types/general";
|
2022-10-09 16:27:50 +00:00
|
|
|
import { FluxDispatcher } from "../webpack/common";
|
2022-10-09 16:18:18 +00:00
|
|
|
|
|
|
|
interface IMessageCreate {
|
|
|
|
type: "MESSAGE_CREATE";
|
|
|
|
channelId: string;
|
|
|
|
isPushNotification: boolean;
|
|
|
|
optimistic: boolean;
|
|
|
|
message: Message;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MOYAI_URL =
|
|
|
|
"https://github.com/MeguminSama/VencordPlugins/raw/main/plugins/moyai/moyai.mp3";
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "Moyai",
|
|
|
|
authors: [Devs.Megu],
|
|
|
|
description: "🗿🗿🗿🗿🗿🗿🗿🗿",
|
|
|
|
execute: async (event: IMessageCreate) => {
|
|
|
|
if (event?.type !== "MESSAGE_CREATE") return;
|
|
|
|
if (!event.message?.content) return;
|
|
|
|
if (event.message.state === "SENDING") return;
|
|
|
|
if (event.optimistic) return;
|
|
|
|
|
2022-10-09 16:27:50 +00:00
|
|
|
const isInChannel =
|
2022-10-09 16:18:18 +00:00
|
|
|
window.location.pathname.startsWith("/channels/");
|
2022-10-09 16:27:50 +00:00
|
|
|
if (!isInChannel) return;
|
2022-10-09 16:18:18 +00:00
|
|
|
|
|
|
|
const channelId = window.location.pathname.split("/")[3];
|
|
|
|
if (!channelId || channelId !== event.channelId) return;
|
|
|
|
|
|
|
|
const moyaiCount = messageContainsMoyai(event.message.content);
|
|
|
|
if (!moyaiCount) return;
|
|
|
|
|
|
|
|
for (let i = 0; i < moyaiCount; i++) {
|
|
|
|
const audioElement = document.createElement("audio");
|
|
|
|
audioElement.src = MOYAI_URL;
|
|
|
|
audioElement.play();
|
|
|
|
await new Promise(resolve => setTimeout(resolve, 300));
|
|
|
|
}
|
|
|
|
},
|
2022-10-09 16:27:50 +00:00
|
|
|
start() {
|
|
|
|
FluxDispatcher.subscribe("MESSAGE_CREATE", this.execute);
|
|
|
|
},
|
|
|
|
stop() {
|
|
|
|
FluxDispatcher.unsubscribe("MESSAGE_CREATE", this.execute);
|
|
|
|
}
|
2022-10-09 16:18:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const EMOJI_NAME_REGEX = /<a?:(\w+):\d+>/g;
|
|
|
|
|
|
|
|
function messageContainsMoyai(message: string): number {
|
|
|
|
// get number of 🗿 in a string
|
|
|
|
let moyaiCount = (message.match(/🗿/g) || []).length;
|
|
|
|
|
|
|
|
// get number of emojis in message that are called "moyai" or "moai"
|
|
|
|
const emojiNames = message.matchAll(EMOJI_NAME_REGEX);
|
|
|
|
|
|
|
|
if (emojiNames) {
|
|
|
|
for (const emojiName of emojiNames) {
|
|
|
|
if (!emojiName[1]) continue;
|
|
|
|
let name = emojiName[1];
|
|
|
|
|
|
|
|
// If emoji starts or ends with (moyai|moai)
|
|
|
|
if (/^(moyai|moai)/i.test(name) || /(moyai|moai)$/i.test(name)) {
|
|
|
|
moyaiCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maximum moyai...
|
2022-10-09 16:27:50 +00:00
|
|
|
return Math.min(moyaiCount, 10);
|
2022-10-09 16:18:18 +00:00
|
|
|
}
|