Update configuration and README for improved setup and security; disable default API and emoji sync, and enhance Discord permission checks in API routes.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
TheOnlyMace
2026-07-21 16:00:52 +02:00
commit fdfc8de44d
925 changed files with 75254 additions and 0 deletions

57
bot/cogs/events/react.py Normal file
View File

@@ -0,0 +1,57 @@
# ╔══════════════════════════════════════════════════════════════════╗
# ║ ║
# ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀ ║
# ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█ ║
# ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀ ║
# ║ ║
# ║ © 2026 CodeX Devs — All Rights Reserved ║
# ║ ║
# ║ discord ── https://discord.gg/codexdev ║
# ║ youtube ── https://youtube.com/@CodeXDevs ║
# ║ github ── https://github.com/RayExo ║
# ║ ║
# ╚══════════════════════════════════════════════════════════════════╝
import discord
from utils.emoji import ACTIVE_DEVELOPER, BLACKCROWN, MINGLE, STAFF
from discord.ext import commands
from utils.config import OWNER_IDS
import asyncio
class React(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.Cog.listener()
async def on_message(self, message):
if message.author.bot:
return
for owner in self.bot.owner_ids:
if f"<@{owner}>" in message.content:
try:
# Primary owner (first in OWNER_IDS) gets an extra emoji
if owner == OWNER_IDS[0]:
emojis = [
BLACKCROWN,
ACTIVE_DEVELOPER,
STAFF,
MINGLE,
]
else:
emojis = [
BLACKCROWN,
ACTIVE_DEVELOPER,
STAFF,
]
for emoji in emojis:
try:
await message.add_reaction(emoji)
except discord.HTTPException:
pass # ignore if emoji is invalid or not accessible
except discord.errors.RateLimited as e:
await asyncio.sleep(e.retry_after)
except Exception as e:
print(f"An unexpected error occurred Auto react owner mention: {e}")