1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 20:23:12 +00:00

Remove moderation and say modules

They weren't enabled anyway.
This commit is contained in:
wlinator 2024-03-26 16:35:40 +01:00
parent c64f83bf4f
commit a98f26a370
2 changed files with 0 additions and 116 deletions

View file

@ -1,88 +0,0 @@
import logging
import discord
from discord.ext import commands
from config.parser import JsonCache
strings = JsonCache.read_json("strings")
logs = logging.getLogger('Racu.Core')
def hierarchy_check(user, target):
if target.top_role >= user.top_role:
return False
else:
return True
class SimpleModCog(commands.Cog):
def __init__(self, client):
self.client = client
"""
This cog contains simple moderation commands
Fallback? Use Discord's built-ins.
"""
@commands.slash_command(
name="kick",
description="Kick a member.",
guild_only=True
)
@commands.has_permissions(kick_members=True)
@commands.bot_has_permissions(kick_members=True)
async def kick_command(self, ctx, *, target: discord.Member):
if not hierarchy_check(ctx.author, target):
return await ctx.respond(content=strings["error_hierarchy"].format(ctx.author.name), ephemeral=True)
dm_channel = False
try:
await ctx.guild.kick(user=target, reason=f"moderator: {ctx.author.name}")
await ctx.respond(strings["mod_kick"].format(ctx.author.name, target.name))
dm_channel = True
await target.send(strings["mod_kick_dm"].format(target.name, ctx.guild.name))
except Exception as err:
if not dm_channel:
await ctx.respond(strings["error_mod_invoke_error"].format(ctx.author.name), ephemeral=True)
logs.error(f"[CommandHandler] error during kick command: {err}")
@commands.slash_command(
name="ban",
description="Ban a member.",
guild_only=True
)
@commands.has_permissions(ban_members=True)
@commands.bot_has_permissions(ban_members=True)
async def ban_command(self, ctx, *, target: discord.Member, delete_messages: discord.Option(bool)):
if not hierarchy_check(ctx.author, target):
return await ctx.respond(content=strings["error_hierarchy"].format(ctx.author.name), ephemeral=True)
dm_channel = False
seconds = 0
if delete_messages:
seconds = 604800
try:
await ctx.guild.ban(user=target, reason=f"moderator: {ctx.author.name}", delete_message_seconds=seconds)
await ctx.respond(strings["mod_ban"].format(ctx.author.name, target.name))
dm_channel = True
await target.send(strings["mod_ban_dm"].format(target.name, ctx.guild.name))
except Exception as err:
if not dm_channel:
await ctx.respond(strings["error_mod_invoke_error"].format(ctx.author.name), ephemeral=True)
logs.error(f"[CommandHandler] error during ban command: {err}")
def setup(client):
client.add_cog(SimpleModCog(client))

View file

@ -1,28 +0,0 @@
import logging
import discord
from discord.ext import commands
from lib import checks
logs = logging.getLogger('Racu.Core')
class SayCog(commands.Cog):
def __init__(self, client):
self.client = client
@commands.slash_command(
name="say",
description="Bot admin only.",
guild_only=True
)
@commands.is_owner()
@commands.guild_only()
async def say(self, ctx, *, txt: discord.Option(str)):
await ctx.respond(content="", ephemeral=True)
await ctx.send(content=txt)
def setup(client):
client.add_cog(SayCog(client))