67 lines
2.6 KiB
Python
67 lines
2.6 KiB
Python
import discord, pymongo, os
|
|
from discord.ext import commands
|
|
|
|
from dotenv import load_dotenv
|
|
load_dotenv()
|
|
|
|
class mute(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.Cog.listener()
|
|
async def on_ready(self):
|
|
print("Mute Online")
|
|
|
|
def is_enabled(self):
|
|
client = pymongo.MongoClient(os.getenv("mongo_url"))
|
|
db = client.servers
|
|
coll = db.settings
|
|
|
|
if coll.find_one({"_id": {"guild_id": self.guild.id, "commands":"mute"}}):
|
|
command = coll.find_one({"_id": {"guild_id": self.guild.id, "commands":"mute"}})
|
|
command_enabled = command["enabled"] # True or False
|
|
if command_enabled:
|
|
return True
|
|
else:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
@commands.hybrid_command(name="mute", description="Mute a user")
|
|
@commands.has_permissions(manage_messages=True)
|
|
@commands.check(is_enabled)
|
|
async def mute(self, ctx, member:discord.Member, *, reason=None):
|
|
if member == ctx.author:
|
|
await ctx.send("You can't mute yourself silly")
|
|
else:
|
|
guild = ctx.guild
|
|
mutedRole = discord.utils.get(guild.roles, name="Muted")
|
|
|
|
if not mutedRole:
|
|
mutedRole = await guild.create_role(name="Muted")
|
|
|
|
for channel in guild.channels:
|
|
await channel.set_permissions(mutedRole, speak=False, send_messages=False, read_message_history=True)
|
|
|
|
em = discord.Embed(title="Muted", description=f"{member.mention} has been muted by {ctx.author.mention} for {reason}", color = ctx.author.color)
|
|
memberem = discord.Embed(title="Muted", description=f"You have been muted in {guild.name} by {ctx.author.mention} for {reason}")
|
|
await member.add_roles(mutedRole, reason=reason)
|
|
await ctx.send(embed=em)
|
|
await member.send(embed=memberem)
|
|
|
|
@commands.hybrid_command(name="unmute", description="Unmute a user")
|
|
@commands.has_permissions(manage_messages=True)
|
|
@commands.check(is_enabled)
|
|
async def unmute(self, ctx,member:discord.Member, *, reason=None):
|
|
guild = ctx.guild
|
|
mutedRole = discord.utils.get(guild.roles, name="Muted")
|
|
|
|
em = discord.Embed(title="Unmuted", description=f"{member.mention} was unmuted by {ctx.author.mention} for {reason}")
|
|
memberem = discord.Embed(title="Unmuted", description=f"You were unmuted in {guild.name} for {reason}")
|
|
|
|
await member.remove_roles(mutedRole, reason=reason)
|
|
await ctx.send(embed=em)
|
|
await member.send(embed=memberem)
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(mute(bot)) |