This repository was archived by the owner on Dec 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmoderation.py
2301 lines (2073 loc) · 120 KB
/
moderation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
Dredd, discord bot
Copyright (C) 2022 Moksej
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import discord
import typing
import asyncio
import aiohttp
import re
import shlex
import argparse
from discord.ext import commands
from discord.utils import escape_markdown
from collections import Counter
from datetime import datetime, timezone, timedelta
from utils import default, btime
from utils.checks import BannedMember, MemberID, moderator, admin
from utils.paginator import Pages
from db.cache import CacheManager as cm
from contextlib import suppress
from utils.i18n import locale_doc
class Arguments(argparse.ArgumentParser):
def error(self, message):
raise RuntimeError(message)
# noinspection PyProtectedMember,PyUnboundLocalVariable,PyArgumentEqualDefault,PyTypeChecker
class moderation(commands.Cog, name='Moderation'):
def __init__(self, bot):
self.bot = bot
self.help_icon = '<:bann:747192603640070237>'
self.big_icon = 'https://cdn.discordapp.com/emojis/747192603640070237.png?v=1'
# async def cog_check(self, ctx):
# if ctx.guild is None:
# return False
# return True
@staticmethod
async def _basic_cleanup_strategy(ctx, search):
count = 0
async for msg in ctx.history(limit=search, before=ctx.message):
if msg.author == ctx.me:
await msg.delete()
count += 1
return {'Bot': count}
async def _complex_cleanup_strategy(self, ctx, search):
prefixes = [self.bot.prefix[ctx.guild.id], ctx.guild.me.mention]
if await ctx.bot.is_admin(ctx.author):
prefixes.append('d ')
if await ctx.bot.is_booster(ctx.author):
if cm.get(self.bot, 'boosters', ctx.author.id):
prefixes.append(cm.get(self.bot, 'boosters', ctx.author.id))
def check(m):
return m.author == ctx.me or m.content.startswith(tuple(prefixes))
deleted = await ctx.channel.purge(limit=search, check=check, before=ctx.message)
return Counter(m.author.display_name for m in deleted)
async def do_removal(self, ctx, limit, predicate, *, before=None, after=None):
if limit > 2000:
return await ctx.send(_("{0} Limit exceeded by **{1}**").format(
self.bot.settings['emojis']['misc']['warn'], limit - 2000
))
if before is None:
before = ctx.message
else:
before = discord.Object(id=before)
if after is not None:
after = discord.Object(id=after)
try:
deleted = await ctx.channel.purge(limit=limit, before=before, after=after, check=predicate)
except discord.Forbidden:
return await ctx.send(_("{0} Looks like I'm missing permissions!").format(self.bot.settings['emojis']['misc']['warn']))
except discord.HTTPException as e:
return await ctx.send(_("{0} Error occured!\n`{1}`").format(self.bot.settings['emojis']['misc']['warn'], e))
except discord.errors.NotFound:
return
except Exception as e:
return await ctx.send(_("{0} Error occured!\n`{1}`").format(self.bot.settings['emojis']['misc']['warn'], e))
spammers = Counter(m.author.display_name for m in deleted)
deleted = len(deleted)
if deleted == 1:
messages = [_("Purged **1** message")]
else:
messages = [_("Purged **{0}** messages").format(deleted)]
if deleted:
messages.append('')
spammers = sorted(spammers.items(), key=lambda t: t[1], reverse=True)
messages.extend(f'**{escape_markdown(name)}**: {count}' for name, count in spammers)
to_send = '\n'.join(messages)
if len(to_send) > 2000:
await ctx.send(_("Purged **{0}** messages").format(deleted), delete_after=10)
else:
message = to_send
await ctx.send(message, delete_after=10)
@commands.command(brief=_("Clean up the bot's messages"))
@moderator(manage_messages=True)
@commands.cooldown(1, 5, commands.BucketType.member)
@commands.guild_only()
@locale_doc
async def cleanup(self, ctx, search=100):
_(""" Cleans up the bot's messages from the channel.
If the bot has Manage Messages permissions then it will try to delete messages that look like they invoked the bot as well. """)
strategy = self._basic_cleanup_strategy
if ctx.channel.permissions_for(ctx.guild.me).manage_messages:
strategy = self._complex_cleanup_strategy
spammers = await strategy(ctx, search)
deleted = sum(spammers.values())
messages = [_('{0} message was removed.').format(deleted) if deleted == 1 else _('{0} messages were removed.').format(deleted)]
if deleted:
messages.append(_('\nTotal messages by user:'))
spammers = sorted(spammers.items(), key=lambda t: t[1], reverse=True)
messages.extend(f'- **{author}**: {count}' for author, count in spammers)
await ctx.send('\n'.join(messages))
@commands.command(brief=_("Change member's nickname"), aliases=['setnick', 'snick', 'nickset', 'nset', 'nick'])
@moderator(manage_nicknames=True)
@commands.bot_has_permissions(manage_nicknames=True)
@commands.cooldown(1, 10, commands.BucketType.member)
@commands.guild_only()
@locale_doc
async def setnickname(self, ctx, members: commands.Greedy[discord.Member], *, new_nick: commands.clean_content = None): # sourcery no-metrics
_(""" Changes member's nickname in the server.
If multiple members are provided, they all get their nicknames changed in the server. """)
if len(members) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(self.bot.settings['emojis']['misc']['warn']))
if new_nick and len(new_nick) > 32:
return await ctx.send(_("{0} Nicknames can only be 32 characters long."
" You're {1} characters over.").format(self.bot.settings['emojis']['misc']['warn'], len(new_nick) - 32))
if len(set(members)) > 15:
return await ctx.send(_("{0} | You can only change 15 members nickname at once."))
if len(set(members)) != 0:
changed, failed, success, fail = [], [], 0, 0
for member in set(members):
if member == ctx.author:
failed.append(_("{0} ({1}) - **You can change your nickname by using slash commands**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.guild.me.top_role.position:
failed.append(_("{0} ({1}) - **Member is above me in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.author.top_role.position:
failed.append(_("{0} ({1}) - **Member is above you in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
try:
await member.edit(nick=new_nick, reason=f"Invoked by: {ctx.author}")
changed.append(f"{member.mention} ({member.id})")
success += 1
except Exception as e:
failed.append(f"{member.mention} ({member.id}) - {e}")
fail += 1
continue
try:
renamed, not_renamed = "", ""
if changed and not failed:
renamed += _("**I've successfully re-named {0} member(s):**\n").format(success)
for num, res in enumerate(changed, start=0):
renamed += f"`[{num + 1}]` {res}\n"
await ctx.send(renamed)
if changed and failed:
renamed += _("**I've successfully re-named {0} member(s):**\n").format(success)
not_renamed += _("**However I failed to re-name the following {0} member(s):**\n").format(fail)
for num, res in enumerate(changed, start=0):
renamed += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(failed, start=0):
not_renamed += f"`[{num + 1}]` {res}\n"
await ctx.send(renamed + not_renamed)
if not changed and failed:
not_renamed += _("**I failed to re-name all the members:**\n")
for num, res in enumerate(failed, start=0):
not_renamed += f"`[{num + 1}]` {res}\n"
await ctx.send(not_renamed)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Dehoist members"))
@moderator(manage_nicknames=True)
@commands.bot_has_permissions(manage_nicknames=True)
@commands.guild_only()
@locale_doc
async def dehoist(self, ctx, *, nickname: str = None): # sourcery no-metrics
_(""" Dehoists members who have non-alphabetic characters at the start of their name """)
if nickname and len(nickname) > 32:
return await ctx.send(_("{0} Nicknames can only be 32 characters long."
" You're {1} characters over.").format(self.bot.settings['emojis']['misc']['warn'], len(nickname) - 32))
nickname = nickname or 'z (hoister)'
dehoisted, failed, success_list, success, fail = [], [], [], 0, 0
await ctx.send(_("Started dehoisting process..."))
for member in ctx.guild.members:
if not member.display_name[0].isalnum():
try:
await member.edit(nick=nickname, reason=default.responsible(ctx.author, 'dehoisting.'))
dehoisted.append(f"{member.mention} ({member.id})")
success_list.append(member)
success += 1
except discord.HTTPException:
failed.append(_("{0} ({1}) - **Failed to dehoist them.**").format(member.mention, member.id))
fail += 1
continue
except discord.Forbidden:
failed.append(_("{0} ({1}) - **Looks like I'm missing permissions to dehoist them.**").format(member.mention, member.id))
fail += 1
continue
else:
continue
if success == 0:
return await ctx.send(_("{0} No hoisters were found.").format(self.bot.settings['emojis']['misc']['warn']))
try:
renamed, not_renamed = "", ""
limit_20 = _("List is limited to 20.")
if dehoisted and not failed:
renamed += _("**I've successfully dehoisted {0} member(s):**\n").format(success)
for num, res in enumerate(dehoisted[:20], start=0):
renamed += f"`[{num + 1}]` {res}\n"
if len(dehoisted) > 20:
renamed += limit_20
await ctx.send(renamed)
self.bot.dispatch('dehoist', ctx.guild, ctx.author, success_list)
if dehoisted and failed:
renamed += _("**I've successfully dehoisted {0} member(s):**\n").format(success)
not_renamed += _("**However I failed to dehoist the following {0} member(s):**\n").format(fail)
for num, res in enumerate(dehoisted[:10], start=0):
renamed += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(failed[:10], start=0):
not_renamed += f"`[{num + 1}]` {res}\n"
message = _("List is limited to 10.")
if len(dehoisted) > 10:
renamed += message
if len(failed) > 10:
not_renamed += message
await ctx.send(renamed + not_renamed)
self.bot.dispatch('dehoist', ctx.guild, ctx.author, success_list)
if not dehoisted and failed:
not_renamed += _("**I failed to dehoist all the members:**\n")
for num, res in enumerate(failed[:20], start=0):
not_renamed += f"`[{num + 1}]` {res}\n"
if len(failed) > 20:
not_renamed += limit_20
await ctx.send(not_renamed)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Kick member from the server"), aliases=['masskick'])
@moderator(kick_members=True)
@commands.bot_has_permissions(kick_members=True)
@commands.guild_only()
@commands.cooldown(1, 10, commands.BucketType.member)
@locale_doc
async def kick(self, ctx, members: commands.Greedy[discord.Member], *, reason: commands.clean_content = None): # sourcery no-metrics
_(""" Kick a member from the server. If multiple members are provided, they all get kicked from the server. """)
if len(members) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(
self.bot.settings['emojis']['misc']['warn']
))
reason = reason or None
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
if len(set(members)) > 15:
return await ctx.send(_("{0} | You can only kick 15 members at once.").format(self.bot.settings['emojis']['misc']['warn']))
if len(set(members)) != 0:
kicked, failed, success_kick, success, fail = [], [], [], 0, 0
for member in set(members):
if member == ctx.author:
failed.append(_("{0} ({1}) - **You are the member though?**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.guild.me.top_role.position:
failed.append(_("{0} ({1}) - **Member is above me in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.top_role.position >= ctx.author.top_role.position:
failed.append(_("{0} ({1}) - **Member is above you in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
else:
try:
await ctx.guild.kick(member, reason=default.responsible(ctx.author, reason))
kicked.append(f"{member.mention} ({member.id})")
success += 1
success_kick.append(member)
except discord.Forbidden:
failed.append(_("{0} ({1}) - **Missing permissions? Do they have administrator?**").format(
member.mention, member.id
))
fail += 1
continue
except discord.HTTPException:
failed.append(_("{0} ({1}) - **Kicking failed**").format(
member.mention, member.id
))
fail += 1
continue
try:
booted, not_booted = "", ""
if kicked and not failed:
booted += _("**I've successfully kicked {0} member(s):**\n").format(success)
for num, res in enumerate(kicked, start=0):
booted += f"`[{num + 1}]` {res}\n"
await ctx.send(booted)
self.bot.dispatch('kick', ctx.guild, ctx.author, success_kick, reason)
if kicked and failed:
booted += _("**I've successfully kicked {0} member(s):**\n").format(success)
not_booted += _("**However, I failed to kick the following {0} member(s):**\n").format(fail)
for num, res in enumerate(kicked, start=0):
booted += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(failed, start=0):
not_booted += f"`[{num + 1}]` {res}\n"
await ctx.send(booted + not_booted)
self.bot.dispatch('kick', ctx.guild, ctx.author, success_kick, reason)
if not kicked and failed:
not_booted += _("**I failed to kick all the members:**\n")
for num, res in enumerate(failed, start=0):
not_booted += f"`[{num + 1}]` {res}\n"
await ctx.send(not_booted)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Ban member from the server"), aliases=['massban', 'tempban'])
@moderator(ban_members=True)
@commands.bot_has_permissions(ban_members=True)
@commands.guild_only()
@commands.cooldown(1, 10, commands.BucketType.member)
@locale_doc
async def ban(self, ctx, members: commands.Greedy[discord.Member], duration: typing.Optional[btime.FutureTime], *, reason: commands.clean_content = None): # sourcery no-metrics
_(""" Ban a member from the server. If multiple members are provided, they all get banned from the server. """)
if len(members) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(
self.bot.settings['emojis']['misc']['warn']
))
reason = reason or None
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
if len(set(members)) > 15:
return await ctx.send(_("{0} | You can only ban 15 members at once.").format(self.bot.settings['emojis']['misc']['warn']))
if len(set(members)) != 0:
banned, failed, success_ban, success, fail = [], [], [], 0, 0
for member in set(members):
if member == ctx.author:
failed.append(_("{0} ({1}) - **You are the member though?**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.guild.me.top_role.position:
failed.append(_("{0} ({1}) - **Member is above me in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.top_role.position >= ctx.author.top_role.position:
failed.append(_("{0} ({1}) - **Member is above you in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
else:
try:
await ctx.guild.ban(member, reason=default.responsible(ctx.author, reason), delete_message_days=0)
await default.execute_temporary(ctx, 2, member, ctx.author, ctx.guild, None, duration, reason)
banned.append(f"{member.mention} ({member.id})")
success += 1
success_ban.append(member)
except discord.Forbidden:
failed.append(_("{0} ({1}) - **Missing permissions? Do they have administrator?**").format(
member.mention, member.id
))
fail += 1
continue
except discord.HTTPException:
failed.append(_("{0} ({1}) - **Banning failed**").format(member.mention, member.id))
fail += 1
continue
try:
booted, not_booted = "", ""
if banned and not failed:
booted += _("**I've successfully banned {0} member(s){1}:**\n").format(success,
_(' for {0}').format(btime.human_timedelta(duration.dt, source=ctx.message.created_at, suffix=None)) if duration is not None else '')
for num, res in enumerate(banned, start=0):
booted += f"`[{num + 1}]` {res}\n"
await ctx.send(booted)
self.bot.dispatch('ban', ctx.guild, ctx.author, success_ban, duration if duration else None, reason, ctx.message.created_at)
if banned and failed:
booted += _("**I've successfully banned {0} member(s){1}:**\n").format(success,
_(' for {0}').format(btime.human_timedelta(duration.dt, source=ctx.message.created_at, suffix=None)) if duration is not None else '')
not_booted += _("**However, I failed to ban the following {0} member(s):**\n").format(fail)
for num, res in enumerate(banned, start=0):
booted += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(failed, start=0):
not_booted += f"`[{num + 1}]` {res}\n"
await ctx.send(booted + not_booted)
self.bot.dispatch('ban', ctx.guild, ctx.author, success_ban, duration if duration else None, reason, ctx.message.created_at)
if not banned and failed:
not_booted += _("**I failed to ban all the members:**\n")
for num, res in enumerate(failed, start=0):
not_booted += f"`[{num + 1}]` {res}\n"
await ctx.send(not_booted)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Softban member from the server"), aliases=['soft-ban'])
@moderator(ban_members=True, manage_messages=True)
@commands.guild_only()
@commands.bot_has_permissions(ban_members=True, manage_messages=True)
@commands.cooldown(1, 10, commands.BucketType.member)
@locale_doc
async def softban(self, ctx, members: commands.Greedy[discord.Member], *, reason: commands.clean_content = None): # sourcery no-metrics
_(""" Soft-ban a member from the server. If multiple members are provided, they all get soft-banned from the server. """)
if len(members) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(
self.bot.settings['emojis']['misc']['warn']
))
reason = reason or None
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
if len(set(members)) > 15:
return await ctx.send(_("{0} | You can only soft-ban 15 members at once.").format(self.bot.settings['emojis']['misc']['warn']))
if len(set(members)) != 0:
banned, failed, success_ban, success, fail = [], [], [], 0, 0
for member in set(members):
if member == ctx.author:
failed.append(_("{0} ({1}) - **You are the member though?**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.guild.me.top_role.position:
failed.append(_("{0} ({1}) - **Member is above me in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.top_role.position >= ctx.author.top_role.position:
failed.append(_("{0} ({1}) - **Member is above you in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
else:
try:
await ctx.guild.ban(member, reason=default.responsible(ctx.author, reason), delete_message_days=7)
await ctx.guild.unban(member, reason=default.responsible(ctx.author, reason))
banned.append(f"{member.mention} ({member.id})")
success += 1
success_ban.append(member)
except discord.Forbidden:
failed.append(_("{0} ({1}) - **Missing permissions? Do they have administrator?**").format(
member.mention, member.id
))
fail += 1
continue
except discord.HTTPException:
failed.append(_("{0} ({1}) - **Banning failed**").format(member.mention, member.id))
fail += 1
continue
try:
booted, not_booted = "", ""
if banned and not failed:
booted += _("**I've successfully soft-banned {0} member(s):**\n").format(success)
for num, res in enumerate(banned, start=0):
booted += f"`[{num + 1}]` {res}\n"
await ctx.send(booted)
self.bot.dispatch('softban', ctx.guild, ctx.author, success_ban, reason)
if banned and failed:
booted += _("**I've successfully soft-banned {0} member(s):**\n").format(success)
not_booted += _("**However, I failed to soft-ban the following {0} member(s):**\n").format(fail)
for num, res in enumerate(banned, start=0):
booted += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(failed, start=0):
not_booted += f"`[{num + 1}]` {res}\n"
await ctx.send(booted + not_booted)
self.bot.dispatch('softban', ctx.guild, ctx.author, success_ban, reason)
if not banned and failed:
not_booted += _("**I failed to soft-ban all the members:**\n")
for num, res in enumerate(failed, start=0):
not_booted += f"`[{num + 1}]` {res}\n"
await ctx.send(not_booted)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Hackban user from the server"), aliases=['hack-ban'])
@moderator(ban_members=True)
@commands.guild_only()
@commands.bot_has_permissions(ban_members=True)
@commands.cooldown(1, 10, commands.BucketType.member)
@commands.max_concurrency(1, commands.BucketType.guild)
@locale_doc
async def hackban(self, ctx, users: commands.Greedy[MemberID], *, reason: commands.clean_content = None): # sourcery no-metrics
_(""" Hack-ban a user who's not in the server from the server. Users must be IDs else it won't work. """)
if len(set(users)) == 0:
raise commands.MissingRequiredArgument(self.hackban.params['users'])
reason = reason or None
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
failed, success, fail_count, suc_count, banned = [], [], 0, 0, []
await ctx.send(_("Starting the process, this might take a while."))
for user in set(users):
try:
m = await commands.MemberConverter().convert(ctx, str(user))
if m is not None:
failed.append(_("{0} ({0.id}) - **User is in this server, use `ban` command instead.**").format(m))
fail_count += 1
continue
except Exception:
pass
try:
user = await self.bot.try_user(user)
except Exception:
failed.append(_("{0} User doesn't seem to exist, are you sure the ID is correct?").format(user))
fail_count += 1
continue
with suppress(discord.NotFound):
ban_check = await ctx.guild.fetch_ban(discord.Object(id=user.id))
if ban_check:
failed.append(_("{0} ({0.id}) - **User is already banned.**").format(user))
fail_count += 1
continue
reason = _('No reason provided.') if reason is None else reason
await ctx.guild.ban(user, reason=default.responsible(ctx.author, reason), delete_message_days=0)
success.append(_("{0} ({0.id})").format(user))
banned.append(user)
suc_count += 1
try:
booted, not_booted = "", ""
if success and not failed:
booted += _("**I've successfully hack-banned {0} member(s):**\n").format(suc_count)
for num, res in enumerate(success[:15], start=0):
booted += f"`[{num + 1}]` {res}\n"
if len(success) > 15:
booted += f"**(+{len(success) - 15})**"
await ctx.send(booted)
self.bot.dispatch('hackban', ctx.guild, ctx.author, banned, reason)
if success and failed:
booted += _("**I've successfully hack-banned {0} member(s):**\n").format(suc_count)
not_booted += _("**However, I failed to hack-ban the following {0} member(s):**\n").format(fail_count)
for num, res in enumerate(success[:15], start=0):
booted += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(failed[:15], start=0):
not_booted += f"`[{num + 1}]` {res}\n"
if len(success) > 15:
booted += f"**(+{len(success) - 15})**"
if len(failed) > 15:
not_booted += f"**(+{len(failed) - 15})**"
await ctx.send(booted + not_booted)
self.bot.dispatch('hackban', ctx.guild, ctx.author, banned, reason)
if not success and failed:
not_booted += _("**I failed to hack-ban all the members:**\n")
for num, res in enumerate(failed[:15], start=0):
not_booted += f"`[{num + 1}]` {res}\n"
if len(failed) > 15:
not_booted += f"**(+{len(failed) - 15})**"
await ctx.send(not_booted)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Unban user from the server"), aliases=['uba'])
@moderator(ban_members=True)
@commands.guild_only()
@commands.bot_has_permissions(ban_members=True)
@commands.cooldown(1, 10, commands.BucketType.member)
@locale_doc
async def unban(self, ctx, banned_user: BannedMember, *, reason: commands.clean_content = None):
_(""" Unbans a banned user from this server """)
reason = reason or None
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
try:
await ctx.guild.unban(banned_user.user, reason=default.responsible(ctx.author, reason)) # type: ignore
await ctx.send(_("I've successfully unbanned **{0}** for **{1}**").format(
banned_user.user, _('No reason provided.') if reason is None else reason # type: ignore
))
await default.execute_untemporary(ctx, 1, banned_user.user, ctx.guild) # type: ignore
self.bot.dispatch('unban', ctx.guild, ctx.author, [banned_user.user], reason) # type: ignore
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Unban everyone from the server"), aliases=['massunban', 'ubaall', 'massuba'])
@moderator(ban_members=True)
@commands.guild_only()
@commands.bot_has_permissions(ban_members=True)
@commands.cooldown(1, 10, commands.BucketType.member)
@locale_doc
async def unbanall(self, ctx, *, reason: commands.clean_content = None):
_(""" Unban everyone from the server """)
bans = len(await ctx.guild.bans())
if bans == 0:
return await ctx.send(_("{0} This server has no bans.").format(self.bot.settings['emojis']['misc']['warn']))
reason = reason or None
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 400
))
def check(r, u):
return u.id == ctx.author.id and r.message.id == checkmsg.id
loop = True
total_unbanned = []
while loop:
try:
checkmsg = await ctx.channel.send(_("Are you sure you want to unban all **{0}** members from this server?").format(bans))
await checkmsg.add_reaction(f"{self.bot.settings['emojis']['misc']['white-mark']}")
await checkmsg.add_reaction(f"{self.bot.settings['emojis']['misc']['red-mark']}")
reaction, user = await self.bot.wait_for('reaction_add', check=check, timeout=180.0)
if str(reaction) == f"{self.bot.settings['emojis']['misc']['white-mark']}":
loop = False
try:
await checkmsg.clear_reactions()
except Exception:
pass
await checkmsg.edit(content=_("Unbanning all members..."))
fail = 0
for member in await ctx.guild.bans():
try:
await ctx.guild.unban(member.user, reason=default.responsible(ctx.author, reason))
await default.execute_untemporary(ctx, 1, member.user, ctx.guild)
total_unbanned.append(member.user)
except discord.HTTPException:
fail += 1
pass
await checkmsg.edit(content=_("I've successfully unbanned **{0}/{1}** members.").format(bans - fail, bans))
self.bot.dispatch('unban', ctx.guild, ctx.author, total_unbanned, reason)
elif str(reaction) == f"{self.bot.settings['emojis']['misc']['red-mark']}":
loop = False
await checkmsg.edit(content=_("I will not unban anyone."), delete_after=20)
try:
await checkmsg.clear_reactions()
except Exception:
pass
else:
await checkmsg.edit(content=_('Wrong emoji; please try again.'), delete_after=20)
try:
await checkmsg.clear_reactions()
except Exception:
pass
except asyncio.exceptions.TimeoutError:
return
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Mute member in the server"), aliases=['tempmute'])
@moderator(manage_roles=True)
@commands.guild_only()
@commands.bot_has_permissions(manage_roles=True)
@commands.cooldown(1, 10, commands.BucketType.member)
@locale_doc
async def mute(self, ctx, members: commands.Greedy[discord.Member], duration: typing.Optional[btime.FutureTime], *, reason: commands.clean_content = None): # sourcery no-metrics
_(""" Mute members in the server
If duration is provided, they'll get unmuted after the duration ends.
If multiple members are provided, all of them will get muted. """)
reason = reason or None
muterole = await default.get_muterole(ctx, ctx.guild, True)
if len(set(members)) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(
self.bot.settings['emojis']['misc']['warn']
))
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
if len(set(members)) > 15:
return await ctx.send(_("{0} | You can only mute 15 members at once.").format(self.bot.settings['emojis']['misc']['warn']))
if muterole.position > ctx.guild.me.top_role.position:
return await ctx.send(_("{0} | The muted role is above me in the role hierarchy, "
"so I cannot access it. Please lower {1}, so I can access the role and mute the member(s).").format(
self.bot.settings['emojis']['misc']['warn'], muterole.mention
))
if len(set(members)) != 0:
muted, notmuted, success_mute, success, fail = [], [], [], 0, 0
for member in set(members):
if member == ctx.author:
notmuted.append(_("{0} ({1}) - **You are the member though?**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.guild.me.top_role.position:
notmuted.append(_("{0} ({1}) - **Member is above me in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.top_role.position >= ctx.author.top_role.position:
notmuted.append(_("{0} ({1}) - **Member is above you in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.guild_permissions.administrator:
notmuted.append(_("{0} ({1}) - **Member is an administrator, muting them will do nothing**").format(
member.mention, member.id
))
fail += 1
continue
if muterole in member.roles:
notmuted.append(_("{0} ({1}) - **Member looks to be already muted.**").format(
member.mention, member.id
))
fail += 1
continue
try:
await member.add_roles(muterole, reason=default.responsible(ctx.author, reason))
await default.execute_temporary(ctx, 1, member, ctx.author, ctx.guild, muterole, duration, reason)
muted.append(f"{member.mention} ({member.id})")
success_mute.append(member)
success += 1
except discord.Forbidden:
notmuted.append(_("{0} ({1}) - **I do not have permissions to add that role for whatever reason.**").format(
member.mention, member.id
))
fail += 1
continue
except discord.HTTPException:
notmuted.append(f"{0} ({1}) - **Failed to add the mute role.**".format(
member.mention, member.id
))
fail += 1
continue
try:
mute, not_muted = "", ""
if muted and not notmuted:
mute += _("**I've successfully muted {0} member(s){1}:**\n").format(success,
_(' for {0}').format(btime.human_timedelta(duration.dt, source=ctx.message.created_at, suffix=None)) if duration is not None else '')
for num, res in enumerate(muted, start=0):
mute += f"`[{num + 1}]` {res}\n"
await ctx.send(mute)
self.bot.dispatch('mute', ctx.guild, ctx.author, success_mute, duration if duration else None, reason, ctx.message.created_at)
if muted and notmuted:
mute += _("**I've successfully muted {0} member(s){1}:**\n").format(success,
_(' for {0}').format(btime.human_timedelta(duration.dt, source=ctx.message.created_at, suffix=None)) if duration is not None else '')
not_muted += _("**However, I failed to mute the following {0} member(s):**\n").format(fail)
for num, res in enumerate(muted, start=0):
mute += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(notmuted, start=0):
not_muted += f"`[{num + 1}]` {res}\n"
await ctx.send(mute + not_muted)
self.bot.dispatch('mute', ctx.guild, ctx.author, success_mute, duration if duration else None, reason, ctx.message.created_at)
if not muted and notmuted:
not_muted += _("**I failed to mute all the members:**\n")
for num, res in enumerate(notmuted, start=0):
not_muted += f"`[{num + 1}]` {res}\n"
await ctx.send(not_muted)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Timeout member(s) from sending any messages"))
@moderator(moderate_members=True)
@commands.bot_has_permissions(moderate_members=True)
@commands.guild_only()
@commands.cooldown(1, 10, commands.BucketType.user)
@locale_doc
async def timeout(self, ctx, members: commands.Greedy[discord.Member], duration: btime.FutureTime, *, reason: commands.clean_content = None):
_(""" Timeout member(s) in the server from sending any messages.
Due to API limitation you can only timeout a member for 28 days, consider using `{0}mute` if you want to mute for longer. """)
if len(set(members)) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(
self.bot.settings['emojis']['misc']['warn']
))
if reason and len(reason) > 450:
return await ctx.send(_("{0} Reason can only be 450 characters long."
" You're {1} characters over.").format(
self.bot.settings['emojis']['misc']['warn'], len(reason) - 450
))
if len(set(members)) > 15:
return await ctx.send(_("{0} | You can only timeout 15 members at once.").format(self.bot.settings['emojis']['misc']['warn']))
if discord.utils.utcnow() + timedelta(days=28) < duration.dt:
return await ctx.send(_("{0} | Due to API limitation you can only timeout member(s) for 28 days.").format(self.bot.settings['emojis']['misc']['warn']))
if len(set(members)) != 0:
muted, notmuted, success_mute, success, fail = [], [], [], 0, 0
for member in set(members):
if member == ctx.author:
notmuted.append(_("{0} ({1}) - **You are the member though?**").format(
member.mention, member.id
))
fail += 1
continue
if member.top_role.position >= ctx.guild.me.top_role.position:
notmuted.append(_("{0} ({1}) - **Member is above me in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.top_role.position >= ctx.author.top_role.position:
notmuted.append(_("{0} ({1}) - **Member is above you in the role hierarchy or has the same role**").format(
member.mention, member.id
))
fail += 1
continue
elif member.timed_out:
notmuted.append(_("{0} ({1}) - **Member is already timed out.**"))
fail += 1
continue
try:
await member.edit(timeout_until=duration.dt, reason=default.responsible(ctx.author, reason))
muted.append(f"{member.mention} ({member.id})")
success_mute.append(member)
success += 1
except Exception as e:
print(e)
notmuted.append(_("{0} ({1}) - **Something failed while trying to timeout.**").format(
member.mention, member.id
))
fail += 1
continue
try:
mute, not_muted = "", ""
if muted and not notmuted:
mute += _("**I've successfully timed out {0} member(s){1}:**\n").format(success,
_(' for {0}').format( # noqa
btime.human_timedelta(duration.dt, source=ctx.message.created_at, suffix=None)) if duration is not None else ''
)
for num, res in enumerate(muted, start=0):
mute += f"`[{num + 1}]` {res}\n"
await ctx.send(mute)
self.bot.dispatch('timeout', ctx.guild, ctx.author, success_mute, duration if duration else None, reason, ctx.message.created_at)
if muted and notmuted:
mute += _("**I've successfully timed out {0} member(s){1}:**\n").format(success,
_(' for {0}').format(btime.human_timedelta(duration.dt, source=ctx.message.created_at, suffix=None)) if duration is not None else '')
not_muted += _("**However, I failed to timeout the following {0} member(s):**\n").format(fail)
for num, res in enumerate(muted, start=0):
mute += f"`[{num + 1}]` {res}\n"
for num, res in enumerate(notmuted, start=0):
not_muted += f"`[{num + 1}]` {res}\n"
await ctx.send(mute + not_muted)
self.bot.dispatch('timeout', ctx.guild, ctx.author, success_mute, duration if duration else None, reason, ctx.message.created_at)
if not muted and notmuted:
not_muted += _("**I failed to timeout all the members:**\n")
for num, res in enumerate(notmuted, start=0):
not_muted += f"`[{num + 1}]` {res}\n"
await ctx.send(not_muted)
except Exception as e:
self.bot.dispatch('silent_error', ctx, e)
return await ctx.send(_("{0} Something failed with sending the message, "
"I've sent this error to my developers and they should hopefully resolve it soon.").format(
self.bot.settings['emojis']['misc']['warn']
))
@commands.command(brief=_("Unmute member in the server"))
@moderator(manage_roles=True)
@commands.guild_only()
@commands.bot_has_permissions(manage_roles=True)
@commands.cooldown(1, 10, commands.BucketType.user)
@locale_doc
async def unmute(self, ctx, members: commands.Greedy[discord.Member], *, reason: commands.clean_content = None): # sourcery no-metrics
_(""" Unmute member in the server
If multiple members are provided, all of them will get unmuted. """)
reason = reason or None
muterole = await default.get_muterole(ctx, ctx.guild, True)
if len(set(members)) == 0:
return await ctx.send(_("{0} | You're missing an argument - **members**").format(