# ╔══════════════════════════════════════════════════════════════════╗ # ║ ║ # ║ +-+-+-+-+-+-+-+-+ ║ # ║ |H|e|x|a|H|o|s|t| ║ # ║ +-+-+-+-+-+-+-+-+ ║ # ║ ║ # ║ © 2026 HexaHost — All Rights Reserved ║ # ║ ║ # ║ discord ── https://discord.gg/hexahost ║ # ║ github ── https://github.com/theoneandonlymace ║ # ║ ║ # ╚══════════════════════════════════════════════════════════════════╝ from utils.db_paths import db_path from utils.automod_settings import get_thresholds import discord from utils.emoji import TICK from discord.ext import commands import aiosqlite import asyncio from datetime import timedelta class AntiSpam(commands.Cog): def __init__(self, bot): self.bot = bot self.recent_messages = {} async def is_automod_enabled(self, guild_id): async with aiosqlite.connect(db_path("automod.db")) as db: cursor = await db.execute("SELECT enabled FROM automod WHERE guild_id = ?", (guild_id,)) result = await cursor.fetchone() return result is not None and result[0] == 1 async def is_anti_spam_enabled(self, guild_id): async with aiosqlite.connect(db_path("automod.db")) as db: cursor = await db.execute("SELECT punishment FROM automod_punishments WHERE guild_id = ? AND event = 'Anti spam'", (guild_id,)) result = await cursor.fetchone() return result is not None async def get_ignored_channels(self, guild_id): async with aiosqlite.connect(db_path("automod.db")) as db: cursor = await db.execute("SELECT id FROM automod_ignored WHERE guild_id = ? AND type = 'channel'", (guild_id,)) return [row[0] for row in await cursor.fetchall()] async def get_ignored_roles(self, guild_id): async with aiosqlite.connect(db_path("automod.db")) as db: cursor = await db.execute("SELECT id FROM automod_ignored WHERE guild_id = ? AND type = 'role'", (guild_id,)) return [row[0] for row in await cursor.fetchall()] async def get_punishment(self, guild_id): async with aiosqlite.connect(db_path("automod.db")) as db: cursor = await db.execute("SELECT punishment FROM automod_punishments WHERE guild_id = ? AND event = 'Anti spam'", (guild_id,)) result = await cursor.fetchone() return result[0] if result else None async def log_action(self, guild, user, channel, action, reason): async with aiosqlite.connect(db_path("automod.db")) as db: cursor = await db.execute("SELECT log_channel FROM automod_logging WHERE guild_id = ?", (guild.id,)) log_channel_id = await cursor.fetchone() if log_channel_id and log_channel_id[0]: log_channel = guild.get_channel(log_channel_id[0]) if log_channel: embed = discord.Embed(title="Automod Log: Anti-Spam", color=0xFF0000) embed.add_field(name="User", value=user.mention, inline=False) embed.add_field(name="Action", value=action, inline=False) embed.add_field(name="Channel", value=channel.mention, inline=False) embed.add_field(name="Reason", value=reason, inline=False) embed.set_footer(text=f"User ID: {user.id}") avatar_url = user.avatar.url if user.avatar else user.default_avatar.url embed.set_thumbnail(url=avatar_url) embed.timestamp=discord.utils.utcnow() await log_channel.send(embed=embed) @commands.Cog.listener() async def on_message(self, message): if message.author.bot: return guild = message.guild user = message.author channel = message.channel guild_id = guild.id if not await self.is_automod_enabled(guild_id) or not await self.is_anti_spam_enabled(guild_id): return if user == guild.owner or user == self.bot.user: return ignored_channels = await self.get_ignored_channels(guild_id) if channel.id in ignored_channels: return ignored_roles = await self.get_ignored_roles(guild_id) if any(role.id in ignored_roles for role in user.roles): return current_time = message.created_at.timestamp() th = await get_thresholds(guild_id, "anti_spam") window = float(th.get("window_seconds", 10)) spam_threshold = int(th.get("max_messages", 5)) mute_minutes = float(th.get("mute_minutes", 12)) user_messages = self.recent_messages.get(user.id, []) user_messages = [msg for msg in user_messages if current_time - msg < window] user_messages.append(current_time) self.recent_messages[user.id] = user_messages if len(user_messages) > spam_threshold: punishment = await self.get_punishment(guild_id) action_taken = None reason = "Spamming" try: if punishment == "Mute": timeout_duration = discord.utils.utcnow() + timedelta(minutes=mute_minutes) await user.edit(timed_out_until=timeout_duration, reason="Spamming") action_taken = f"Muted for {int(mute_minutes)} minutes" elif punishment == "Kick": await user.kick(reason="Spamming") action_taken = "Kicked" elif punishment == "Ban": await user.ban(reason="Spamming") action_taken = "Banned" simple_embed = discord.Embed(title="Automod Anti-Spam", color=0xFF0000) simple_embed.description = f"{TICK} | {user.mention} has been successfully **{action_taken}** for **Spamming.**" simple_embed.set_footer(text="Use the “automod logging” command to get automod logs if it is not enabled.", icon_url=self.bot.user.avatar.url) await channel.send(embed=simple_embed, delete_after=30) await self.log_action(guild, user, channel, action_taken, reason) except discord.Forbidden: pass except discord.HTTPException: pass except Exception: pass @commands.Cog.listener() async def on_rate_limit(self, message): await asyncio.sleep(10)