2023-06-25 01:57:40 +02:00
|
|
|
|
|
|
|
import { Message, MessageReaction, User } from "discord.js";
|
|
|
|
import { messageIsVoteMessage } from "../helper/messageIdentifiers";
|
|
|
|
import { logger, newRequestId, noGuildId } from "../logger";
|
2023-06-25 22:49:21 +02:00
|
|
|
import { NONE_OF_THAT } from "../constants";
|
|
|
|
import { client } from "../..";
|
|
|
|
import { getMembersWithRoleFromGuild } from "../helper/roleFilter";
|
|
|
|
import { config } from "../configuration";
|
2023-06-25 01:57:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
export const name = 'messageReactionAdd'
|
|
|
|
|
|
|
|
export async function execute(messageReaction: MessageReaction, user: User) {
|
2023-06-25 22:49:21 +02:00
|
|
|
if (user.id == client.user?.id)
|
|
|
|
logger.info('Skipping bot reaction')
|
|
|
|
|
2023-06-25 01:57:40 +02:00
|
|
|
const requestId = newRequestId
|
|
|
|
const guildId = messageReaction.message.inGuild() ? messageReaction.message.guildId : noGuildId
|
|
|
|
const reactedUponMessage: Message = messageReaction.message.partial ? await messageReaction.message.fetch() : messageReaction.message
|
2023-06-25 22:49:21 +02:00
|
|
|
if (!messageReaction.message.guild) return 'No guild'
|
|
|
|
|
|
|
|
logger.info(`Got reaction on message`, { requestId, guildId })
|
|
|
|
logger.debug(`reactedUponMessage payload: ${JSON.stringify(reactedUponMessage)}`)
|
2023-06-25 01:57:40 +02:00
|
|
|
|
|
|
|
if (messageIsVoteMessage(reactedUponMessage)) {
|
2023-06-25 22:49:21 +02:00
|
|
|
logger.debug(`${reactedUponMessage.id} is vote message`, { requestId, guildId })
|
|
|
|
if (messageReaction.message.reactions.cache.find(reaction => reaction.emoji.toString() == NONE_OF_THAT)) {
|
|
|
|
const watcherRoleMember = await getMembersWithRoleFromGuild(config.bot.announcement_role, messageReaction.message.guild)
|
|
|
|
logger.info("ROLE MEMBERS " + JSON.stringify(watcherRoleMember), { requestId, guildId })
|
|
|
|
const watcherRoleMemberCount = watcherRoleMember.size
|
|
|
|
logger.info(`MEMBER COUNT: ${watcherRoleMemberCount}`, { requestId, guildId })
|
|
|
|
let noneOfThatReactions = messageReaction.message.reactions.cache.get(NONE_OF_THAT)?.users.cache.filter(x => x.id !== client.user?.id).size ?? 0
|
|
|
|
|
|
|
|
const memberThreshold = (watcherRoleMemberCount / 2)
|
|
|
|
logger.info(`Reroll ${noneOfThatReactions} > ${memberThreshold} ?`, { requestId, guildId })
|
|
|
|
if (noneOfThatReactions > memberThreshold) {
|
|
|
|
logger.info('Starting poll reroll', { requestId, guildId })
|
|
|
|
messageReaction.message.edit((messageReaction.message.content ?? "").concat('\nDiese Abstimmung muss wiederholt werden.'))
|
|
|
|
}
|
|
|
|
logger.info(`No reroll`, { requestId, guildId })
|
|
|
|
}
|
2023-06-25 01:57:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|