|
|
|
import discord |
|
import logging |
|
import asyncio |
|
import re |
|
|
|
from typing import Optional |
|
from asyncio import TimeoutError as AsyncTimeoutError |
|
from abc import ABC |
|
from datetime import datetime, timedelta |
|
from laggron_utils.logging import close_logger, DisabledConsoleOutput |
|
|
|
from redbot.core import commands, Config, checks |
|
from redbot.core.commands.converter import TimedeltaConverter |
|
from redbot.core.i18n import Translator, cog_i18n |
|
from redbot.core.utils import predicates, menus, mod |
|
from redbot.core.utils.chat_formatting import pagify |
|
|
|
from . import errors |
|
from .api import API, UnavailableMember |
|
from .automod import AutomodMixin |
|
from .cache import MemoryCache |
|
from .converters import AdvancedMemberSelect |
|
from .settings import SettingsMixin |
|
|
|
log = logging.getLogger("red.laggron.warnsystem") |
|
_ = Translator("WarnSystem", __file__) |
|
BaseCog = getattr(commands, "Cog", object) |
|
|
|
|
|
listener = getattr(commands.Cog, "listener", None) |
|
if listener is None: |
|
|
|
def listener(name=None): |
|
return lambda x: x |
|
|
|
|
|
def pretty_date(time: datetime): |
|
""" |
|
Get a datetime object and return a pretty string like 'an hour ago', |
|
'Yesterday', '3 months ago', 'just now', etc |
|
|
|
This is based on this answer, modified for i18n compatibility: |
|
https://stackoverflow.com/questions/1551382/user-friendly-time-format-in-python |
|
""" |
|
|
|
def text(amount: float, unit: tuple): |
|
amount = round(amount) |
|
if amount > 1: |
|
unit = unit[1] |
|
else: |
|
unit = unit[0] |
|
return _("{amount} {unit} ago.").format(amount=amount, unit=unit) |
|
|
|
units_name = { |
|
0: (_("year"), _("years")), |
|
1: (_("month"), _("months")), |
|
2: (_("week"), _("weeks")), |
|
3: (_("day"), _("days")), |
|
4: (_("hour"), _("hours")), |
|
5: (_("minute"), _("minutes")), |
|
6: (_("second"), _("seconds")), |
|
} |
|
now = datetime.now() |
|
diff = now - time |
|
second_diff = diff.seconds |
|
day_diff = diff.days |
|
if day_diff < 0: |
|
return "" |
|
if day_diff == 0: |
|
if second_diff < 10: |
|
return _("Just now") |
|
if second_diff < 60: |
|
return text(second_diff, units_name[6]) |
|
if second_diff < 120: |
|
return _("A minute ago") |
|
if second_diff < 3600: |
|
return text(second_diff / 60, units_name[5]) |
|
if second_diff < 7200: |
|
return _("An hour ago") |
|
if second_diff < 86400: |
|
return text(second_diff / 3600, units_name[4]) |
|
if day_diff == 1: |
|
return _("Yesterday") |
|
if day_diff < 7: |
|
return text(day_diff, units_name[3]) |
|
if day_diff < 31: |
|
return text(day_diff / 7, units_name[2]) |
|
if day_diff < 365: |
|
return text(day_diff / 30, units_name[1]) |
|
return text(day_diff / 365, units_name[0]) |
|
|
|
|
|
|
|
try: |
|
from redbot.core.utils.chat_formatting import text_to_file |
|
except ImportError: |
|
from io import BytesIO |
|
|
|
log.warn("Outdated redbot, consider updating.") |
|
|
|
|
|
def text_to_file( |
|
text: str, filename: str = "file.txt", *, spoiler: bool = False, encoding: str = "utf-8" |
|
): |
|
file = BytesIO(text.encode(encoding)) |
|
return discord.File(file, filename, spoiler=spoiler) |
|
|
|
|
|
EMBED_MODLOG = lambda x: _("A member got a level {} warning.").format(x) |
|
EMBED_USER = lambda x: _("The moderation team set you a level {} warning.").format(x) |
|
|
|
|
|
class CompositeMetaClass(type(commands.Cog), type(ABC)): |
|
""" |
|
This allows the metaclass used for proper type detection to |
|
coexist with discord.py's metaclass |
|
|
|
Credit to https://github.com/Cog-Creators/Red-DiscordBot (mod cog) for all mixin stuff. |
|
""" |
|
|
|
pass |
|
|
|
|
|
@cog_i18n(_) |
|
class WarnSystem(SettingsMixin, AutomodMixin, BaseCog, metaclass=CompositeMetaClass): |
|
""" |
|
An alternative to the Red core moderation system, providing a different system of moderation\ |
|
similar to Dyno. |
|
|
|
Report a bug or ask a question: https://discord.gg/AVzjfpR |
|
Full documentation and FAQ: http://laggron.red/warnsystem.html |
|
""" |
|
|
|
default_global = { |
|
"data_version": "0.0" |
|
} |
|
default_guild = { |
|
"delete_message": False, |
|
"show_mod": False, |
|
"mute_role": None, |
|
"update_mute": False, |
|
"remove_roles": False, |
|
"respect_hierarchy": False, |
|
|
|
"reinvite": True, |
|
"log_manual": False, |
|
"channels": { |
|
"main": None, |
|
"1": None, |
|
"2": None, |
|
"3": None, |
|
"4": None, |
|
"5": None, |
|
}, |
|
"bandays": { |
|
"softban": 7, |
|
"ban": 0, |
|
}, |
|
"embed_description_modlog": { |
|
"1": EMBED_MODLOG(1), |
|
"2": EMBED_MODLOG(2), |
|
"3": EMBED_MODLOG(3), |
|
"4": EMBED_MODLOG(4), |
|
"5": EMBED_MODLOG(5), |
|
}, |
|
"embed_description_user": { |
|
"1": EMBED_USER(1), |
|
"2": EMBED_USER(2), |
|
"3": EMBED_USER(3), |
|
"4": EMBED_USER(4), |
|
"5": EMBED_USER(5), |
|
}, |
|
"substitutions": {}, |
|
"thumbnails": { |
|
"1": "https://i.imgur.com/Bl62rGd.png", |
|
"2": "https://i.imgur.com/cVtzp1M.png", |
|
"3": "https://i.imgur.com/uhrYzyt.png", |
|
"4": "https://i.imgur.com/uhrYzyt.png", |
|
"5": "https://i.imgur.com/DfBvmic.png", |
|
}, |
|
"colors": { |
|
"1": 0xF4AA42, |
|
"2": 0xD1ED35, |
|
"3": 0xED9735, |
|
"4": 0xED6F35, |
|
"5": 0xFF4C4C, |
|
}, |
|
"url": None, |
|
"temporary_warns": {}, |
|
"automod": { |
|
"enabled": False, |
|
"antispam": { |
|
"enabled": False, |
|
"max_messages": 5, |
|
"delay": 2, |
|
"delay_before_action": 60, |
|
"warn": { |
|
"level": 1, |
|
"reason": "Sending messages too fast!", |
|
"time": None, |
|
}, |
|
}, |
|
"regex": {}, |
|
"warnings": [], |
|
}, |
|
} |
|
default_custom_member = {"x": []} |
|
|
|
def __init__(self, bot): |
|
self.bot = bot |
|
|
|
self.data = Config.get_conf(self, 260, force_registration=True) |
|
self.data.register_global(**self.default_global) |
|
self.data.register_guild(**self.default_guild) |
|
try: |
|
self.data.init_custom("MODLOGS", 2) |
|
except AttributeError: |
|
pass |
|
self.data.register_custom("MODLOGS", **self.default_custom_member) |
|
|
|
self.cache = MemoryCache(self.bot, self.data) |
|
self.api = API(self.bot, self.data, self.cache) |
|
|
|
self.task: asyncio.Task |
|
|
|
__version__ = "1.3.18" |
|
__author__ = ["retke (El Laggron)"] |
|
|
|
|
|
async def call_warn(self, ctx, level, member, reason=None, time=None): |
|
"""No need to repeat, let's do what's common to all 5 warnings.""" |
|
reason = await self.api.format_reason(ctx.guild, reason) |
|
if reason and len(reason) > 2000: |
|
await ctx.send( |
|
_( |
|
"The reason is too long for an embed.\n\n" |
|
"*Tip: You can use Github Gist to write a long text formatted in Markdown, " |
|
"create a new file with the extension `.md` at the end and write as if you " |
|
"were on Discord.\n<https://gist.github.com/>*" |
|
|
|
) |
|
) |
|
return |
|
try: |
|
fail = await self.api.warn(ctx.guild, [member], ctx.author, level, reason, time) |
|
if fail: |
|
raise fail[0] |
|
except errors.MissingPermissions as e: |
|
await ctx.send(e) |
|
except errors.MemberTooHigh as e: |
|
await ctx.send(e) |
|
except errors.LostPermissions as e: |
|
await ctx.send(e) |
|
except errors.SuicidePrevention as e: |
|
await ctx.send(e) |
|
except errors.MissingMuteRole: |
|
await ctx.send( |
|
_( |
|
"You need to set up the mute role before doing this.\n" |
|
"Use the `[p]warnset mute` command for this." |
|
) |
|
) |
|
except errors.NotFound: |
|
await ctx.send( |
|
_( |
|
"Please set up a modlog channel before warning a member.\n\n" |
|
"**With WarnSystem**\n" |
|
"*Use the `[p]warnset channel` command.*\n\n" |
|
"**With Red Modlog**\n" |
|
"*Load the `modlogs` cog and use the `[p]modlogset modlog` command.*" |
|
) |
|
) |
|
except errors.NotAllowedByHierarchy: |
|
is_admin = mod.is_admin_or_superior(self.bot, member) |
|
await ctx.send( |
|
_( |
|
"You are not allowed to do this, {member} is higher than you in the role " |
|
"hierarchy. You can only warn members which top role is lower than yours.\n\n" |
|
).format(member=str(member)) |
|
+ ( |
|
_("You can disable this check by using the `[p]warnset hierarchy` command.") |
|
if is_admin |
|
else "" |
|
) |
|
) |
|
except discord.errors.NotFound: |
|
await ctx.send(_("Hackban failed: No user found.")) |
|
else: |
|
if ctx.channel.permissions_for(ctx.guild.me).add_reactions: |
|
try: |
|
await ctx.message.add_reaction("✅") |
|
except discord.errors.NotFound: |
|
|
|
pass |
|
else: |
|
await ctx.send(_("Done.")) |
|
|
|
async def call_masswarn( |
|
self, |
|
ctx, |
|
level, |
|
members, |
|
unavailable_members, |
|
log_modlog, |
|
log_dm, |
|
take_action, |
|
reason=None, |
|
time=None, |
|
confirm=False, |
|
): |
|
guild = ctx.guild |
|
message = None |
|
i = 0 |
|
total_members = len(members) |
|
total_unavailable_members = len(unavailable_members) |
|
tick1 = "✅" if log_modlog else "❌" |
|
tick2 = "✅" if log_dm else "❌" |
|
tick3 = f"{'✅' if take_action else '❌'} Take action\n" if level != 1 else "" |
|
tick4 = f"{'✅' if time else '❌'} Time: " if (level == 2 or level == 5) else "" |
|
tick5 = "✅" if reason else "❌" |
|
time_str = (self.api._format_timedelta(time) + "\n") if time else "" |
|
|
|
async def update_count(count): |
|
nonlocal i |
|
i = count |
|
|
|
async def update_message(): |
|
while True: |
|
nonlocal message |
|
content = _( |
|
"Processing mass warning...\n" |
|
"{i}/{total} {members} warned ({percent}%)\n\n" |
|
"{tick1} Log to the modlog\n" |
|
"{tick2} Send a DM to all members\n" |
|
"{tick3}" |
|
"{tick4} {time}\n" |
|
"{tick5} Reason: {reason}" |
|
).format( |
|
i=i, |
|
total=total_members + total_unavailable_members, |
|
members=_("members") if i != 1 else _("member"), |
|
percent=round((i / total_members) * 100, 2), |
|
tick1=tick1, |
|
tick2=tick2, |
|
tick3=tick3, |
|
tick4=tick4, |
|
time=time_str, |
|
tick5=tick5, |
|
reason=reason or "Not set", |
|
) |
|
if message: |
|
await message.edit(content=content) |
|
else: |
|
message = await ctx.send(content) |
|
await asyncio.sleep(5) |
|
|
|
if unavailable_members and level < 5: |
|
await ctx.send(_("You can only use `--hackban-select` with a level 5 warn.")) |
|
return |
|
reason = await self.api.format_reason(ctx.guild, reason) |
|
if (log_modlog or log_dm) and reason and len(reason) > 2000: |
|
await ctx.send( |
|
_( |
|
"The reason is too long for an embed.\n\n" |
|
"*Tip: You can use Github Gist to write a long text formatted in Markdown, " |
|
"create a new file with the extension `.md` at the end and write as if you " |
|
"were on Discord.\n<https://gist.github.com/>*" |
|
|
|
) |
|
) |
|
return |
|
file = text_to_file( |
|
"\n".join([f"{str(x)} ({x.id})" for x in members + unavailable_members]) |
|
) |
|
targets = [] |
|
if members: |
|
targets.append( |
|
_("{total} {members} ({percent}% of the server)").format( |
|
total=total_members, |
|
members=_("members") if total_members > 1 else _("member"), |
|
percent=round((total_members / len(guild.members) * 100), 2), |
|
) |
|
) |
|
if unavailable_members: |
|
targets.append( |
|
_("{total} {users} not in the server.").format( |
|
total=total_unavailable_members, |
|
users=_("users") if total_unavailable_members > 1 else _("user"), |
|
) |
|
) |
|
if not confirm: |
|
msg = await ctx.send( |
|
_( |
|
"You're about to set a level {level} warning on {target}.\n\n" |
|
"{tick1} Log to the modlog\n" |
|
"{tick2} Send a DM to all members\n" |
|
"{tick3}" |
|
"{tick4} {time}\n" |
|
"{tick5} Reason: {reason}\n\n{warning}" |
|
"Continue?" |
|
).format( |
|
level=level, |
|
target=_(" and ").join(targets), |
|
tick1=tick1, |
|
tick2=tick2, |
|
tick3=tick3, |
|
tick4=tick4, |
|
time=time_str, |
|
tick5=tick5, |
|
reason=reason or _("Not set"), |
|
warning=_( |
|
":warning: You're about to warn a lot of members! Avoid doing this to " |
|
"prevent being rate limited by Discord, especially if you enabled DMs.\n\n" |
|
) |
|
if len(members) > 50 and level > 1 |
|
else "", |
|
), |
|
file=file, |
|
) |
|
menus.start_adding_reactions(msg, predicates.ReactionPredicate.YES_OR_NO_EMOJIS) |
|
pred = predicates.ReactionPredicate.yes_or_no(msg, ctx.author) |
|
try: |
|
await self.bot.wait_for("reaction_add", check=pred, timeout=120) |
|
except AsyncTimeoutError: |
|
if ctx.guild.me.guild_permissions.manage_messages: |
|
await msg.clear_reactions() |
|
else: |
|
for reaction in msg.reactions(): |
|
await msg.remove_reaction(reaction, ctx.guild.me) |
|
return |
|
if not pred.result: |
|
await ctx.send(_("Mass warn cancelled.")) |
|
return |
|
task = self.bot.loop.create_task(update_message()) |
|
try: |
|
fails = await self.api.warn( |
|
guild=guild, |
|
members=members + unavailable_members, |
|
author=ctx.author, |
|
level=level, |
|
reason=reason, |
|
time=time, |
|
log_modlog=log_modlog, |
|
log_dm=log_dm, |
|
take_action=take_action, |
|
progress_tracker=update_count if not confirm else None, |
|
) |
|
except errors.MissingPermissions as e: |
|
await ctx.send(e) |
|
except errors.LostPermissions as e: |
|
await ctx.send(e) |
|
except errors.MissingMuteRole: |
|
if not confirm: |
|
await ctx.send( |
|
_( |
|
"You need to set up the mute role before doing this.\n" |
|
"Use the `[p]warnset mute` command for this." |
|
) |
|
) |
|
except errors.NotFound: |
|
if not confirm: |
|
await ctx.send( |
|
_( |
|
"Please set up a modlog channel before warning a member.\n\n" |
|
"**With WarnSystem**\n" |
|
"*Use the `[p]warnset channel` command.*\n\n" |
|
"**With Red Modlog**\n" |
|
"*Load the `modlogs` cog and use the `[p]modlogset modlog` command.*" |
|
) |
|
) |
|
else: |
|
if not confirm: |
|
if fails: |
|
await ctx.send( |
|
_("Done! {failed} {members} out of {total} couldn't be warned.").format( |
|
failed=len(fails), |
|
members=_("members") if len(fails) > 1 else _("member"), |
|
total=total_members, |
|
) |
|
) |
|
else: |
|
await ctx.send( |
|
_("Done! {total} {members} successfully warned.").format( |
|
total=total_members, |
|
members=_("members") if total_members > 1 else _("member"), |
|
) |
|
) |
|
else: |
|
try: |
|
await ctx.message.add_reaction("✅") |
|
except discord.errors.HTTPException: |
|
pass |
|
finally: |
|
if not confirm: |
|
task.cancel() |
|
if message: |
|
await message.delete() |
|
|
|
|
|
@commands.group(invoke_without_command=True, name="warn") |
|
@checks.mod_or_permissions(administrator=True) |
|
@commands.guild_only() |
|
async def _warn(self, ctx: commands.Context, member: discord.Member, *, reason: str = None): |
|
""" |
|
Take actions against a user and log it. |
|
The warned user will receive a DM. |
|
|
|
If not given, the warn level will be 1. |
|
""" |
|
await self.call_warn(ctx, 1, member, reason) |
|
|
|
@_warn.command(name="1", aliases=["simple"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def warn_1(self, ctx: commands.Context, member: discord.Member, *, reason: str = None): |
|
""" |
|
Set a simple warning on a user. |
|
|
|
Note: You can either call `[p]warn 1` or `[p]warn`. |
|
""" |
|
await self.call_warn(ctx, 1, member, reason) |
|
|
|
@_warn.command(name="2", aliases=["mute"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def warn_2( |
|
self, |
|
ctx: commands.Context, |
|
member: discord.Member, |
|
time: Optional[TimedeltaConverter], |
|
*, |
|
reason: str = None, |
|
): |
|
""" |
|
Mute the user in all channels, including voice channels. |
|
|
|
This mute will use a role that will automatically be created, if it was not already done. |
|
Feel free to edit the role's permissions and move it in the roles hierarchy. |
|
|
|
You can set a timed mute by providing a valid time before the reason. |
|
|
|
Examples: |
|
- `[p]warn 2 @user 30m`: 30 minutes mute |
|
- `[p]warn 2 @user 5h Spam`: 5 hours mute for the reason "Spam" |
|
- `[p]warn 2 @user Advertising`: Infinite mute for the reason "Advertising" |
|
""" |
|
await self.call_warn(ctx, 2, member, reason, time) |
|
|
|
@_warn.command(name="3", aliases=["kick"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def warn_3(self, ctx: commands.Context, member: discord.Member, *, reason: str = None): |
|
""" |
|
Kick the member from the server. |
|
""" |
|
await self.call_warn(ctx, 3, member, reason) |
|
|
|
@_warn.command(name="4", aliases=["softban"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def warn_4(self, ctx: commands.Context, member: discord.Member, *, reason: str = None): |
|
""" |
|
Softban the member from the server. |
|
|
|
This means that the user will be banned and immediately unbanned, so it will purge their\ |
|
messages in all channels. |
|
|
|
It will delete 7 days of messages by default, but you can edit this with the\ |
|
`[p]warnset bandays` command. |
|
""" |
|
await self.call_warn(ctx, 4, member, reason) |
|
|
|
@_warn.command(name="5", aliases=["ban"], usage="<member> [time] <reason>") |
|
@checks.mod_or_permissions(administrator=True) |
|
async def warn_5( |
|
self, |
|
ctx: commands.Context, |
|
member: UnavailableMember, |
|
time: Optional[TimedeltaConverter], |
|
*, |
|
reason: str = None, |
|
): |
|
""" |
|
Ban the member from the server. |
|
|
|
This ban can be a normal ban, a temporary ban or a hack ban (bans a user not in the\ |
|
server). |
|
It won't delete messages by default, but you can edit this with the `[p]warnset bandays`\ |
|
command. |
|
|
|
If you want to perform a temporary ban, provide the time before the reason. A hack ban\ |
|
needs a user ID, you can get it with the Developer mode (enable it in the Appearance tab\ |
|
of the user settings, then right click on the user and select "Copy ID"). |
|
|
|
Examples: |
|
- `[p]warn 5 @user`: Ban for no reason :c |
|
- `[p]warn 5 @user 7d Insults`: 7 days ban for the reason "Insults" |
|
- `[p]warn 5 012345678987654321 Advertising and leave`: Ban the user with the ID provided\ |
|
while they're not in the server for the reason "Advertising and leave" (if the user shares\ |
|
another server with the bot, a DM will be sent). |
|
""" |
|
await self.call_warn(ctx, 5, member, reason, time) |
|
|
|
@commands.group(invoke_without_command=True) |
|
@commands.guild_only() |
|
@checks.mod_or_permissions(administrator=True) |
|
@commands.cooldown(1, 10, commands.BucketType.guild) |
|
async def masswarn(self, ctx, *selection: str): |
|
""" |
|
Perform a warn on multiple members at once. |
|
|
|
To select members, you have to use UNIX-like flags to add conditions\ |
|
which will be checked for each member. |
|
|
|
Example: `[p]masswarn 3 --take-action --send-dm --has-role "Danger"\ |
|
--joined-after "May 2019" --reason "Cleaning dangerous members"` |
|
|
|
To get the full list of flags and how to use them, please read the\ |
|
wiki: https://laggrons-dumb-cogs.readthedocs.io/ |
|
""" |
|
if not selection: |
|
await ctx.send_help() |
|
return |
|
try: |
|
selection = await AdvancedMemberSelect().convert(ctx, selection) |
|
except commands.BadArgument as e: |
|
await ctx.send(e) |
|
return |
|
await self.call_masswarn( |
|
ctx, |
|
1, |
|
selection.members, |
|
selection.unavailable_members, |
|
selection.send_modlog, |
|
selection.send_dm, |
|
selection.take_action, |
|
selection.reason, |
|
None, |
|
selection.confirm, |
|
) |
|
|
|
@masswarn.command(name="1", aliases=["simple"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def masswarn_1(self, ctx, *selection: str): |
|
""" |
|
Perform a simple mass warning. |
|
""" |
|
if not selection: |
|
await ctx.send_help() |
|
return |
|
try: |
|
selection = await AdvancedMemberSelect().convert(ctx, selection) |
|
except commands.BadArgument as e: |
|
await ctx.send(e) |
|
return |
|
await self.call_masswarn( |
|
ctx, |
|
1, |
|
selection.members, |
|
selection.unavailable_members, |
|
selection.send_modlog, |
|
selection.send_dm, |
|
selection.take_action, |
|
selection.reason, |
|
None, |
|
selection.confirm, |
|
) |
|
|
|
@masswarn.command(name="2", aliases=["mute"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def masswarn_2(self, ctx, *selection: str): |
|
""" |
|
Perform a mass mute. |
|
|
|
You can provide a duration with the `--time` flag, the format is the same as the simple\ |
|
level 2 warning. |
|
""" |
|
if not selection: |
|
await ctx.send_help() |
|
return |
|
try: |
|
selection = await AdvancedMemberSelect().convert(ctx, selection) |
|
except commands.BadArgument as e: |
|
await ctx.send(e) |
|
return |
|
await self.call_masswarn( |
|
ctx, |
|
2, |
|
selection.members, |
|
selection.unavailable_members, |
|
selection.send_modlog, |
|
selection.send_dm, |
|
selection.take_action, |
|
selection.reason, |
|
selection.time, |
|
selection.confirm, |
|
) |
|
|
|
@masswarn.command(name="3", aliases=["kick"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def masswarn_3(self, ctx, *selection: str): |
|
""" |
|
Perform a mass kick. |
|
""" |
|
if not selection: |
|
await ctx.send_help() |
|
return |
|
try: |
|
selection = await AdvancedMemberSelect().convert(ctx, selection) |
|
except commands.BadArgument as e: |
|
await ctx.send(e) |
|
return |
|
await self.call_masswarn( |
|
ctx, |
|
3, |
|
selection.members, |
|
selection.unavailable_members, |
|
selection.send_modlog, |
|
selection.send_dm, |
|
selection.take_action, |
|
selection.reason, |
|
None, |
|
selection.confirm, |
|
) |
|
|
|
@masswarn.command(name="4", aliases=["softban"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def masswarn_4(self, ctx, *selection: str): |
|
""" |
|
Perform a mass softban. |
|
""" |
|
if not selection: |
|
await ctx.send_help() |
|
return |
|
try: |
|
selection = await AdvancedMemberSelect().convert(ctx, selection) |
|
except commands.BadArgument as e: |
|
await ctx.send(e) |
|
return |
|
await self.call_masswarn( |
|
ctx, |
|
4, |
|
selection.members, |
|
selection.unavailable_members, |
|
selection.send_modlog, |
|
selection.send_dm, |
|
selection.take_action, |
|
selection.reason, |
|
None, |
|
selection.confirm, |
|
) |
|
|
|
@masswarn.command(name="5", aliases=["ban"]) |
|
@checks.mod_or_permissions(administrator=True) |
|
async def masswarn_5(self, ctx, *selection: str): |
|
""" |
|
Perform a mass ban. |
|
|
|
You can provide a duration with the `--time` flag, the format is the same as the simple\ |
|
level 5 warning. |
|
""" |
|
if not selection: |
|
await ctx.send_help() |
|
return |
|
try: |
|
selection = await AdvancedMemberSelect().convert(ctx, selection) |
|
except commands.BadArgument as e: |
|
await ctx.send(e) |
|
return |
|
await self.call_masswarn( |
|
ctx, |
|
5, |
|
selection.members, |
|
selection.unavailable_members, |
|
selection.send_modlog, |
|
selection.send_dm, |
|
selection.take_action, |
|
selection.reason, |
|
selection.time, |
|
selection.confirm, |
|
) |
|
|
|
@commands.command() |
|
@commands.guild_only() |
|
@commands.bot_has_permissions(add_reactions=True, manage_messages=True) |
|
@commands.cooldown(1, 3, commands.BucketType.member) |
|
async def warnings( |
|
self, ctx: commands.Context, user: UnavailableMember = None, index: int = 0 |
|
): |
|
""" |
|
Shows all warnings of a member. |
|
|
|
This command can be used by everyone, but only moderators can see other's warnings. |
|
Moderators can also edit or delete warnings by using the reactions. |
|
""" |
|
if not user: |
|
await ctx.send_help() |
|
return |
|
if ( |
|
not ( |
|
await mod.is_mod_or_superior(self.bot, ctx.author) |
|
or ctx.author.guild_permissions.kick_members |
|
) |
|
and user != ctx.author |
|
): |
|
await ctx.send(_("You are not allowed to see other's warnings!")) |
|
return |
|
cases = await self.api.get_all_cases(ctx.guild, user) |
|
if not cases: |
|
await ctx.send(_("That member was never warned.")) |
|
return |
|
if 0 < index < len(cases): |
|
await ctx.send(_("That case doesn't exist.")) |
|
return |
|
|
|
total = lambda level: len([x for x in cases if x["level"] == level]) |
|
warning_str = lambda level, plural: { |
|
1: (_("Warning"), _("Warnings")), |
|
2: (_("Mute"), _("Mutes")), |
|
3: (_("Kick"), _("Kicks")), |
|
4: (_("Softban"), _("Softbans")), |
|
5: (_("Ban"), _("Bans")), |
|
}.get(level, _("unknown"))[1 if plural else 0] |
|
|
|
embeds = [] |
|
msg = [] |
|
for i in range(6): |
|
total_warns = total(i) |
|
if total_warns > 0: |
|
msg.append(f"{warning_str(i, total_warns > 1)}: {total_warns}") |
|
warn_field = "\n".join(msg) if len(msg) > 1 else msg[0] |
|
warn_list = [] |
|
for case in cases[:-10:-1]: |
|
level = case["level"] |
|
reason = str(case["reason"]).splitlines() |
|
if len(reason) > 1: |
|
reason = reason[0] + "..." |
|
else: |
|
reason = reason[0] |
|
date = pretty_date(self.api._get_datetime(case["time"])) |
|
text = f"**{warning_str(level, False)}:** {reason} • *{date}*\n" |
|
if len("".join(warn_list + [text])) > 1024: |
|
break |
|
else: |
|
warn_list.append(text) |
|
embed = discord.Embed(description=_("User modlog summary.")) |
|
embed.set_author(name=f"{user} | {user.id}", icon_url=user.avatar_url) |
|
embed.add_field( |
|
name=_("Total number of warnings: ") + str(len(cases)), value=warn_field, inline=False |
|
) |
|
embed.add_field( |
|
name=_("{len} last warnings").format(len=len(warn_list)) |
|
if len(warn_list) > 1 |
|
else _("Last warning"), |
|
value="".join(warn_list), |
|
inline=False, |
|
) |
|
embed.set_footer(text=_("Click on the reactions to scroll through the warnings")) |
|
embed.colour = user.top_role.colour |
|
embeds.append(embed) |
|
|
|
for i, case in enumerate(cases): |
|
level = case["level"] |
|
moderator = ctx.guild.get_member(case["author"]) |
|
moderator = "ID: " + str(case["author"]) if not moderator else moderator.mention |
|
|
|
time = self.api._get_datetime(case["time"]) |
|
embed = discord.Embed( |
|
description=_("Case #{number} informations").format(number=i + 1) |
|
) |
|
embed.set_author(name=f"{user} | {user.id}", icon_url=user.avatar_url) |
|
embed.add_field( |
|
name=_("Level"), value=f"{warning_str(level, False)} ({level})", inline=True |
|
) |
|
embed.add_field(name=_("Moderator"), value=moderator, inline=True) |
|
if case["duration"]: |
|
duration = self.api._get_timedelta(case["duration"]) |
|
embed.add_field( |
|
name=_("Duration"), |
|
value=_("{duration}\n(Until {date})").format( |
|
duration=self.api._format_timedelta(duration), |
|
date=self.api._format_datetime(time + duration), |
|
), |
|
) |
|
embed.add_field(name=_("Reason"), value=case["reason"], inline=False), |
|
embed.timestamp = time |
|
embed.colour = await self.data.guild(ctx.guild).colors.get_raw(level) |
|
embeds.append(embed) |
|
|
|
controls = {"⬅": menus.prev_page, "❌": menus.close_menu, "➡": menus.next_page} |
|
if await mod.is_mod_or_superior(self.bot, ctx.author): |
|
controls.update({"✏": self._edit_case, "🗑": self._delete_case}) |
|
|
|
await menus.menu( |
|
ctx=ctx, pages=embeds, controls=controls, message=None, page=index, timeout=60 |
|
) |
|
|
|
async def _edit_case( |
|
self, |
|
ctx: commands.Context, |
|
pages: list, |
|
controls: dict, |
|
message: discord.Message, |
|
page: int, |
|
timeout: float, |
|
emoji: str, |
|
): |
|
""" |
|
Edit a case, this is linked to the warnings menu system. |
|
""" |
|
|
|
async def edit_message(channel_id: int, message_id: int, new_reason: str): |
|
channel: discord.TextChannel = guild.get_channel(channel_id) |
|
if channel is None: |
|
log.warn( |
|
f"[Guild {guild.id}] Failed to edit modlog message. " |
|
f"Channel {channel_id} not found." |
|
) |
|
return False |
|
try: |
|
message: discord.Message = await channel.fetch_message(message_id) |
|
except discord.errors.NotFound: |
|
log.warn( |
|
f"[Guild {guild.id}] Failed to edit modlog message. " |
|
f"Message {message_id} in channel {channel.id} not found." |
|
) |
|
return False |
|
except discord.errors.Forbidden: |
|
log.warn( |
|
f"[Guild {guild.id}] Failed to edit modlog message. " |
|
f"No permissions to fetch messages in channel {channel.id}." |
|
) |
|
return False |
|
except discord.errors.HTTPException as e: |
|
log.error( |
|
f"[Guild {guild.id}] Failed to edit modlog message. API exception raised.", |
|
exc_info=e, |
|
) |
|
return False |
|
try: |
|
embed: discord.Embed = message.embeds[0] |
|
embed.set_field_at( |
|
len(embed.fields) - 2, name=_("Reason"), value=new_reason, inline=False |
|
) |
|
except IndexError as e: |
|
log.error( |
|
f"[Guild {guild.id}] Failed to edit modlog message. Embed is malformed.", |
|
exc_info=e, |
|
) |
|
return False |
|
try: |
|
await message.edit(embed=embed) |
|
except discord.errors.HTTPException as e: |
|
log.error( |
|
f"[Guild {guild.id}] Failed to edit modlog message. " |
|
"Unknown error when attempting message edition.", |
|
exc_info=e, |
|
) |
|
return False |
|
return True |
|
|
|
guild = ctx.guild |
|
if page == 0: |
|
|
|
await message.remove_reaction(emoji, ctx.author) |
|
return await menus.menu( |
|
ctx, pages, controls, message=message, page=page, timeout=timeout |
|
) |
|
await message.clear_reactions() |
|
try: |
|
old_embed = message.embeds[0] |
|
except IndexError: |
|
return |
|
embed = discord.Embed() |
|
member_id = int( |
|
re.match(r"(?:.*#[0-9]{4})(?: \| )([0-9]{15,21})", old_embed.author.name).group(1) |
|
) |
|
member = self.bot.get_user(member_id) or UnavailableMember( |
|
self.bot, guild._state, member_id |
|
) |
|
embed.clear_fields() |
|
embed.description = _( |
|
"Case #{number} edition.\n\n**Please type the new reason to set**" |
|
).format(number=page) |
|
embed.set_footer(text=_("You have two minutes to type your text in the chat.")) |
|
case = (await self.data.custom("MODLOGS", guild.id, member.id).x())[page - 1] |
|
await message.edit(embed=embed) |
|
try: |
|
response = await self.bot.wait_for( |
|
"message", check=predicates.MessagePredicate.same_context(ctx), timeout=120 |
|
) |
|
except AsyncTimeoutError: |
|
await message.delete() |
|
return |
|
case = (await self.data.custom("MODLOGS", guild.id, member.id).x())[page - 1] |
|
new_reason = await self.api.format_reason(guild, response.content) |
|
embed.description = _("Case #{number} edition.").format(number=page) |
|
embed.add_field(name=_("Old reason"), value=case["reason"], inline=False) |
|
embed.add_field(name=_("New reason"), value=new_reason, inline=False) |
|
embed.set_footer(text=_("Click on ✅ to confirm the changes.")) |
|
await message.edit(embed=embed) |
|
menus.start_adding_reactions(message, predicates.ReactionPredicate.YES_OR_NO_EMOJIS) |
|
pred = predicates.ReactionPredicate.yes_or_no(message, ctx.author) |
|
try: |
|
await ctx.bot.wait_for("reaction_add", check=pred, timeout=30) |
|
except AsyncTimeoutError: |
|
await message.clear_reactions() |
|
await message.edit(content=_("Question timed out."), embed=None) |
|
return |
|
if pred.result: |
|
async with self.data.custom("MODLOGS", guild.id, member.id).x() as logs: |
|
logs[page - 1]["reason"] = new_reason |
|
try: |
|
channel_id, message_id = logs[page - 1]["modlog_message"].values() |
|
except KeyError: |
|
result = None |
|
else: |
|
result = await edit_message(channel_id, message_id, new_reason) |
|
await message.clear_reactions() |
|
text = _("The reason was successfully edited!\n") |
|
if result is False: |
|
text += _("*The modlog message couldn't be edited. Check your logs for details.*") |
|
await message.edit(content=text, embed=None) |
|
else: |
|
await message.clear_reactions() |
|
await message.edit(content=_("The reason was not edited."), embed=None) |
|
|
|
async def _delete_case( |
|
self, |
|
ctx: commands.Context, |
|
pages: list, |
|
controls: dict, |
|
message: discord.Message, |
|
page: int, |
|
timeout: float, |
|
emoji: str, |
|
): |
|
""" |
|
Remove a case, this is linked to the warning system. |
|
""" |
|
|
|
async def delete_message(channel_id: int, message_id: int): |
|
channel: discord.TextChannel = guild.get_channel(channel_id) |
|
if channel is None: |
|
log.warn( |
|
f"[Guild {guild.id}] Failed to delete modlog message. " |
|
f"Channel {channel_id} not found." |
|
) |
|
return False |
|
try: |
|
message: discord.Message = await channel.fetch_message(message_id) |
|
except discord.errors.NotFound: |
|
log.warn( |
|
f"[Guild {guild.id}] Failed to delete modlog message. " |
|
f"Message {message_id} in channel {channel.id} not found." |
|
) |
|
return False |
|
except discord.errors.Forbidden: |
|
log.warn( |
|
f"[Guild {guild.id}] Failed to delete modlog message. " |
|
f"No permissions to fetch messages in channel {channel.id}." |
|
) |
|
return False |
|
except discord.errors.HTTPException as e: |
|
log.error( |
|
f"[Guild {guild.id}] Failed to delete modlog message. API exception raised.", |
|
exc_info=e, |
|
) |
|
return False |
|
try: |
|
await message.delete() |
|
except discord.errors.HTTPException as e: |
|
log.error( |
|
f"[Guild {guild.id}] Failed to delete modlog message. " |
|
"Unknown error when attempting message deletion.", |
|
exc_info=e, |
|
) |
|
return False |
|
return True |
|
|
|
guild = ctx.guild |
|
await message.clear_reactions() |
|
try: |
|
old_embed = message.embeds[0] |
|
except IndexError: |
|
return |
|
embed = discord.Embed() |
|
member_id = int( |
|
re.match(r"(?:.*#[0-9]{4})(?: \| )([0-9]{15,21})", old_embed.author.name).group(1) |
|
) |
|
member = self.bot.get_user(member_id) or UnavailableMember( |
|
self.bot, guild._state, member_id |
|
) |
|
if page == 0: |
|
|
|
embed.colour = 0xEE2B2B |
|
embed.description = _( |
|
"Member {member}'s clearance. By selecting ❌ on the user modlog summary, you can " |
|
"remove all warnings given to {member}. __All levels and notes are affected.__\n" |
|
"**Click on the reaction to confirm the removal of the entire user's modlog. " |
|
"This cannot be undone.**" |
|
).format(member=str(member)) |
|
else: |
|
level = int(re.match(r".*\(([0-9]*)\)", old_embed.fields[0].value).group(1)) |
|
can_unmute = False |
|
add_roles = False |
|
if level == 2: |
|
mute_role = guild.get_role(await self.cache.get_mute_role(guild)) |
|
member = guild.get_member(member.id) |
|
if member: |
|
if mute_role and mute_role in member.roles: |
|
can_unmute = True |
|
add_roles = await self.data.guild(guild).remove_roles() |
|
description = _( |
|
"Case #{number} deletion.\n**Click on the reaction to confirm your action.**" |
|
).format(number=page) |
|
if can_unmute or add_roles: |
|
description += _("\nNote: Deleting the case will also do the following:") |
|
if can_unmute: |
|
description += _("\n- unmute the member") |
|
if add_roles: |
|
description += _("\n- add all roles back to the member") |
|
embed.description = description |
|
await message.edit(embed=embed) |
|
menus.start_adding_reactions(message, predicates.ReactionPredicate.YES_OR_NO_EMOJIS) |
|
pred = predicates.ReactionPredicate.yes_or_no(message, ctx.author) |
|
try: |
|
await ctx.bot.wait_for("reaction_add", check=pred, timeout=30) |
|
except AsyncTimeoutError: |
|
await message.clear_reactions() |
|
await message.edit(content=_("Question timed out."), embed=None) |
|
return |
|
if not pred.result: |
|
await message.clear_reactions() |
|
await message.edit(content=_("Nothing was removed."), embed=None) |
|
return |
|
if page == 0: |
|
|
|
await self.data.custom("MODLOGS", guild.id, member.id).x.set([]) |
|
log.debug(f"[Guild {guild.id}] Cleared modlog of member {member} (ID: {member.id}).") |
|
await message.clear_reactions() |
|
await message.edit(content=_("User modlog cleared."), embed=None) |
|
return |
|
async with self.data.custom("MODLOGS", guild.id, member.id).x() as logs: |
|
try: |
|
roles = logs[page - 1]["roles"] |
|
except KeyError: |
|
roles = [] |
|
try: |
|
channel_id, message_id = logs[page - 1]["modlog_message"].values() |
|
except KeyError: |
|
result = None |
|
else: |
|
result = await delete_message(channel_id, message_id) |
|
logs.remove(logs[page - 1]) |
|
log.debug( |
|
f"[Guild {guild.id}] Removed case #{page} from member {member} (ID: {member.id})." |
|
) |
|
await message.clear_reactions() |
|
if can_unmute: |
|
await member.remove_roles( |
|
mute_role, |
|
reason=_("Warning deleted by {author}").format( |
|
author=f"{str(ctx.author)} (ID: {ctx.author.id})" |
|
), |
|
) |
|
if roles: |
|
roles = [guild.get_role(x) for x in roles] |
|
await member.add_roles(*roles, reason=_("Adding removed roles back after unmute.")) |
|
text = _("The case was successfully deleted!") |
|
if result is False: |
|
text += _("*The modlog message couldn't be deleted. Check your logs for details.*") |
|
await message.edit(content=_("The case was successfully deleted!"), embed=None) |
|
|
|
@commands.command() |
|
@checks.mod_or_permissions(kick_members=True) |
|
@commands.cooldown(1, 10, commands.BucketType.channel) |
|
async def warnlist(self, ctx: commands.Context, short: bool = False): |
|
""" |
|
List the latest warnings issued on the server. |
|
""" |
|
guild = ctx.guild |
|
full_text = "" |
|
warns = await self.api.get_all_cases(guild) |
|
if not warns: |
|
await ctx.send(_("No warnings have been issued in this server yet.")) |
|
return |
|
for i, warn in enumerate(warns, start=1): |
|
text = _( |
|
"--- Case {number} ---\n" |
|
"Member: {member} (ID: {member.id})\n" |
|
"Level: {level}\n" |
|
"Reason: {reason}\n" |
|
"Author: {author} (ID: {author.id})\n" |
|
"Date: {time}\n" |
|
).format(number=i, **warn) |
|
if warn["duration"]: |
|
duration = self.api._get_timedelta(warn["duration"]) |
|
text += _("Duration: {duration}\nUntil: {until}\n").format( |
|
duration=self.api._format_timedelta(duration), |
|
until=self.api._format_datetime(warn["time"] + duration), |
|
) |
|
text += "\n\n" |
|
full_text = text + full_text |
|
pages = [ |
|
x for x in pagify(full_text, delims=["\n\n", "\n"], priority=True, page_length=1900) |
|
] |
|
total_pages = len(pages) |
|
total_warns = len(warns) |
|
pages = [ |
|
f"```yml\n{x}```\n" |
|
+ _("{total} warnings. Page {i}/{pages}").format( |
|
total=total_warns, i=i, pages=total_pages |
|
) |
|
for i, x in enumerate(pages, start=1) |
|
] |
|
await menus.menu(ctx=ctx, pages=pages, controls=menus.DEFAULT_CONTROLS, timeout=60) |
|
|
|
@commands.command() |
|
@checks.mod_or_permissions(manage_roles=True) |
|
async def wsunmute(self, ctx: commands.Context, member: discord.Member): |
|
""" |
|
Unmute a member muted with WarnSystem. |
|
|
|
If the member's roles were removed, they will be granted back. |
|
|
|
*wsunmute = WarnSystem unmute. Feel free to add an alias.* |
|
""" |
|
guild = ctx.guild |
|
mute_role = guild.get_role(await self.cache.get_mute_role(guild)) |
|
if not mute_role: |
|
await ctx.send(_("The mute role is not set or lost.")) |
|
return |
|
if mute_role not in member.roles: |
|
await ctx.send(_("That member isn't muted.")) |
|
return |
|
case = await self.cache.get_temp_action(guild, member) |
|
if case and case["level"] == 2: |
|
roles = case["roles"] |
|
await self.cache.remove_temp_action(guild, member) |
|
else: |
|
cases = await self.api.get_all_cases(guild, member) |
|
roles = [] |
|
for data in cases[::-1]: |
|
if data["level"] == 2: |
|
try: |
|
roles = data["roles"] |
|
except KeyError: |
|
continue |
|
break |
|
await member.remove_roles( |
|
mute_role, |
|
reason=_("[WarnSystem] Member unmuted by {author} (ID: {author.id})").format( |
|
author=ctx.author |
|
), |
|
) |
|
roles = list(filter(None, [guild.get_role(x) for x in roles])) |
|
if not roles: |
|
await ctx.send(_("Member unmuted.")) |
|
return |
|
await ctx.send( |
|
_("Member unmuted. {len_roles} roles to reassign...").format(len_roles=len(roles)) |
|
) |
|
async with ctx.typing(): |
|
fails = [] |
|
for role in roles: |
|
try: |
|
await member.add_roles(role) |
|
except discord.errors.HTTPException as e: |
|
log.error( |
|
f"Failed to reapply role {role} ({role.id}) on guild {guild} " |
|
f"({guild.id}) after unmute.", |
|
exc_info=e, |
|
) |
|
fails.append(role) |
|
text = _("Done.") |
|
if fails: |
|
text.append(_("\n\nFailed to add {fails}/{len_roles} roles back:\n")) |
|
for role in fails: |
|
text.append(f"- {role.name}\n") |
|
for page in pagify(text): |
|
await ctx.send(page) |
|
|
|
@commands.command() |
|
@checks.mod_or_permissions(ban_members=True) |
|
async def wsunban(self, ctx: commands.Context, member: UnavailableMember): |
|
""" |
|
Unban a member banned with WarnSystem. |
|
|
|
*wsunban = WarnSystem unban. Feel free to add an alias.* |
|
""" |
|
guild = ctx.guild |
|
bans = await guild.bans() |
|
if member.id not in [x.user.id for x in bans]: |
|
await ctx.send(_("That user is not banned.")) |
|
return |
|
try: |
|
await guild.unban(member) |
|
except discord.errors.HTTPException as e: |
|
await ctx.send(_("Failed to unban the given member. Check your logs for details.")) |
|
log.error(f"Can't unban user {member.id} from guild {guild} ({guild.id})", exc_info=e) |
|
return |
|
case = await self.cache.get_temp_action(guild, member) |
|
if case and case["level"] == 5: |
|
await self.cache.remove_temp_action(guild, member) |
|
await ctx.send(_("User unbanned.")) |
|
|
|
@commands.command(hidden=True) |
|
async def warnsysteminfo(self, ctx): |
|
""" |
|
Get informations about the cog. |
|
""" |
|
await ctx.send( |
|
_( |
|
"Laggron's Dumb Cogs V3 - warnsystem\n\n" |
|
"Version: {0.__version__}\n" |
|
"Author: {0.__author__[0]}\n\n" |
|
"Github repository: https://github.com/retke/Laggrons-Dumb-Cogs/tree/v3\n" |
|
"Discord server: https://discord.gg/AVzjfpR\n" |
|
"Documentation: http://laggrons-dumb-cogs.readthedocs.io/\n" |
|
"Help translating the cog: https://crowdin.com/project/laggrons-dumb-cogs/\n\n" |
|
"Support my work on Patreon: https://www.patreon.com/retke" |
|
).format(self) |
|
) |
|
|
|
@listener() |
|
async def on_member_unban(self, guild: discord.Guild, user: discord.User): |
|
|
|
|
|
warns = await self.cache.get_temp_action(guild) |
|
to_remove = [] |
|
for member, data in warns.items(): |
|
if data["level"] == 2 or int(member) != user.id: |
|
continue |
|
to_remove.append(UnavailableMember(self.bot, guild._state, member)) |
|
if to_remove: |
|
await self.cache.bulk_remove_temp_action(guild, to_remove) |
|
log.info( |
|
f"[Guild {guild.id}] The temporary ban of user {user} (ID: {user.id}) " |
|
"was cancelled due to his manual unban." |
|
) |
|
|
|
@listener() |
|
async def on_member_update(self, before: discord.Member, after: discord.Member): |
|
guild = after.guild |
|
mute_role = guild.get_role(await self.cache.get_mute_role(guild)) |
|
if not mute_role: |
|
return |
|
if not (mute_role in before.roles and mute_role not in after.roles): |
|
return |
|
if after.id in self.cache.temp_actions: |
|
await self.cache.remove_temp_action(guild, after) |
|
log.info( |
|
f"[Guild {guild.id}] The temporary mute of member {after} (ID: {after.id}) " |
|
"was ended due to a manual unmute (role removed)." |
|
) |
|
|
|
@listener() |
|
async def on_guild_channel_create(self, channel: discord.abc.GuildChannel): |
|
guild = channel.guild |
|
if isinstance(channel, discord.VoiceChannel): |
|
return |
|
if not await self.data.guild(guild).update_mute(): |
|
return |
|
role = guild.get_role(await self.cache.get_mute_role(guild)) |
|
if not role: |
|
return |
|
try: |
|
await channel.set_permissions( |
|
role, |
|
send_messages=False, |
|
add_reactions=False, |
|
reason=_( |
|
"Updating channel settings so the mute role will work here. " |
|
"Disable the auto-update with [p]warnset autoupdate" |
|
), |
|
) |
|
except discord.errors.Forbidden: |
|
log.warn( |
|
f"[Guild {guild.id}] Couldn't update permissions of new channel {channel.name} " |
|
f"(ID: {channel.id}) due to a permission error." |
|
) |
|
except discord.errors.HTTPException as e: |
|
log.error( |
|
f"[Guild {guild.id}] Couldn't update permissions of new channel {channel.name} " |
|
f"(ID: {channel.id}) due to an unknown error.", |
|
exc_info=e, |
|
) |
|
|
|
@listener() |
|
async def on_member_ban(self, guild: discord.Guild, member: discord.Member): |
|
|
|
|
|
if not guild.me.guild_permissions.view_audit_log: |
|
return |
|
if not await self.data.guild(guild).log_manual(): |
|
return |
|
|
|
try: |
|
await self.api.get_modlog_channel(guild, 5) |
|
except errors.NotFound: |
|
return |
|
when = datetime.utcnow() |
|
before = when + timedelta(minutes=1) |
|
after = when - timedelta(minutes=1) |
|
await asyncio.sleep(10) |
|
attempts = 0 |
|
|
|
while attempts < 12: |
|
attempts += 1 |
|
try: |
|
entry = await guild.audit_logs( |
|
action=discord.AuditLogAction.ban, before=before, after=after |
|
).find(lambda e: e.target.id == member.id and after < e.created_at < before) |
|
except discord.Forbidden: |
|
break |
|
except discord.HTTPException: |
|
pass |
|
else: |
|
if entry: |
|
if entry.user.id != guild.me.id: |
|
|
|
mod, reason, date = entry.user, entry.reason, entry.created_at |
|
try: |
|
await self.api.warn( |
|
guild, |
|
[member], |
|
mod, |
|
5, |
|
reason, |
|
date=date, |
|
log_dm=False, |
|
take_action=False, |
|
) |
|
except Exception as e: |
|
log.error( |
|
f"[Guild {guild.id}] Failed to create a case based on manual ban. " |
|
f"Member: {member} ({member.id}). Author: {mod} ({mod.id}). " |
|
f"Reason: {reason}", |
|
exc_info=e, |
|
) |
|
return |
|
await asyncio.sleep(300) |
|
|
|
@listener() |
|
async def on_command_error(self, ctx, error): |
|
if not isinstance(error, commands.CommandInvokeError): |
|
return |
|
if not ctx.command.cog_name == self.__class__.__name__: |
|
|
|
return |
|
if isinstance(error, commands.MissingPermissions): |
|
await ctx.send( |
|
_( |
|
"I need the `Add reactions` and `Manage messages` in the " |
|
"current channel if you want to use this command." |
|
) |
|
) |
|
return |
|
with DisabledConsoleOutput(log): |
|
log.error( |
|
f"Exception in command '{ctx.command.qualified_name}'.\n\n", |
|
exc_info=error.original, |
|
) |
|
|
|
|
|
def __unload(self): |
|
self.cog_unload() |
|
|
|
def cog_unload(self): |
|
log.debug("Unloading cog...") |
|
|
|
|
|
|
|
close_logger(log) |
|
|
|
|
|
self.task.cancel() |
|
self.api.disable_automod() |
|
|