aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/help_channels.py33
1 files changed, 22 insertions, 11 deletions
diff --git a/bot/exts/help_channels.py b/bot/exts/help_channels.py
index ced2f72ef..5676728e9 100644
--- a/bot/exts/help_channels.py
+++ b/bot/exts/help_channels.py
@@ -217,18 +217,20 @@ class HelpChannels(commands.Cog):
and reset the send permissions cooldown for the user who started the session.
"""
log.trace("close command invoked; checking if the channel is in-use.")
- if ctx.channel.category == self.in_use_category:
- if await self.dormant_check(ctx):
- await self.remove_cooldown_role(ctx.author)
+ if ctx.channel.category != self.in_use_category:
+ log.debug(f"{ctx.author} invoked command 'dormant' outside an in-use help channel")
+ return
+
+ if not await self.dormant_check(ctx):
+ return
- # Ignore missing task when cooldown has passed but the channel still isn't dormant.
- if ctx.author.id in self.scheduler:
- self.scheduler.cancel(ctx.author.id)
+ await self.move_to_dormant(ctx.channel, "command")
- await self.move_to_dormant(ctx.channel, "command")
- self.scheduler.cancel(ctx.channel.id)
- else:
- log.debug(f"{ctx.author} invoked command 'dormant' outside an in-use help channel")
+ # Ignore missing task when cooldown has passed but the channel still isn't dormant.
+ if ctx.author.id in self.scheduler:
+ self.scheduler.cancel(ctx.author.id)
+
+ self.scheduler.cancel(ctx.channel.id)
async def get_available_candidate(self) -> discord.TextChannel:
"""
@@ -412,6 +414,8 @@ class HelpChannels(commands.Cog):
for channel in self.get_category_channels(self.in_use_category):
await self.move_idle_channel(channel, has_task=False)
+ log.trace(f'Initial state of help_channel_claimants: {await self.help_channel_claimants.items()}')
+
# Prevent the command from being used until ready.
# The ready event wasn't used because channels could change categories between the time
# the command is invoked and the cog is ready (e.g. if move_idle_channel wasn't called yet).
@@ -546,18 +550,25 @@ class HelpChannels(commands.Cog):
async def move_to_dormant(self, channel: discord.TextChannel, caller: str) -> None:
"""
- Make the `channel` dormant.
+ Make the `channel` dormant and remove the help cooldown role if it was the claimant's only channel.
A caller argument is provided for metrics.
"""
log.info(f"Moving #{channel} ({channel.id}) to the Dormant category.")
+ guild = self.bot.get_guild(constants.Guild.id)
+ claimant = guild.get_member(await self.help_channel_claimants.get(channel.id))
+
await self.help_channel_claimants.delete(channel.id)
await self.move_to_bottom_position(
channel=channel,
category_id=constants.Categories.help_dormant,
)
+ # Remove the cooldown role if the claimant has no other channels left
+ if claimant.id not in {user_id for _, user_id in await self.help_channel_claimants.items()}:
+ await self.remove_cooldown_role(claimant)
+
self.bot.stats.incr(f"help.dormant_calls.{caller}")
in_use_time = await self.get_in_use_time(channel.id)