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

50
bot/cogs/commands/qr.py Normal file
View File

@@ -0,0 +1,50 @@
# ╔══════════════════════════════════════════════════════════════════╗
# ║ ║
# ║ ░█▀▀░█▀█░█▀▄░█▀▀░█░█ ░█▀▄░█▀▀░█░█░█▀▀ ║
# ║ ░█░░░█░█░█░█░█▀▀░▄▀▄ ░█░█░█▀▀░▀▄▀░▀▀█ ║
# ║ ░▀▀▀░▀▀▀░▀▀░░▀▀▀░▀░▀ ░▀▀░░▀▀▀░░▀░░▀▀▀ ║
# ║ ║
# ║ © 2026 CodeX Devs — All Rights Reserved ║
# ║ ║
# ║ discord ── https://discord.gg/codexdev ║
# ║ youtube ── https://youtube.com/@CodeXDevs ║
# ║ github ── https://github.com/RayExo ║
# ║ ║
# ╚══════════════════════════════════════════════════════════════════╝
import discord
from discord.ext import commands
from utils.cv2 import CV2
class QR(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command(
name="qr",
aliases=["qrcode"],
help="Sends a QR code image.",
with_app_command=True
)
@commands.has_permissions(administrator=True)
@commands.cooldown(1, 5, commands.BucketType.user)
async def qr(self, ctx):
view = CV2("Payment Platform", "Here's you can pay UPI With Below QR")
from discord.ui import MediaGallery
gallery = MediaGallery()
gallery.add_item(media="https://media.discordapp.net/attachments/1334099972739829843/1377897856286851152/share_image4613677226378289500.png?ex=69f6ec61&is=69f59ae1&hm=50c40fe1e341074865e4b29b1321ab19af3649889c276f3fa4407468dbd75f4a&=&format=webp&quality=lossless&width=441&height=892")
view.children[0].add_item(gallery)
await ctx.reply(view=view)
@qr.error
async def qr_error(self, ctx, error):
if isinstance(error, commands.MissingPermissions):
await ctx.reply("❌ You must be an **administrator** to use this command.")
elif isinstance(error, commands.CommandOnCooldown):
await ctx.reply(f"⏳ You're on cooldown. Try again in `{round(error.retry_after, 1)}s`.")
else:
await ctx.reply(f"⚠️ An error occurred: `{str(error)}`")
# Required for bot.load_extension()
async def setup(bot):
await bot.add_cog(QR(bot))