This repository has been archived by the owner on Oct 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbot.py
1778 lines (1358 loc) · 82.9 KB
/
bot.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
import discord, random, logging, os, json, re, achallonge, dateutil.parser, dateutil.relativedelta, datetime, time, asyncio, yaml, sys
import aiofiles, aiofiles.os
from apscheduler.schedulers.asyncio import AsyncIOScheduler
from apscheduler.jobstores.base import JobLookupError
from babel.dates import format_date, format_time
from discord.ext import commands
from pathlib import Path
from achallonge import ChallongeException
# Custom modules
from utils.json_hooks import dateconverter, dateparser, int_keys
from utils.command_checks import tournament_is_pending, tournament_is_underway, tournament_is_underway_or_pending, in_channel, in_combat_channel, is_streaming, is_owner_or_to, inscriptions_still_open
from utils.stream import is_on_stream, is_queued_for_stream
from utils.rounds import is_top8, nom_round, is_bo5
from utils.game_specs import get_access_stream
from utils.http_retry import async_http_retry
from utils.seeding import get_ranking_csv, seed_participants
from utils.logging import init_loggers
from utils.json_stream import participants, dump_participants
# Import configuration (variables only)
from utils.get_config import *
# Import raw texts (variables only)
from utils.raw_texts import *
log = logging.getLogger("atos")
#### Infos
version = "5.27"
author = "Wonderfall"
name = "A.T.O.S."
### Cogs
initial_extensions = ['cogs.dev_commands']
### Init things
bot = commands.Bot(command_prefix=commands.when_mentioned_or(bot_prefix)) # Set prefix for commands
bot.remove_command('help') # Remove default help command to set our own
achallonge.set_credentials(challonge_user, challonge_api_key)
scheduler = AsyncIOScheduler()
#### Notifier de l'initialisation
@bot.event
async def on_ready():
log.info("Bot successfully connected to Discord.")
print(f"-------------------------------------")
print(f" A. T. O. S. ")
print(f" Automated TO for Smash ")
print(f" ")
print(f"Version : {version} ")
print(f"discord.py : {discord.__version__} ")
print(f"User : {bot.user.name} ")
print(f"User ID : {bot.user.id} ")
print(f"-------------------------------------")
await bot.change_presence(activity=discord.Game(f'{name} • {version}')) # As of April 2020, CustomActivity is not supported for bots
await reload_tournament()
### A chaque arrivée de membre
@bot.event
async def on_member_join(member):
if greet_new_members == False: return
message = random.choice([
f"<@{member.id}> joins the battle!",
f"Bienvenue à toi sur le serveur {member.guild.name}, <@{member.id}>.",
f"Un <@{member.id}> sauvage apparaît !",
f"Le serveur {member.guild.name} accueille un nouveau membre : <@{member.id}> !"
])
try:
await member.send(f"Bienvenue sur le serveur **{member.guild.name}** ! {welcome_text}")
except discord.Forbidden:
await bot.get_channel(blabla_channel_id).send(f"{message} {welcome_text}")
else:
await bot.get_channel(blabla_channel_id).send(message) # Avoid sending welcome_text to the channel if possible
### Récupérer informations du tournoi et initialiser tournoi.json
async def init_tournament(url_or_id):
with open(preferences_path, 'r+') as f: preferences = yaml.full_load(f)
with open(gamelist_path, 'r+') as f: gamelist = yaml.full_load(f)
try:
infos = await async_http_retry(achallonge.tournaments.show, url_or_id)
except ChallongeException:
return
debut_tournoi = dateutil.parser.parse(str(infos["start_at"])).replace(tzinfo=None)
tournoi = {
"name": infos["name"],
"game": infos["game_name"].title(), # Non-recognized games are lowercase for Challonge
"url": infos["full_challonge_url"],
"id": infos["id"],
"limite": infos["signup_cap"],
"statut": infos["state"],
"début_tournoi": debut_tournoi,
"début_check-in": debut_tournoi - datetime.timedelta(minutes = preferences['check_in_opening']),
"fin_check-in": debut_tournoi - datetime.timedelta(minutes = preferences['check_in_closing']),
"fin_inscription": debut_tournoi - datetime.timedelta(minutes = preferences['inscriptions_closing']),
"use_guild_name": preferences['use_guild_name'],
"bulk_mode": preferences['bulk_mode'],
"reaction_mode": preferences['reaction_mode'],
"restrict_to_role": preferences['restrict_to_role'],
"check_channel_presence": preferences['check_channel_presence'],
"start_bo5": preferences['start_bo5'],
"full_bo3": preferences['full_bo3'],
"full_bo5": preferences['full_bo5'],
"warned": [],
"timeout": []
}
# Checks
if tournoi['game'] not in gamelist:
await bot.get_channel(to_channel_id).send(f":warning: Création du tournoi *{tournoi['game']}* annulée : **jeu introuvable dans la gamelist**.")
return
if not (datetime.datetime.now() < tournoi["début_check-in"] < tournoi["fin_check-in"] < tournoi["fin_inscription"] < tournoi["début_tournoi"]):
await bot.get_channel(to_channel_id).send(f":warning: Création du tournoi *{tournoi['game']}* annulée : **conflit des temps de check-in et d'inscriptions**.")
return
if tournoi['bulk_mode'] == True:
try:
await get_ranking_csv(tournoi)
except (KeyError, ValueError):
await bot.get_channel(to_channel_id).send(f":warning: Création du tournoi *{tournoi['game']}* annulée : **données de ranking introuvables**.\n"
f"*Désactivez le bulk mode avec `{bot_prefix}set bulk_mode off` si vous ne souhaitez pas utiliser de ranking.*")
return
with open(tournoi_path, 'w') as f: json.dump(tournoi, f, indent=4, default=dateconverter)
with open(participants_path, 'w') as f: json.dump({}, f, indent=4)
with open(stream_path, 'w') as f: json.dump({}, f, indent=4)
# Ensure permissions
guild = bot.get_guild(id=guild_id)
challenger = guild.get_role(challenger_id)
await bot.get_channel(check_in_channel_id).set_permissions(challenger, read_messages=True, send_messages=False, add_reactions=False)
await bot.get_channel(check_in_channel_id).edit(slowmode_delay=60)
await bot.get_channel(scores_channel_id).set_permissions(challenger, read_messages=True, send_messages=False, add_reactions=False)
await bot.get_channel(queue_channel_id).set_permissions(challenger, read_messages=True, send_messages=False, add_reactions=False)
scheduler.add_job(start_check_in, id='start_check_in', run_date=tournoi["début_check-in"], replace_existing=True)
scheduler.add_job(end_check_in, id='end_check_in', run_date=tournoi["fin_check-in"], replace_existing=True)
scheduler.add_job(end_inscription, id='end_inscription', run_date=tournoi["fin_inscription"], replace_existing=True)
await init_compteur()
await bot.change_presence(activity=discord.Game(tournoi['name']))
await purge_channels()
### Ajouter un tournoi
@bot.command(name='setup')
@commands.check(is_owner_or_to)
async def setup_tournament(ctx, arg):
if re.compile(r"^(https?\:\/\/)?(challonge.com)\/.+$").match(arg):
await init_tournament(arg.replace("https://challonge.com/", ""))
else:
await ctx.message.add_reaction("🔗")
return
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
try:
tournoi["début_tournoi"]
except KeyError:
await ctx.message.add_reaction("⚠️")
else:
await ctx.message.add_reaction("✅")
### AUTO-MODE : will take care of creating tournaments for you
@scheduler.scheduled_job('interval', id='auto_setup_tournament', hours=1)
async def auto_setup_tournament():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
with open(auto_mode_path, 'r+') as f: tournaments = yaml.full_load(f)
with open(preferences_path, 'r+') as f: preferences = yaml.full_load(f)
# Auto-mode won't run if at least one of these conditions is met :
# - It's turned off in preferences.yml
# - A tournament is already initialized
# - It's "night" time
if (preferences['auto_mode'] != True) or (tournoi != {}) or (not 10 <= datetime.datetime.now().hour <= 22): return
for tournament in tournaments:
for day in tournaments[tournament]["days"]:
try:
relative = dateutil.relativedelta.relativedelta(weekday = time.strptime(day, '%A').tm_wday) # It's a weekly
except TypeError:
relative = dateutil.relativedelta.relativedelta(day = day) # It's a monthly
except ValueError:
return # Neither?
next_date = (datetime.datetime.now().astimezone() + relative).replace(
hour = dateutil.parser.parse(tournaments[tournament]["start"]).hour,
minute = dateutil.parser.parse(tournaments[tournament]["start"]).minute,
second = 0,
microsecond = 0 # for dateparser to work
)
# If the tournament is supposed to be in less than inscriptions_opening (hours), let's go !
if abs(next_date - datetime.datetime.now().astimezone()) < datetime.timedelta(hours = preferences['inscriptions_opening']):
new_tournament = await async_http_retry(
achallonge.tournaments.create,
name=f"{tournament} #{tournaments[tournament]['edition']}",
url=f"{re.sub('[^A-Za-z0-9]+', '', tournament)}{tournaments[tournament]['edition']}",
tournament_type='double elimination',
show_rounds=True,
description=tournaments[tournament]['description'],
signup_cap=tournaments[tournament]['capping'],
game_name=tournaments[tournament]['game'],
start_at=next_date
)
await init_tournament(new_tournament["id"])
# Check if the tournamet was configured
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
if tournoi != {}:
tournaments[tournament]["edition"] += 1
with open(auto_mode_path, 'w') as f: yaml.dump(tournaments, f)
return
### Démarrer un tournoi
@bot.command(name='start')
@commands.check(is_owner_or_to)
@commands.check(tournament_is_pending)
async def start_tournament(ctx):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
guild = bot.get_guild(id=guild_id)
challenger = guild.get_role(challenger_id)
if datetime.datetime.now() > tournoi["fin_inscription"]:
await async_http_retry(achallonge.tournaments.start, tournoi["id"])
tournoi["statut"] = "underway"
with open(tournoi_path, 'w') as f: json.dump(tournoi, f, indent=4, default=dateconverter)
await ctx.message.add_reaction("✅")
else:
await ctx.message.add_reaction("🕐")
return
await calculate_top8()
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser) # Refresh to get top 8
with open(gamelist_path, 'r+') as f: gamelist = yaml.full_load(f)
await bot.get_channel(annonce_channel_id).send(f"{server_logo} Le tournoi **{tournoi['name']}** est officiellement lancé ! Voici le bracket : {tournoi['url']}\n"
f":white_small_square: Vous pouvez y accéder à tout moment avec la commande `{bot_prefix}bracket`.\n"
f":white_small_square: Vous pouvez consulter les liens de stream avec la commande `{bot_prefix}stream`.")
score_annonce = (f":information_source: La prise en charge des scores pour le tournoi **{tournoi['name']}** est automatisée :\n"
f":white_small_square: Seul **le gagnant du set** envoie le score de son set, précédé par la **commande** `{bot_prefix}win`.\n"
f":white_small_square: Le message du score doit contenir le **format suivant** : `{bot_prefix}win 2-0, 3-2, 3-1, ...`.\n"
f":white_small_square: Un mauvais score intentionnel, perturbant le déroulement du tournoi, est **passable de DQ et ban**.\n"
f":white_small_square: Consultez le bracket afin de **vérifier** les informations : {tournoi['url']}\n"
f":white_small_square: En cas de mauvais score : contactez un TO pour une correction manuelle.\n\n"
f":satellite_orbital: Chaque score étant **transmis un par un**, il est probable que la communication prenne jusqu'à 30 secondes.")
await bot.get_channel(scores_channel_id).send(score_annonce)
await bot.get_channel(scores_channel_id).set_permissions(challenger, read_messages=True, send_messages=True, add_reactions=False)
queue_annonce = (f":information_source: **Le lancement des sets est automatisé.** Veuillez suivre les consignes de ce channel, que ce soit par le bot ou les TOs.\n"
f":white_small_square: Tout passage on stream sera notifié à l'avance, ici, dans votre channel (ou par DM).\n"
f":white_small_square: Tout set devant se jouer en BO5 est indiqué ici, et également dans votre channel.\n"
f":white_small_square: La personne qui commence les bans est indiquée dans votre channel (en cas de besoin : `{bot_prefix}flip`).\n\n"
f":timer: Vous serez **DQ automatiquement** si vous n'avez pas été actif sur votre channel __dans les {tournoi['check_channel_presence']} minutes qui suivent sa création__.")
await bot.get_channel(queue_channel_id).send(queue_annonce)
tournoi_annonce = (f":alarm_clock: <@&{challenger_id}> On arrête le freeplay ! Le tournoi est sur le point de commencer. Veuillez lire les consignes :\n"
f":white_small_square: Vos sets sont annoncés dès que disponibles dans <#{queue_channel_id}> : **ne lancez rien sans consulter ce channel**.\n"
f":white_small_square: Le ruleset ainsi que les informations pour le bannissement des stages sont dispo dans <#{gamelist[tournoi['game']]['ruleset']}>.\n"
f":white_small_square: Le gagnant d'un set doit rapporter le score **dès que possible** dans <#{scores_channel_id}> avec la commande `{bot_prefix}win`.\n"
f":white_small_square: Vous pouvez DQ du tournoi avec la commande `{bot_prefix}dq`, ou juste abandonner votre set en cours avec `{bot_prefix}ff`.\n"
f":white_small_square: En cas de lag qui rend votre set injouable, utilisez la commande `{bot_prefix}lag` pour résoudre la situation.\n"
f":timer: Vous serez **DQ automatiquement** si vous n'avez pas été actif sur votre channel __dans les {tournoi['check_channel_presence']} minutes qui suivent sa création__.")
if tournoi["game"] == "Project+":
tournoi_annonce += f"\n{gamelist[tournoi['game']]['icon']} En cas de desync, utilisez la commande `{bot_prefix}desync` pour résoudre la situation."
tournoi_annonce += (f"\n\n:fire: Le **top 8** commencera, d'après le bracket :\n"
f":white_small_square: En **{nom_round(tournoi['round_winner_top8'])}**\n"
f":white_small_square: En **{nom_round(tournoi['round_looser_top8'])}**\n\n")
if tournoi["full_bo3"]:
tournoi_annonce += ":three: L'intégralité du tournoi se déroulera en **BO3**."
elif tournoi["full_bo5"]:
tournoi_annonce += ":five: L'intégralité du tournoi se déroulera en **BO5**."
elif tournoi["start_bo5"] != 0:
tournoi_annonce += (f":five: Les **BO5** commenceront quant à eux :\n"
f":white_small_square: En **{nom_round(tournoi['round_winner_bo5'])}**\n"
f":white_small_square: En **{nom_round(tournoi['round_looser_bo5'])}**")
else:
tournoi_annonce += ":five: Les **BO5** commenceront en **top 8**."
tournoi_annonce += "\n\n*L'équipe de TO et moi-même vous souhaitons un excellent tournoi !*"
await bot.get_channel(tournoi_channel_id).send(tournoi_annonce)
scheduler.add_job(underway_tournament, 'interval', id='underway_tournament', minutes=1, start_date=tournoi["début_tournoi"], replace_existing=True)
### Terminer un tournoi
@bot.command(name='end')
@commands.check(is_owner_or_to)
@commands.check(tournament_is_underway)
async def end_tournament(ctx):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
if datetime.datetime.now() > tournoi["début_tournoi"]:
await async_http_retry(achallonge.tournaments.finalize, tournoi["id"])
await ctx.message.add_reaction("✅")
else:
await ctx.message.add_reaction("🕐")
return
# Remove underway task
try:
scheduler.remove_job('underway_tournament')
except JobLookupError:
pass
# Annoucements (including results)
await annonce_resultats()
await bot.get_channel(annonce_channel_id).send(
f"{server_logo} Le tournoi **{tournoi['name']}** est terminé, merci à toutes et à tous d'avoir participé ! "
f"J'espère vous revoir bientôt.")
# Reset participants
participants.clear()
# Reset JSON storage
with open(participants_path, 'w') as f: json.dump({}, f, indent=4)
with open(tournoi_path, 'w') as f: json.dump({}, f, indent=4)
with open(stream_path, 'w') as f: json.dump({}, f, indent=4)
# Remove now obsolete files
for file in list(Path(Path(ranking_path).parent).rglob('*.csv_*')):
await aiofiles.os.remove(file)
for file in list(Path(Path(participants_path).parent).rglob('*.bak')):
await aiofiles.os.remove(file)
# Change presence back to default
await bot.change_presence(activity=discord.Game(f'{name} • {version}'))
# Remove tournament roles & categories
await purge_categories()
await purge_roles()
### S'execute à chaque lancement, permet de relancer les tâches en cas de crash
async def reload_tournament():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
try:
await bot.change_presence(activity=discord.Game(tournoi['name']))
except KeyError:
log.info("No tournament had to be reloaded.")
return
# Relancer les tâches automatiques
if tournoi["statut"] == "underway":
scheduler.add_job(underway_tournament, 'interval', id='underway_tournament', minutes=1, replace_existing=True)
elif datetime.datetime.now() < tournoi["fin_inscription"]:
scheduler.add_job(start_check_in, id='start_check_in', run_date=tournoi["début_check-in"], replace_existing=True)
scheduler.add_job(end_check_in, id='end_check_in', run_date=tournoi["fin_check-in"], replace_existing=True)
scheduler.add_job(end_inscription, id='end_inscription', run_date=tournoi["fin_inscription"], replace_existing=True)
scheduler.add_job(dump_participants, 'interval', id='dump_participants', seconds=10, replace_existing=True)
if tournoi["début_check-in"] < datetime.datetime.now() < tournoi["fin_check-in"]:
scheduler.add_job(rappel_check_in, 'interval', id='rappel_check_in', minutes=10, replace_existing=True)
log.info("Scheduled tasks for a tournament have been reloaded.")
# Prendre les inscriptions manquées
if datetime.datetime.now() < tournoi["fin_inscription"]:
if tournoi["reaction_mode"]:
annonce = await bot.get_channel(inscriptions_channel_id).fetch_message(tournoi["annonce_id"])
# Avoir une liste des users ayant réagi
for reaction in annonce.reactions:
if str(reaction.emoji) == "✅":
reactors = await reaction.users().flatten()
break
# Inscrire ceux qui ne sont pas dans les participants
id_list = []
for reactor in reactors:
if reactor.id != bot.user.id:
id_list.append(reactor.id) # Récupérer une liste des IDs pour plus tard
if reactor.id not in participants:
await inscrire(reactor)
# Désinscrire ceux qui ne sont plus dans la liste des users ayant réagi
for inscrit in participants:
if inscrit not in id_list:
await desinscrire(annonce.guild.get_member(inscrit))
else:
async for message in bot.get_channel(inscriptions_channel_id).history(oldest_first=True):
if message.author == bot.user or message.reactions != []:
continue
if not any([bot.user in await reaction.users().flatten() for reaction in message.reactions]):
await bot.process_commands(message)
log.info("Missed inscriptions were also taken care of.")
### Annonce et lance les inscriptions
@bot.command(name='inscriptions')
@commands.check(is_owner_or_to)
@commands.check(tournament_is_pending)
async def annonce_inscription(ctx):
scheduler.add_job(dump_participants, 'interval', id='dump_participants', seconds=10, replace_existing=True)
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
with open(gamelist_path, 'r+') as f: gamelist = yaml.full_load(f)
inscriptions_channel = bot.get_channel(inscriptions_channel_id)
inscriptions_role = inscriptions_channel.guild.get_role(gamelist[tournoi['game']]['role']) if tournoi["restrict_to_role"] else inscriptions_channel.guild.default_role
if tournoi['reaction_mode']:
await inscriptions_channel.set_permissions(inscriptions_role, read_messages=True, send_messages=False, add_reactions=False)
else:
await inscriptions_channel.set_permissions(inscriptions_role, read_messages=True, send_messages=True, add_reactions=False)
await inscriptions_channel.edit(slowmode_delay=60)
await ctx.message.add_reaction("✅")
await bot.get_channel(annonce_channel_id).send(f"{server_logo} Inscriptions pour le **{tournoi['name']}** ouvertes dans <#{inscriptions_channel_id}> ! Consultez-y les messages épinglés. <@&{gamelist[tournoi['game']]['role']}>\n"
f":calendar_spiral: Ce tournoi aura lieu le **{format_date(tournoi['début_tournoi'], format='full', locale=language)} à {format_time(tournoi['début_tournoi'], format='short', locale=language)}**.")
### Initialise le compteur d'inscrits dans le salon d'inscriptions
async def init_compteur():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
with open(gamelist_path, 'r+') as f: gamelist = yaml.full_load(f)
annonce = (
f"{server_logo} **{tournoi['name']}** - {gamelist[tournoi['game']]['icon']} *{tournoi['game']}*\n"
f":white_small_square: __Date__ : {format_date(tournoi['début_tournoi'], format='full', locale=language)} à {format_time(tournoi['début_tournoi'], format='short', locale=language)}\n"
f":white_small_square: __Check-in__ : de {format_time(tournoi['début_check-in'], format='short', locale=language)} à {format_time(tournoi['fin_check-in'], format='short', locale=language)} "
f"(fermeture des inscriptions à {format_time(tournoi['fin_inscription'], format='short', locale=language)})\n"
f":white_small_square: __Limite__ : 0/{str(tournoi['limite'])} joueurs *(mise à jour en temps réel)*\n"
f":white_small_square: __Bracket__ : {tournoi['url'] if not tournoi['bulk_mode'] else 'disponible peu de temps avant le début du tournoi'}\n"
f":white_small_square: __Format__ : singles, double élimination (ruleset : <#{gamelist[tournoi['game']]['ruleset']}>)\n\n"
f"Vous pouvez vous inscrire/désinscrire {'en ajoutant/retirant la réaction ✅ à ce message' if tournoi['reaction_mode'] else f'avec les commandes `{bot_prefix}in`/`{bot_prefix}out`'}.\n"
f"*Note : votre **pseudonyme {'sur ce serveur' if tournoi['use_guild_name'] else 'Discord général'}** au moment de l'inscription sera celui utilisé dans le bracket.*"
)
inscriptions_channel = bot.get_channel(inscriptions_channel_id)
await inscriptions_channel.purge(limit=None)
annonce_msg = await inscriptions_channel.send(annonce)
tournoi['annonce_id'] = annonce_msg.id
with open(tournoi_path, 'w') as f: json.dump(tournoi, f, indent=4, default=dateconverter)
if tournoi['reaction_mode']:
await annonce_msg.add_reaction("✅")
await annonce_msg.pin()
### Inscription
async def inscrire(member):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
if (member.id not in participants) and (len(participants) < tournoi['limite']):
participants[member.id] = {
"display_name": member.display_name if tournoi['use_guild_name'] else str(member),
"checked_in": datetime.datetime.now() > tournoi["début_check-in"]
}
if tournoi["bulk_mode"] == False or datetime.datetime.now() > tournoi["fin_inscription"]:
try:
participants[member.id]["challonge"] = (
await async_http_retry(
achallonge.participants.create,
tournoi["id"],
participants[member.id]["display_name"]
)
)['id']
except ChallongeException:
del participants[member.id]
return
await member.add_roles(member.guild.get_role(challenger_id))
await update_annonce()
try:
msg = f"Tu t'es inscrit(e) avec succès pour le tournoi **{tournoi['name']}**."
if datetime.datetime.now() > tournoi["début_check-in"]:
msg += " Tu n'as **pas besoin de check-in** comme le tournoi commence bientôt !"
await member.send(msg)
except discord.Forbidden:
pass
elif tournoi["reaction_mode"] and len(participants) >= tournoi['limite']:
try:
await member.send(f"Il n'y a malheureusement plus de place pour le tournoi **{tournoi['name']}**. "
f"Retente ta chance plus tard, par exemple à la fin du check-in pour remplacer les absents !")
except discord.Forbidden:
pass
try:
inscription = await bot.get_channel(inscriptions_channel_id).fetch_message(tournoi["annonce_id"])
await inscription.remove_reaction("✅", member)
except (discord.HTTPException, discord.NotFound):
pass
### Désinscription
async def desinscrire(member):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
if member.id in participants:
if tournoi["bulk_mode"] == False or datetime.datetime.now() > tournoi["fin_inscription"]:
await async_http_retry(achallonge.participants.destroy, tournoi['id'], participants[member.id]['challonge'])
try:
await member.remove_roles(member.guild.get_role(challenger_id))
except discord.HTTPException:
pass
if datetime.datetime.now() < tournoi["fin_inscription"]:
del participants[member.id]
if tournoi['reaction_mode']:
try:
inscription = await bot.get_channel(inscriptions_channel_id).fetch_message(tournoi["annonce_id"])
await inscription.remove_reaction("✅", member)
except (discord.HTTPException, discord.NotFound):
pass
await update_annonce()
try:
await member.send(f"Tu es désinscrit(e) du tournoi **{tournoi['name']}**. À une prochaine fois peut-être !")
except discord.Forbidden:
pass
### Mettre à jour l'annonce d'inscription
async def update_annonce():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
old_annonce = await bot.get_channel(inscriptions_channel_id).fetch_message(tournoi["annonce_id"])
new_annonce = re.sub(r'[0-9]{1,3}\/', str(len(participants)) + '/', old_annonce.content)
await old_annonce.edit(content=new_annonce)
### Début du check-in
async def start_check_in():
guild = bot.get_guild(id=guild_id)
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
challenger = guild.get_role(challenger_id)
scheduler.add_job(rappel_check_in, 'interval', id='rappel_check_in', minutes=10, replace_existing=True)
await bot.get_channel(inscriptions_channel_id).send(f":information_source: Le check-in a commencé dans <#{check_in_channel_id}>. "
f"Vous pouvez toujours vous inscrire ici jusqu'à **{format_time(tournoi['fin_inscription'], format='short', locale=language)}**.\n\n"
f"*Toute personne s'inscrivant à partir de ce moment est **check-in automatiquement**.*")
await bot.get_channel(check_in_channel_id).send(f"<@&{challenger_id}> Le check-in pour **{tournoi['name']}** a commencé ! "
f"Vous avez jusqu'à **{format_time(tournoi['fin_check-in'], format='short', locale=language)}** pour signaler votre présence :\n"
f":white_small_square: Utilisez `{bot_prefix}in` pour confirmer votre inscription\n:white_small_square: Utilisez `{bot_prefix}out` pour vous désinscrire\n\n"
f"*Si vous n'avez pas check-in à temps, vous serez désinscrit automatiquement du tournoi.*")
await bot.get_channel(check_in_channel_id).set_permissions(challenger, read_messages=True, send_messages=True, add_reactions=False)
### Rappel de check-in
async def rappel_check_in():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
guild = bot.get_guild(id=guild_id)
rappel_msg = ""
for inscrit in participants:
if participants[inscrit]["checked_in"] == False:
rappel_msg += f"- <@{inscrit}>\n"
if tournoi["fin_check-in"] - datetime.datetime.now() < datetime.timedelta(minutes=10):
try:
await guild.get_member(inscrit).send(f"**Attention !** Il te reste moins d'une dizaine de minutes pour check-in au tournoi **{tournoi['name']}**.")
except discord.Forbidden:
pass
if rappel_msg == "": return
await bot.get_channel(check_in_channel_id).send(":clock1: **Rappel de check-in !**")
if len(rappel_msg) < 2000:
await bot.get_channel(check_in_channel_id).send(rappel_msg)
else: # Discord doesn't deal with more than 2000 characters
rappel_msg = [x.strip() for x in rappel_msg.split('\n') if x.strip() != ''] # so we have to split
while rappel_msg:
await bot.get_channel(check_in_channel_id).send('\n'.join(rappel_msg[:50]))
del rappel_msg[:50] # and send by groups of 50 people
await bot.get_channel(check_in_channel_id).send(f"*Vous avez jusqu'à {format_time(tournoi['fin_check-in'], format='short', locale=language)}, sinon vous serez désinscrit(s) automatiquement.*")
### Fin du check-in
async def end_check_in():
guild = bot.get_guild(id=guild_id)
await bot.get_channel(check_in_channel_id).set_permissions(guild.get_role(challenger_id), read_messages=True, send_messages=False, add_reactions=False)
await bot.get_channel(check_in_channel_id).send(":clock1: **Le check-in est terminé :**\n"
":white_small_square: Les personnes n'ayant pas check-in vont être retirées du tournoi.\n"
":white_small_square: Rappel : une inscription après le début du check-in ne néccessite pas de check-in.")
try:
scheduler.remove_job('rappel_check_in')
except JobLookupError:
pass
for inscrit in list(participants):
try:
if participants[inscrit]["checked_in"] == False:
await desinscrire(guild.get_member(inscrit))
except KeyError:
pass
await bot.get_channel(inscriptions_channel_id).send(":information_source: **Les absents du check-in ont été retirés** : "
"des places sont peut-être libérées pour des inscriptions de dernière minute.\n")
### Fin des inscriptions
async def end_inscription():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
with open(gamelist_path, 'r+') as f: gamelist = yaml.full_load(f)
if tournoi["reaction_mode"]:
annonce = await bot.get_channel(inscriptions_channel_id).fetch_message(tournoi["annonce_id"])
await annonce.clear_reaction("✅")
else:
guild = bot.get_guild(id=guild_id)
inscriptions_role = guild.get_role(gamelist[tournoi['game']]['role']) if tournoi["restrict_to_role"] else guild.default_role
await bot.get_channel(inscriptions_channel_id).set_permissions(inscriptions_role, read_messages=True, send_messages=False, add_reactions=False)
await bot.get_channel(inscriptions_channel_id).send(":clock1: **Les inscriptions sont fermées :** le bracket est désormais en cours de finalisation.")
if tournoi["bulk_mode"]:
await seed_participants(participants)
try:
scheduler.remove_job('dump_participants')
except JobLookupError:
pass
finally:
dump_participants()
async def check_in(member):
participants[member.id]["checked_in"] = True
try:
await member.send("Tu as été check-in avec succès. Tu n'as plus qu'à patienter jusqu'au début du tournoi !")
except discord.Forbidden:
pass
### Prise en charge des inscriptions, désinscriptions, check-in et check-out
@bot.command(aliases=['in', 'out'])
@commands.check(inscriptions_still_open)
@commands.max_concurrency(1, wait=True)
async def participants_management(ctx):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
if ctx.invoked_with == 'out':
if ctx.channel.id in [check_in_channel_id, inscriptions_channel_id, inscriptions_vip_channel_id] and ctx.author.id in participants:
await desinscrire(ctx.author)
await ctx.message.add_reaction("✅")
else:
await ctx.message.add_reaction("🚫")
elif ctx.invoked_with == 'in':
if ctx.channel.id == check_in_channel_id and ctx.author.id in participants and tournoi["fin_check-in"] > datetime.datetime.now() > tournoi["début_check-in"]:
await check_in(ctx.author)
await ctx.message.add_reaction("✅")
elif ctx.channel.id == inscriptions_channel_id and ctx.author.id not in participants and len(participants) < tournoi['limite']:
await inscrire(ctx.author)
await ctx.message.add_reaction("✅")
elif ctx.channel.id == inscriptions_vip_channel_id and ctx.author.id not in participants and len(participants) < tournoi['limite']:
await inscrire(ctx.author)
await ctx.message.add_reaction("✅")
else:
await ctx.message.add_reaction("🚫")
### Nettoyer les channels liés aux tournois
async def purge_channels():
guild = bot.get_guild(id=guild_id)
for channel_id in [check_in_channel_id, queue_channel_id, scores_channel_id]:
channel = guild.get_channel(channel_id)
await channel.purge(limit=None)
### Nettoyer les catégories liées aux tournois
async def purge_categories():
guild = bot.get_guild(id=guild_id)
for category in [cat for cat in guild.categories if cat.name.lower() in ["winner bracket", "looser bracket"]]:
for channel in category.channels: await channel.delete() # first, delete the channels
await category.delete() # then delete the category
### Nettoyer les rôles liés aux tournois
async def purge_roles():
guild = bot.get_guild(id=guild_id)
challenger = guild.get_role(challenger_id)
for member in challenger.members:
try:
await member.remove_roles(challenger)
except (discord.HTTPException, discord.Forbidden):
pass
### Affiche le bracket en cours
@bot.command(name='bracket')
@commands.check(tournament_is_underway_or_pending)
async def post_bracket(ctx):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
await ctx.send(f"{server_logo} **{tournoi['name']}** : {tournoi['url']}")
### Pile/face basique
@bot.command(name='flip', aliases=['flipcoin', 'coinflip', 'coin'])
async def flipcoin(ctx):
await ctx.send(f"<@{ctx.author.id}> {random.choice(['Tu commences à faire les bans.', 'Ton adversaire commence à faire les bans.'])}")
### Ajout manuel
@bot.command(name='add')
@commands.check(is_owner_or_to)
@commands.check(tournament_is_pending)
async def add_inscrit(ctx):
for member in ctx.message.mentions:
await inscrire(member)
dump_participants()
await ctx.message.add_reaction("✅")
### Suppression/DQ manuel
@bot.command(name='rm')
@commands.check(is_owner_or_to)
@commands.check(tournament_is_underway_or_pending)
async def remove_inscrit(ctx):
for member in ctx.message.mentions:
await desinscrire(member)
dump_participants()
await ctx.message.add_reaction("✅")
### Se DQ soi-même
@bot.command(name='dq')
@commands.has_role(challenger_id)
@commands.check(tournament_is_underway)
@commands.cooldown(1, 30, type=commands.BucketType.user)
@commands.max_concurrency(1, wait=True)
async def self_dq(ctx):
await desinscrire(ctx.author)
await ctx.message.add_reaction("✅")
### Managing sets during tournament : launch & remind
### Goal : get the bracket only once to limit API calls
async def underway_tournament():
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
guild = bot.get_guild(id=guild_id)
bracket = await async_http_retry(achallonge.matches.index, tournoi["id"], state='open')
await launch_matches(guild, bracket)
await call_stream(guild, bracket)
await rappel_matches(guild, bracket)
await clean_channels(guild, bracket)
### Gestion des scores
@bot.command(name='win')
@in_channel(scores_channel_id)
@commands.check(tournament_is_underway)
@commands.has_role(challenger_id)
@commands.cooldown(1, 30, type=commands.BucketType.user)
@commands.max_concurrency(1, wait=True)
async def score_match(ctx, arg):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
winner = participants[ctx.author.id]["challonge"] # Le gagnant est celui qui poste
try:
match = await async_http_retry(
achallonge.matches.index,
tournoi['id'],
state='open',
participant_id=winner
)
except ChallongeException:
await ctx.message.add_reaction("🕐")
await ctx.send(f"<@{ctx.author.id}> Dû à une coupure de Challonge, je n'ai pas pu récupérer les données du set. Merci de retenter dans quelques instants.")
return
try:
if match[0]["underway_at"] == None:
await ctx.message.add_reaction("⚠️")
await ctx.send(f"<@{ctx.author.id}> Le set pour lequel tu as donné le score n'a **pas encore commencé** !")
return
except IndexError:
await ctx.message.add_reaction("⚠️")
await ctx.send(f"<@{ctx.author.id}> Tu n'as pas de set prévu pour le moment, il n'y a donc pas de score à rentrer.")
return
try:
score = re.search(r'([0-9]+) *\- *([0-9]+)', arg).group().replace(" ", "")
except AttributeError:
await ctx.message.add_reaction("⚠️")
await ctx.send(f"<@{ctx.author.id}> **Ton score ne possède pas le bon format** *(3-0, 2-1, 3-2...)*, merci de le rentrer à nouveau.")
return
if score[0] < score[2]: score = score[::-1] # Le premier chiffre doit être celui du gagnant
if is_bo5(match[0]["round"]):
aimed_score, looser_score, temps_min = 3, [0, 1, 2], 10
else:
aimed_score, looser_score, temps_min = 2, [0, 1], 5
debut_set = dateutil.parser.parse(str(match[0]["underway_at"])).replace(tzinfo=None)
if int(score[0]) != aimed_score or int(score[2]) not in looser_score:
await ctx.message.add_reaction("⚠️")
await ctx.send(f"<@{ctx.author.id}> **Score incorrect**, vérifiez par exemple si le set doit se jouer en BO3 ou BO5.")
return
if datetime.datetime.now() - debut_set < datetime.timedelta(minutes = temps_min):
await ctx.message.add_reaction("⚠️")
await ctx.send(f"<@{ctx.author.id}> **Temps écoulé trop court** pour qu'un résultat soit déjà rentré pour le set.")
return
for joueur in participants:
if participants[joueur]["challonge"] == match[0]["player2_id"]:
player2 = joueur
break
og_score = score
if winner == participants[player2]["challonge"]:
score = score[::-1] # Le score doit suivre le format "player1-player2" pour scores_csv
try:
await async_http_retry(
achallonge.matches.update,
tournoi['id'],
match[0]['id'],
scores_csv=score,
winner_id=winner
)
await ctx.message.add_reaction("✅")
except ChallongeException:
await ctx.message.add_reaction("🕐")
await ctx.send(f"<@{ctx.author.id}> Dû à une coupure de Challonge, je n'ai pas pu envoyer ton score. Merci de retenter dans quelques instants.")
else:
gaming_channel = discord.utils.get(ctx.guild.text_channels, name=str(match[0]["suggested_play_order"]))
if gaming_channel != None:
await gaming_channel.send(f":bell: __Score rapporté__ : **{participants[ctx.author.id]['display_name']}** gagne **{og_score}** !\n"
f"*En cas d'erreur, appelez un TO ! Un mauvais score intentionnel est passable de DQ et ban du tournoi.*\n"
f"*Note : ce channel sera automatiquement supprimé 5 minutes à partir de la dernière activité.*")
### Clean channels
async def clean_channels(guild, bracket):
play_orders = [match['suggested_play_order'] for match in bracket]
for category, channels in guild.by_category():
# Category must be a tournament category
if category != None and category.name.lower() in ["winner bracket", "looser bracket"]:
for channel in channels:
# Channel names correspond to a suggested play order
if int(channel.name) not in play_orders: # If the channel is not useful anymore
last_message = await channel.fetch_message(channel.last_message_id)
# Remove the channel if the last message is more than 5 minutes old
now = datetime.datetime.now(datetime.timezone.utc).replace(tzinfo=None)
if now - last_message.created_at > datetime.timedelta(minutes = 5):
try:
await channel.delete()
except (discord.NotFound, discord.HTTPException):
pass
### Forfeit
@bot.command(name='forfeit', aliases=['ff', 'loose'])
@commands.check(tournament_is_underway)
@commands.has_role(challenger_id)
@commands.cooldown(1, 120, type=commands.BucketType.user)
@commands.max_concurrency(1, wait=True)
async def forfeit_match(ctx):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)
looser = participants[ctx.author.id]["challonge"]
try:
match = await async_http_retry(
achallonge.matches.index,
tournoi['id'],
state='open',
participant_id=looser
)
except ChallongeException:
await ctx.message.add_reaction("⚠️")
return
try:
for joueur in participants:
if participants[joueur]["challonge"] == match[0]["player1_id"]: player1 = joueur
if participants[joueur]["challonge"] == match[0]["player2_id"]: player2 = joueur
except IndexError:
return
if looser == participants[player2]["challonge"]:
winner, score = participants[player1]["challonge"], "1-0"
else:
winner, score = participants[player2]["challonge"], "0-1"
try:
await async_http_retry(
achallonge.matches.update,
tournoi['id'],
match[0]['id'],
scores_csv=score,
winner_id=winner
)
except ChallongeException:
await ctx.message.add_reaction("⚠️")
else:
await ctx.message.add_reaction("✅")
### Get and return a category
async def get_available_category(match_round):
guild = bot.get_guild(id=guild_id)
desired_cat = 'winner bracket' if match_round > 0 else 'looser bracket'
# by_category() doesn't return a category if it has no channels, so we use a list comprehension
for category in [cat for cat in guild.categories if cat.name.lower() == desired_cat and len(cat.channels) < 50]:
return category
else:
return await guild.create_category(
name=desired_cat,
reason='Since no category was available, a new one was created',
position=guild.get_channel(tournoi_cat_id).position + 1
)
### Lancer matchs ouverts
async def launch_matches(guild, bracket):
with open(tournoi_path, 'r+') as f: tournoi = json.load(f, object_hook=dateparser)