mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-08 10:22:31 -05:00
Migration to discord.py 2.0 (#5600)
* Temporarily set d.py to use latest git revision
* Remove `bot` param to Client.start
* Switch to aware datetimes
A lot of this is removing `.replace(...)` which while not technically
needed, simplifies the code base. There's only a few changes that are
actually necessary here.
* Update to work with new Asset design
* [threads] Update core ModLog API to support threads
- Added proper support for passing `Thread` to `channel`
when creating/editing case
- Added `parent_channel_id` attribute to Modlog API's Case
- Added `parent_channel` property that tries to get parent channel
- Updated case's content to show both thread and parent information
* [threads] Disallow usage of threads in some of the commands
- announceset channel
- filter channel clear
- filter channel add
- filter channel remove
- GlobalUniqueObjectFinder converter
- permissions addglobalrule
- permissions removeglobalrule
- permissions removeserverrule
- Permissions cog does not perform any validation for IDs
when setting through YAML so that has not been touched
- streamalert twitch/youtube/picarto
- embedset channel
- set ownernotifications adddestination
* [threads] Handle threads in Red's permissions system (Requires)
- Made permissions system apply rules of (only) parent in threads
* [threads] Update embed_requested to support threads
- Threads don't have their own embed settings and inherit from parent
* [threads] Update Red.message_eligible_as_command to support threads
* [threads] Properly handle invocation of [p](un)mutechannel in threads
Usage of a (un)mutechannel will mute/unmute user in the parent channel
if it's invoked in a thread.
* [threads] Update Filter cog to properly handle threads
- `[p]filter channel list` in a threads sends list for parent channel
- Checking for filter hits for a message in a thread checks its parent
channel's word list. There's no separate word list for threads.
* [threads] Support threads in Audio cog
- Handle threads being notify channels
- Update type hint for `is_query_allowed()`
* [threads] Update type hints and documentation to reflect thread support
- Documented that `{channel}` in CCs might be a thread
- Allowed (documented) usage of threads with `Config.channel()`
- Separate thread scope is still in the picture though
if it were to be done, it's going to be in separate in PR
- GuildContext.channel might be Thread
* Use less costy channel check in customcom's on_message_without_command
This isn't needed for d.py 2.0 but whatever...
* Update for in-place edits
* Embed's bool changed behavior, I'm hoping it doesn't affect us
* Address User.permissions_in() removal
* Swap VerificationLevel.extreme with VerificationLevel.highest
* Change to keyword-only parameters
* Change of `Guild.vanity_invite()` return type
* avatar -> display_avatar
* Fix metaclass shenanigans with Converter
* Update Red.add_cog() to be inline with `dpy_commands.Bot.add_cog()`
This means adding `override` keyword-only parameter and causing
small breakage by swapping RuntimeError with discord.ClientException.
* Address all DEP-WARNs
* Remove Context.clean_prefix and use upstream implementation instead
* Remove commands.Literal and use upstream implementation instead
Honestly, this was a rather bad implementation anyway...
Breaking but actually not really - it was provisional.
* Update Command.callback's setter
Support for functools.partial is now built into d.py
* Add new perms in HUMANIZED_PERM mapping (some from d.py 1.7 it seems)
BTW, that should really be in core instead of what we have now...
* Remove the part of do_conversion that has not worked for a long while
* Stop wrapping BadArgument in ConversionFailure
This is breaking but it's best to resolve it like this.
The functionality of ConversionFailure can be replicated with
Context.current_parameter and Context.current_argument.
* Add custom errors for int and float converters
* Remove Command.__call__ as it's now implemented in d.py
* Get rid of _dpy_reimplements
These were reimplemented for the purpose of typing
so it is no longer needed now that d.py is type hinted.
* Add return to Red.remove_cog
* Ensure we don't delete messages that differ only by used sticker
* discord.InvalidArgument->ValueError
* Move from raw <t:...> syntax to discord.utils.format_dt()
* Address AsyncIter removal
* Swap to pos-only for params that are pos-only in upstream
* Update for changes to Command.params
* [threads] Support threads in ignore checks and allow ignoring them
- Updated `[p](un)ignore channel` to accept threads
- Updated `[p]ignore list` to list ignored threads
- Updated logic in `Red.ignored_channel_or_guild()`
Ignores for guild channels now work as follows (only changes for threads):
- if channel is not a thread:
- check if user has manage channels perm in channel
and allow command usage if so
- check if channel is ignored and disallow command usage if so
- allow command usage if none of the conditions above happened
- if channel is a thread:
- check if user has manage channels perm in parent channel
and allow command usage if so
- check if parent channel is ignored and disallow command usage
if so
- check if user has manage thread perm in parent channel
and allow command usage if so
- check if thread is ignored and disallow command usage if so
- allow command usage if none of the conditions above happened
* [partial] Raise TypeError when channel is of PartialMessageable type
- Red.embed_requested
- Red.ignored_channel_or_guild
* [partial] Discard command messages when channel is PartialMessageable
* [threads] Add utilities for checking appropriate perms in both channels & threads
* [threads] Update code to use can_react_in() and @bot_can_react()
* [threads] Update code to use can_send_messages_in
* [threads] Add send_messages_in_threads perm to mute role and overrides
* [threads] Update code to use (bot/user)_can_manage_channel
* [threads] Update [p]diagnoseissues to work with threads
* Type hint fix
* [threads] Patch vendored discord.ext.menus to check proper perms in threads
I guess we've reached time when we have to patch the lib we vendor...
* Make docs generation work with non-final d.py releases
* Update discord.utils.oauth_url() usage
* Swap usage of discord.Embed.Empty/discord.embeds.EmptyEmbed to None
* Update usage of Guild.member_count to work with `None`
* Switch from Guild.vanity_invite() to Guild.vanity_url
* Update startup process to work with d.py's new asynchronous startup
* Use setup_hook() for pre-connect actions
* Update core's add_cog, remove_cog, and load_extension methods
* Update all setup functions to async and add awaits to bot.add_cog calls
* Modernize cogs by using async cog_load and cog_unload
* Address StoreChannel removal
* [partial] Disallow passing PartialMessageable to Case.channel
* [partial] Update cogs and utils to work better with PartialMessageable
- Ignore messages with PartialMessageable channel in CustomCommands cog
- In Filter cog, don't pass channel to modlog.create_case()
if it's PartialMessageable
- In Trivia cog, only compare channel IDs
- Make `.utils.menus.menu()` work for messages
with PartialMessageable channel
- Make checks in `.utils.tunnel.Tunnel.communicate()` more rigid
* Add few missing DEP-WARNs
This commit is contained in:
@@ -2,6 +2,7 @@ from redbot.core.bot import Red
|
||||
from .mutes import Mutes
|
||||
|
||||
|
||||
def setup(bot: Red):
|
||||
async def setup(bot: Red) -> None:
|
||||
cog = Mutes(bot)
|
||||
bot.add_cog(cog)
|
||||
await bot.add_cog(cog)
|
||||
cog.create_init_task()
|
||||
|
||||
@@ -12,7 +12,7 @@ from .voicemutes import VoiceMutes
|
||||
|
||||
from redbot.core.bot import Red
|
||||
from redbot.core import commands, checks, i18n, modlog, Config
|
||||
from redbot.core.utils import AsyncIter, bounded_gather
|
||||
from redbot.core.utils import AsyncIter, bounded_gather, can_user_react_in
|
||||
from redbot.core.utils.chat_formatting import (
|
||||
bold,
|
||||
humanize_timedelta,
|
||||
@@ -87,28 +87,42 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
"dm": False,
|
||||
"show_mod": False,
|
||||
}
|
||||
self.config.register_global(force_role_mutes=True, schema_version=0)
|
||||
# Tbh I would rather force everyone to use role mutes.
|
||||
# I also honestly think everyone would agree they're the
|
||||
# way to go. If for whatever reason someone wants to
|
||||
# enable channel overwrite mutes for their bot they can.
|
||||
# Channel overwrite logic still needs to be in place
|
||||
# for channel mutes methods.
|
||||
self.config.register_global(force_role_mutes=True, schema_version=0)
|
||||
self.config.register_guild(**default_guild)
|
||||
self.config.register_member(perms_cache={})
|
||||
self.config.register_channel(muted_users={})
|
||||
self._server_mutes: Dict[int, Dict[int, dict]] = {}
|
||||
self._channel_mutes: Dict[int, Dict[int, dict]] = {}
|
||||
self._ready = asyncio.Event()
|
||||
self._unmute_tasks: Dict[str, asyncio.Task] = {}
|
||||
self._unmute_task = None
|
||||
self._unmute_task: Optional[asyncio.Task] = None
|
||||
self.mute_role_cache: Dict[int, int] = {}
|
||||
self._channel_mute_events: Dict[int, asyncio.Event] = {}
|
||||
# this is a dict of guild ID's and asyncio.Events
|
||||
# to wait for a guild to finish channel unmutes before
|
||||
# checking for manual overwrites
|
||||
self._channel_mute_events: Dict[int, asyncio.Event] = {}
|
||||
self._ready = asyncio.Event()
|
||||
self._init_task: Optional[asyncio.Task] = None
|
||||
self._ready_raised = False
|
||||
|
||||
self._init_task = asyncio.create_task(self._initialize())
|
||||
def create_init_task(self) -> None:
|
||||
def _done_callback(task: asyncio.Task) -> None:
|
||||
exc = task.exception()
|
||||
if exc is not None:
|
||||
log.error(
|
||||
"An unexpected error occurred during Mutes's initialization.",
|
||||
exc_info=exc,
|
||||
)
|
||||
self._ready_raised = True
|
||||
self._ready.set()
|
||||
|
||||
self._init_task = asyncio.create_task(self.initialize())
|
||||
self._init_task.add_done_callback(_done_callback)
|
||||
|
||||
async def red_delete_data_for_user(
|
||||
self,
|
||||
@@ -125,13 +139,17 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
return
|
||||
|
||||
await self._ready.wait()
|
||||
if self._ready_raised:
|
||||
raise RuntimeError(
|
||||
"Mutes cog is in a bad state, can't proceed with data deletion request."
|
||||
)
|
||||
all_members = await self.config.all_members()
|
||||
for g_id, data in all_members.items():
|
||||
for m_id, mutes in data.items():
|
||||
if m_id == user_id:
|
||||
await self.config.member_from_ids(g_id, m_id).clear()
|
||||
|
||||
async def _initialize(self):
|
||||
async def initialize(self):
|
||||
await self.bot.wait_until_red_ready()
|
||||
await self._maybe_update_config()
|
||||
|
||||
@@ -184,11 +202,21 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
)
|
||||
|
||||
async def cog_before_invoke(self, ctx: commands.Context):
|
||||
await self._ready.wait()
|
||||
if not self._ready.is_set():
|
||||
async with ctx.typing():
|
||||
await self._ready.wait()
|
||||
if self._ready_raised:
|
||||
await ctx.send(
|
||||
"There was an error during Mutes's initialization."
|
||||
" Check logs for more information."
|
||||
)
|
||||
raise commands.CheckFailure()
|
||||
|
||||
def cog_unload(self):
|
||||
self._init_task.cancel()
|
||||
self._unmute_task.cancel()
|
||||
if self._init_task is not None:
|
||||
self._init_task.cancel()
|
||||
if self._unmute_task is not None:
|
||||
self._unmute_task.cancel()
|
||||
for task in self._unmute_tasks.values():
|
||||
task.cancel()
|
||||
|
||||
@@ -208,6 +236,8 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
"""
|
||||
await self.bot.wait_until_red_ready()
|
||||
await self._ready.wait()
|
||||
if self._ready_raised:
|
||||
raise RuntimeError("Mutes cog is in a bad state, cancelling automatic unmute task.")
|
||||
while True:
|
||||
await self._clean_tasks()
|
||||
try:
|
||||
@@ -533,7 +563,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
if duration:
|
||||
duration_str = humanize_timedelta(timedelta=duration)
|
||||
until = datetime.now(timezone.utc) + duration
|
||||
until_str = f"<t:{int(until.timestamp())}>"
|
||||
until_str = discord.utils.format_dt(until)
|
||||
|
||||
if moderator is None:
|
||||
moderator_str = _("Unknown")
|
||||
@@ -549,7 +579,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
description=reason,
|
||||
color=await self.bot.get_embed_color(user),
|
||||
)
|
||||
em.timestamp = datetime.utcnow()
|
||||
em.timestamp = datetime.now(timezone.utc)
|
||||
if duration:
|
||||
em.add_field(name=_("Until"), value=until_str)
|
||||
em.add_field(name=_("Duration"), value=duration_str)
|
||||
@@ -663,21 +693,18 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
}
|
||||
to_del: List[int] = []
|
||||
for user_id in self._channel_mutes[after.id].keys():
|
||||
send_messages = False
|
||||
speak = False
|
||||
unmuted = False
|
||||
if user_id in after_perms:
|
||||
send_messages = (
|
||||
after_perms[user_id]["send_messages"] is None
|
||||
or after_perms[user_id]["send_messages"] is True
|
||||
)
|
||||
speak = (
|
||||
after_perms[user_id]["speak"] is None
|
||||
or after_perms[user_id]["speak"] is True
|
||||
)
|
||||
for perm_name in (
|
||||
"send_messages",
|
||||
"send_messages_in_threads",
|
||||
"create_public_threads",
|
||||
"create_private_threads",
|
||||
"speak",
|
||||
):
|
||||
unmuted = unmuted or after_perms[user_id][perm_name] is not False
|
||||
# explicit is better than implicit :thinkies:
|
||||
if user_id in before_perms and (
|
||||
user_id not in after_perms or any((send_messages, speak))
|
||||
):
|
||||
if user_id in before_perms and (user_id not in after_perms or unmuted):
|
||||
user = after.guild.get_member(user_id)
|
||||
send_dm_notification = True
|
||||
if not user:
|
||||
@@ -900,7 +927,14 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
)
|
||||
async with ctx.typing():
|
||||
perms = discord.Permissions()
|
||||
perms.update(send_messages=False, speak=False, add_reactions=False)
|
||||
perms.update(
|
||||
send_messages=False,
|
||||
send_messages_in_threads=False,
|
||||
create_public_threads=False,
|
||||
create_private_threads=False,
|
||||
speak=False,
|
||||
add_reactions=False,
|
||||
)
|
||||
try:
|
||||
role = await ctx.guild.create_role(
|
||||
name=name, permissions=perms, reason=_("Mute role setup")
|
||||
@@ -942,6 +976,9 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
return channel.mention
|
||||
overs = discord.PermissionOverwrite()
|
||||
overs.send_messages = False
|
||||
overs.send_messages_in_threads = False
|
||||
overs.create_public_threads = False
|
||||
overs.create_private_threads = False
|
||||
overs.add_reactions = False
|
||||
overs.speak = False
|
||||
try:
|
||||
@@ -1007,7 +1044,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
"Role mutes do not have this issue.\n\n"
|
||||
"Are you sure you want to continue with channel overwrites? "
|
||||
)
|
||||
can_react = ctx.channel.permissions_for(ctx.me).add_reactions
|
||||
can_react = can_user_react_in(ctx.me, ctx.channel)
|
||||
if can_react:
|
||||
msg += _(
|
||||
"Reacting with \N{WHITE HEAVY CHECK MARK} will continue "
|
||||
@@ -1178,7 +1215,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
await modlog.create_case(
|
||||
self.bot,
|
||||
guild,
|
||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||
ctx.message.created_at,
|
||||
"smute",
|
||||
user,
|
||||
author,
|
||||
@@ -1233,7 +1270,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
"Some users could not be properly muted. Would you like to see who, where, and why?"
|
||||
)
|
||||
|
||||
can_react = ctx.channel.permissions_for(ctx.me).add_reactions
|
||||
can_react = can_user_react_in(ctx.me, ctx.channel)
|
||||
if not can_react:
|
||||
message += " (y/n)"
|
||||
query: discord.Message = await ctx.send(message)
|
||||
@@ -1279,7 +1316,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
*,
|
||||
time_and_reason: MuteTime = {},
|
||||
):
|
||||
"""Mute a user in the current text channel.
|
||||
"""Mute a user in the current text channel (or in the parent of the current thread).
|
||||
|
||||
`<users...>` is a space separated list of usernames, ID's, or mentions.
|
||||
`[time_and_reason]` is the time to mute for and reason. Time is
|
||||
@@ -1313,6 +1350,8 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
)
|
||||
author = ctx.message.author
|
||||
channel = ctx.message.channel
|
||||
if isinstance(channel, discord.Thread):
|
||||
channel = channel.parent
|
||||
guild = ctx.guild
|
||||
audit_reason = get_audit_reason(author, reason, shorten=True)
|
||||
issue_list = []
|
||||
@@ -1327,7 +1366,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
await modlog.create_case(
|
||||
self.bot,
|
||||
guild,
|
||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||
ctx.message.created_at,
|
||||
"cmute",
|
||||
user,
|
||||
author,
|
||||
@@ -1347,7 +1386,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
msg = _("{users} has been muted in this channel{time}.")
|
||||
if len(success_list) > 1:
|
||||
msg = _("{users} have been muted in this channel{time}.")
|
||||
await channel.send(
|
||||
await ctx.send(
|
||||
msg.format(users=humanize_list([f"{u}" for u in success_list]), time=time)
|
||||
)
|
||||
if issue_list:
|
||||
@@ -1397,7 +1436,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
await modlog.create_case(
|
||||
self.bot,
|
||||
guild,
|
||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||
ctx.message.created_at,
|
||||
"sunmute",
|
||||
user,
|
||||
author,
|
||||
@@ -1435,7 +1474,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
*,
|
||||
reason: Optional[str] = None,
|
||||
):
|
||||
"""Unmute a user in this channel.
|
||||
"""Unmute a user in this channel (or in the parent of this thread).
|
||||
|
||||
`<users...>` is a space separated list of usernames, ID's, or mentions.
|
||||
`[reason]` is the reason for the unmute.
|
||||
@@ -1448,6 +1487,8 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
return await ctx.send(_("You cannot unmute yourself."))
|
||||
async with ctx.typing():
|
||||
channel = ctx.channel
|
||||
if isinstance(channel, discord.Thread):
|
||||
channel = channel.parent
|
||||
author = ctx.author
|
||||
guild = ctx.guild
|
||||
audit_reason = get_audit_reason(author, reason, shorten=True)
|
||||
@@ -1463,7 +1504,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
await modlog.create_case(
|
||||
self.bot,
|
||||
guild,
|
||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||
ctx.message.created_at,
|
||||
"cunmute",
|
||||
user,
|
||||
author,
|
||||
@@ -1654,7 +1695,14 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
|
||||
new_overs: dict = {}
|
||||
move_channel = False
|
||||
new_overs.update(send_messages=False, add_reactions=False, speak=False)
|
||||
new_overs.update(
|
||||
send_messages=False,
|
||||
send_messages_in_threads=False,
|
||||
create_public_threads=False,
|
||||
create_private_threads=False,
|
||||
add_reactions=False,
|
||||
speak=False,
|
||||
)
|
||||
send_reason = None
|
||||
if user.voice and user.voice.channel:
|
||||
if channel.permissions_for(guild.me).move_members:
|
||||
@@ -1756,7 +1804,14 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
if channel.id in perms_cache:
|
||||
old_values = perms_cache[channel.id]
|
||||
else:
|
||||
old_values = {"send_messages": None, "add_reactions": None, "speak": None}
|
||||
old_values = {
|
||||
"send_messages": None,
|
||||
"send_messages_in_threads": None,
|
||||
"create_public_threads": None,
|
||||
"create_private_threads": None,
|
||||
"add_reactions": None,
|
||||
"speak": None,
|
||||
}
|
||||
|
||||
if user.voice and user.voice.channel:
|
||||
if channel.permissions_for(guild.me).move_members:
|
||||
|
||||
@@ -135,7 +135,7 @@ class VoiceMutes(MixinMeta):
|
||||
await modlog.create_case(
|
||||
self.bot,
|
||||
guild,
|
||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||
ctx.message.created_at,
|
||||
"vmute",
|
||||
user,
|
||||
author,
|
||||
@@ -211,7 +211,7 @@ class VoiceMutes(MixinMeta):
|
||||
await modlog.create_case(
|
||||
self.bot,
|
||||
guild,
|
||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||
ctx.message.created_at,
|
||||
"vunmute",
|
||||
user,
|
||||
author,
|
||||
|
||||
Reference in New Issue
Block a user