2
2
3
3
import discord
4
4
from redbot .core import Config , checks , commands
5
+ from redbot .core .utils .menus import start_adding_reactions
5
6
from redbot .core .utils .mod import is_mod_or_superior as is_mod
7
+ from redbot .core .utils .predicates import ReactionPredicate
6
8
7
9
8
10
class Timeout (commands .Cog ):
@@ -13,7 +15,8 @@ def __init__(self):
13
15
default_guild = {
14
16
"logchannel" : None ,
15
17
"report" : False ,
16
- "timeoutrole" : None
18
+ "timeoutrole" : None ,
19
+ "timeout_channel" : None
17
20
}
18
21
self .config .register_guild (** default_guild )
19
22
self .config .register_member (
@@ -105,6 +108,11 @@ async def timeout_add(self, ctx: commands.Context, user: discord.Member, reason:
105
108
106
109
async def timeout_remove (self , ctx : commands .Context , user : discord .Member , reason : str ):
107
110
"""Remove user from timeout"""
111
+
112
+ # Retrieve timeout channel
113
+ timeout_channel_config = await self .config .guild (ctx .guild ).timeout_channel ()
114
+ timeout_channel = ctx .guild .get_channel (timeout_channel_config )
115
+
108
116
# Fetch and define user's previous roles.
109
117
user_roles = []
110
118
for role in await self .config .member (user ).roles ():
@@ -132,6 +140,17 @@ async def timeout_remove(self, ctx: commands.Context, user: discord.Member, reas
132
140
}
133
141
await self .report_handler (ctx , user , action_info )
134
142
143
+ # Ask if user wishes to clear the timeout channel if they've defined one
144
+ if timeout_channel :
145
+ archive_query = await ctx .send (f"Do you wish to clear the contents of { timeout_channel .mention } ?" )
146
+ start_adding_reactions (archive_query , ReactionPredicate .YES_OR_NO_EMOJIS )
147
+
148
+ pred = ReactionPredicate .yes_or_no (archive_query , ctx .author )
149
+ await ctx .bot .wait_for ("reaction_add" , check = pred )
150
+ if pred .result is True :
151
+ purge = await timeout_channel .purge (bulk = True )
152
+ await ctx .send (f"Cleared { len (purge )} messages from { timeout_channel .mention } ." )
153
+
135
154
# Commands
136
155
137
156
@commands .guild_only ()
@@ -160,7 +179,7 @@ async def timeoutset_report(self, ctx: commands.Context, choice: str):
160
179
These reports will be sent to the configured log channel as an embed.
161
180
The embed will specify the user's details and the moderator who executed the command.
162
181
163
- Set log channel with `[p]timeoutset logchannel`.
182
+ Set log channel with `[p]timeoutset logchannel` before enabling reporting .
164
183
165
184
Example:
166
185
- `[p]timeoutset report enable`
@@ -198,6 +217,19 @@ async def timeoutset_role(self, ctx: commands.Context, role: discord.Role):
198
217
await self .config .guild (ctx .guild ).timeoutrole .set (role .id )
199
218
await ctx .tick ()
200
219
220
+ @timeoutset .command (name = "timeoutchannel" )
221
+ @checks .mod ()
222
+ async def timeoutset_timeout_channel (self , ctx : commands .Context , channel : discord .TextChannel ):
223
+ """Set the timeout channel.
224
+
225
+ This is required if you wish to optionaly purge the channel upon removing a user from timeout.
226
+
227
+ Example:
228
+ - `[p]timeoutset timeoutchannel #timeout`
229
+ """
230
+ await self .config .guild (ctx .guild ).timeout_channel .set (channel .id )
231
+ await ctx .tick ()
232
+
201
233
@timeoutset .command (name = "list" )
202
234
@checks .mod ()
203
235
async def timeoutset_list (self , ctx : commands .Context ):
@@ -206,6 +238,7 @@ async def timeoutset_list(self, ctx: commands.Context):
206
238
log_channel = await self .config .guild (ctx .guild ).logchannel ()
207
239
report = await self .config .guild (ctx .guild ).report ()
208
240
timeout_role = ctx .guild .get_role (await self .config .guild (ctx .guild ).timeoutrole ())
241
+ timeout_channel = await self .config .guild (ctx .guild ).timeout_channel ()
209
242
210
243
if log_channel :
211
244
log_channel = f"<#{ log_channel } >"
@@ -222,6 +255,11 @@ async def timeoutset_list(self, ctx: commands.Context):
222
255
else :
223
256
report = "Disabled"
224
257
258
+ if timeout_channel :
259
+ timeout_channel = f"<#{ timeout_channel } >"
260
+ else :
261
+ timeout_channel = "Unconfigured"
262
+
225
263
# Build embed
226
264
embed = discord .Embed (
227
265
color = (await ctx .embed_colour ())
@@ -245,6 +283,11 @@ async def timeoutset_list(self, ctx: commands.Context):
245
283
value = timeout_role ,
246
284
inline = True
247
285
)
286
+ embed .add_field (
287
+ name = "Timeout Channel" ,
288
+ value = timeout_channel ,
289
+ inline = True
290
+ )
248
291
249
292
# Send embed
250
293
await ctx .send (embed = embed )
0 commit comments