Files
Mace-AIO-Discord-Bot---With…/bot/cogs/commands/Invc.py

141 lines
6.9 KiB
Python

# ╔══════════════════════════════════════════════════════════════════╗
# ║ ║
# ║ +-+-+-+-+-+-+-+-+ ║
# ║ |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
import discord
from discord.ext import commands
import aiosqlite
import asyncio
from utils.Tools import *
from utils.cv2 import CV2
from utils.config import *
class Invcrole(commands.Cog):
def __init__(self, bot):
self.bot = bot
self.db_path = db_path('invc.db')
self.bot.loop.create_task(self.create_table())
async def create_table(self):
async with aiosqlite.connect(self.db_path) as db:
await db.execute('''
CREATE TABLE IF NOT EXISTS vcroles (
guild_id INTEGER PRIMARY KEY,
role_id INTEGER NOT NULL
)
''')
await db.commit()
@commands.hybrid_group(name='vcrole', help="Vcrole Setup commands", invoke_without_command=True)
@blacklist_check()
@ignore_check()
@commands.has_permissions(administrator=True)
async def vcrole(self, ctx):
if ctx.subcommand_passed is None:
await ctx.send_help(ctx.command)
ctx.command.reset_cooldown(ctx)
@vcrole.command(name='add', help="Adds a role to the vcrole list")
@blacklist_check()
@ignore_check()
@commands.has_permissions(administrator=True)
async def add(self, ctx, role: discord.Role):
async with aiosqlite.connect(self.db_path) as db:
async with db.execute('SELECT role_id FROM vcroles WHERE guild_id = ?', (ctx.guild.id,)) as cursor:
row = await cursor.fetchone()
if row:
await ctx.reply(view=CV2("⚠️ Access Denied", f"VC role is already set in this guild with the role {ctx.guild.get_role(row[0]).mention}.\nPlease **remove** it to add another one."))
return
await db.execute('INSERT INTO vcroles (guild_id, role_id) VALUES (?, ?)', (ctx.guild.id, role.id))
await db.commit()
await ctx.reply(view=CV2("✅ Success", f"VC role {role.mention} added for this guild."))
@vcrole.command(name='remove', aliases=["reset"], help="Removes the role from vcrole list")
@blacklist_check()
@ignore_check()
@commands.has_permissions(administrator=True)
async def remove(self, ctx, role: discord.Role):
async with aiosqlite.connect(self.db_path) as db:
async with db.execute('SELECT role_id FROM vcroles WHERE guild_id = ? AND role_id = ?', (ctx.guild.id, role.id)) as cursor:
row = await cursor.fetchone()
if not row:
await ctx.send(view=CV2("❌ Error", "Given role is not set in VC role."))
return
await db.execute('DELETE FROM vcroles WHERE guild_id = ? AND role_id = ?', (ctx.guild.id, role.id))
await db.commit()
await ctx.send(view=CV2("✅ Success", f"VC role {role.mention} removed for this guild."))
@vcrole.command(name='config', aliases=['view', 'show'], help="Shows the Current vcrole in this Guild")
@blacklist_check()
@ignore_check()
@commands.has_permissions(administrator=True)
async def config(self, ctx):
async with aiosqlite.connect(self.db_path) as db:
async with db.execute('SELECT role_id FROM vcroles WHERE guild_id = ?', (ctx.guild.id,)) as cursor:
row = await cursor.fetchone()
if not row:
await ctx.send(view=CV2("❌ Error", "VC role is not set in this guild."))
return
role = ctx.guild.get_role(row[0])
await ctx.send(view=CV2("VC Role Configuration", f"Current VC role in this guild is {role.mention}.\n\n*Make sure to place My role above Vc role*"))
@commands.Cog.listener()
async def on_voice_state_update(self, member, before, after):
try:
async with aiosqlite.connect(self.db_path) as db:
async with db.execute('SELECT role_id FROM vcroles WHERE guild_id = ?', (member.guild.id,)) as cursor:
row = await cursor.fetchone()
if not row:
return
role = member.guild.get_role(row[0])
if after.channel and role not in member.roles:
await self.add_role_with_retry(member, role, reason=f"Member Joined VC | {BRAND_NAME} Invcrole")
elif not after.channel and role in member.roles:
await self.remove_role_with_retry(member, role, reason=f"Member Left VC | {BRAND_NAME} Invcrole")
except discord.Forbidden:
print(f"Bot lacks permissions to maange role in a guild during Invc Event .")
except Exception as e:
print(f"Error in on_voice_state_update: {e}")
async def add_role_with_retry(self, member, role, reason, retries=5):
attempt = 0
while attempt < retries:
try:
await member.add_roles(role, reason=reason)
break
except discord.errors.RateLimited as e:
retry_after = e.retry_after if hasattr(e, 'retry_after') else 1
await asyncio.sleep(retry_after)
except discord.HTTPException as e:
print(f"Error adding role: {e}")
break
attempt += 1
async def remove_role_with_retry(self, member, role, reason, retries=5):
attempt = 0
while attempt < retries:
try:
await member.remove_roles(role, reason=reason)
break
except discord.errors.RateLimited as e:
retry_after = e.retry_after if hasattr(e, 'retry_after') else 1
await asyncio.sleep(retry_after)
except discord.HTTPException as e:
print(f"Error removing role: {e}")
break
attempt += 1
async def setup(bot):
await bot.add_cog(Invcrole(bot))