diff --git a/admin_ext/ban.py b/admin_ext/ban.py index 849700f..a1f9ff6 100644 --- a/admin_ext/ban.py +++ b/admin_ext/ban.py @@ -15,7 +15,7 @@ class Extension: await interaction.response.defer(thinking=True) return await interaction.followup.send(f'{await self.__call__(profile, reason, minutes, interaction.user)}', ephemeral=False) - async def __call__(self, profile, reason, minutes, requester): - steam64 = await self.core.GetSteam64OfDiscord(requester) + async def __call__(self, profile, reason, minutes, discord_user): + steam64 = await self.core.GetSteam64OfDiscord(discord_user) player = await self.core.GetPlayer(profile, steam64, False) return await player.ban(reason, minutes) \ No newline at end of file diff --git a/admin_ext/kick.py b/admin_ext/kick.py index d4e3e4d..2f6ba65 100644 --- a/admin_ext/kick.py +++ b/admin_ext/kick.py @@ -14,7 +14,7 @@ class Extension: await interaction.response.defer(thinking=True) return await interaction.followup.send(f'{await self.__call__(profile, reason, interaction.user)}', ephemeral=False) - async def __call__(self, profile, reason, requester): - steam64 = await self.core.GetSteam64OfDiscord(requester) + async def __call__(self, profile, reason, discord_user): + steam64 = await self.core.GetSteam64OfDiscord(discord_user) player = await self.core.GetPlayer(profile, steam64, False) return await player.kick(reason) \ No newline at end of file diff --git a/admin_ext/unban.py b/admin_ext/unban.py index 18d94a5..43bb842 100644 --- a/admin_ext/unban.py +++ b/admin_ext/unban.py @@ -13,7 +13,7 @@ class Extension: await interaction.response.defer(thinking=True) return await interaction.followup.send(f'{await self.__call__(profile, interaction.user)}', ephemeral=False) - async def __call__(self, profile, requester): - steam64 = await self.core.GetSteam64OfDiscord(requester) + async def __call__(self, profile, discord_user): + steam64 = await self.core.GetSteam64OfDiscord(discord_user) player = await self.core.GetPlayer(profile, steam64, False) return await player.unban() \ No newline at end of file diff --git a/other_ext/webhook_helper.py b/other_ext/webhook_helper.py index d63afd1..6a57a86 100644 --- a/other_ext/webhook_helper.py +++ b/other_ext/webhook_helper.py @@ -20,16 +20,16 @@ class Extension: self.track_guild_id = core.main_server_id self.webhook_reaction_translate = { - "😘":('ban', {"profile":"", "reason":"", "minutes":0, "requester":""}), - "🔨":('ban', {"profile":"", "reason":"", "minutes":30, "requester":""}), - "⚒️":('ban', {"profile":"", "reason":"", "minutes":120, "requester":""}), + "😘":('ban', {"profile":"", "reason":"", "minutes":0, "discord_user":None}), + "🔨":('ban', {"profile":"", "reason":"", "minutes":30, "discord_user":None}), + "⚒️":('ban', {"profile":"", "reason":"", "minutes":120, "discord_user":None}), "📨":(self.no_reason, {"requester":""}), - "🦵":("kick", {"profile":""}), + "🦵":("kick", {"profile":"", "discord_user":None}), "🔇":("mute", {"profile":""}), - "😇":("unban", {"profile":""}), - "hueglot:713139400028061767":("kick", {"profile":"", "requester_profile":""}), - "🔍":("profile", {"profile":""}), - "🔎":("unban", {"profile":"", "requester_profile":""}) + "😇":("unban", {"profile":"", "discord_user":None}), + "<:hueglot:713139400028061767>":("kick", {"profile":"", "requester_profile":"", "discord_user":None}), + "🔍":("profile", {"profile":"", "discord_user":None}), + "🔎":("unban", {"profile":"", "requester_profile":"", "discord_user":None}) } @core.listen() @@ -50,8 +50,6 @@ class Extension: message: discord.Message = await channel.fetch_message(payload.message_id) user: discord.User = await self.core.fetch_user(payload.user_id) - print(payload.emoji, message.webhook_id, self.core.user.id == payload.user_id, message.guild.get_member(user.id).get_role(self.track_role_id)) - if message.webhook_id != self.track_webhook_id: return @@ -61,10 +59,14 @@ class Extension: if not message.guild.get_member(user.id).get_role(self.track_role_id): return + print(payload.emoji, message.webhook_id, self.core.user.id == payload.user_id, message.guild.get_member(user.id).get_role(self.track_role_id)) + if str(payload.emoji) in self.webhook_reaction_translate.keys(): executor, kwargs = self.webhook_reaction_translate[str(payload.emoji)] if "requester" in kwargs: kwargs["requester"] = user.id + if "discord_user" in kwargs: + kwargs["discord_user"] = user if "reason" in kwargs and not user.id in self.no_reason: def check(msg: discord.Message): return msg.author == user and msg.channel == message.channel @@ -82,7 +84,7 @@ class Extension: print("Cannot delete request reason message, error: " +err) #не ну это пиздец - if msg.content.split(" ") > 0 and msg.content.lower().split(" ")[0] == "отмена": + if len(msg.content.split(" ")) > 0 and msg.content.lower().split(" ")[0] == "отмена": return await message.channel.send(content=f"{user.mention}!\nДействие {payload.emoji} отменено по твоей воле", delete_after=60) else: kwargs["reason"] = msg.content @@ -93,6 +95,7 @@ class Extension: kwargs["profile"] = message.embeds[0].url if "requester_profile" in kwargs: kwargs["profile"] = message.embeds[0].author.url + del kwargs["requester_profile"] try: if type(executor) == str: