-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.py
2439 lines (2046 loc) · 85 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 os
import discord
import time
import math
import string
import random
from discord.ext import commands
from pymongo import MongoClient
import requests
import json
import asyncio
from bs4 import BeautifulSoup
uri = os.environ.get("MONGO_URI")
token = os.environ.get("BOT_TOKEN")
try:
cluster = MongoClient(uri)
print("Connected successfully!!!")
except:
print("Could not connect to MongoDB")
class AcWeb:
def __init__(self):
self.url = 'https://atcoder.jp/contests/'
def key_words(self, user_message):
words = user_message.split()[1:]
if words[0].lower == 'b':
num = random.randint(0,250)
keyword = f'abc{num}/tasks/abc{num}_'+words[1].lower()
elif words[0].lower == 'r':
num = random.randint(0,150)
keyword = f'arc{num}/tasks/arc{num}_'+words[1].lower()
return keyword
def search(self, keywords):
response = requests.get(self.url+keywords)
content = response.content
soup = BeautifulSoup(content, 'html.parser')
Text = soup.body
return Text
def status(self, Text):
main = Text.find('td',class_ = 'text-center')
if main == None:
ans = ans = 'No submissions'
else:
ans = main.text
return ans
db = cluster['discord-bot']
servers = db['servers']
participantsList = db['participantsList']
tourney_status = db['tourney_status']
storage = db['storage']
current_round = db['current_round']
current_matches=db['current_matches']
intents = discord.Intents().all()
client = commands.Bot(command_prefix="!", intents=intents,help_command=None)
botName = "Tatakae"
ac_problemset = AcWeb()
@client.command()
async def help(ctx):
embed = discord.Embed(
title="COMMANDS :ledger:",
color=0x3cddbc)
embed.add_field(name="!registerMe <cf_handle>", value="To register your codeforces handles"+"\n\u200b", inline=False)
embed.add_field(name="!ac_registerMe <ac_handle>", value="To register your atcoder handles"+"\n\u200b", inline=False)
embed.add_field(name="!unregisterMe", value="To unregister yourself from the tournament"+"\n\u200b", inline=False)
embed.add_field(name="!showParticipants", value="To display the participants"+"\n\u200b", inline=False)
embed.add_field(name="!showMatches", value="Shows all the matches in the current round"+"\n\u200b", inline=False)
embed.add_field(name="!show", value="Shows the current round number"+"\n\u200b", inline=False)
embed.add_field(name="!roundStatus <roundnumber>", value="Shows the status of the current round"+"\n\u200b", inline=False)
embed.add_field(name="!matchUpdates", value="Gives you the updates of the ongoing match in a channel"+"\n\u200b", inline=False)
embed.add_field(name="!stalk <tag>", value="Shows details of a particular participant"+"\n\u200b", inline=False)
embed.add_field(name="!flow", value="Shows the workflow"+"\n\u200b", inline=False)
embed.add_field(name="!managerHelp", value="Shows the commands for tourney-managers"+"\n\u200b", inline=False)
embed.add_field(name="!help", value="This message -_-", inline=False)
await ctx.send(embed=embed)
return
@client.command()
async def flow(ctx):
embed = discord.Embed(
title="FLOW OF EVENTS :ocean:",
description=f"\n"
"1. Register your cf handles(compulsary) followed by your ac handles(not compulsary)\n\n"
"2. Contact your opponent of your current round to fix a match and inform one of the moderators\n\n"
"3. Have your match for anytime between 10 to 180 mins on a cf/ac problemset\n\n"
"4. Be the last one standing to become the LOCKOUT CHAMPION\n\n"
,
color=0x3cddbc)
await ctx.send(embed=embed)
return
@client.command()
@commands.has_role('Tourney-manager')
async def managerHelp(ctx):
embed = discord.Embed(
title="MANAGER COMMANDS :saluting_face: ",
color=0x3cddbc)
disp = ""
disp += "Start a match between two participants\n"
disp += "-> To start a cf match give rating number\n"
disp += "-> To start a ac match give toughness (easy, medium, hard)\n"
embed.add_field(name="!channel <channel name>", value="To change the channel of tourney manager"+"\n\u200b", inline=False)
embed.add_field(name="!startRegister <channel name> <tourneyname>", value="To register a tournament with a channel"+"\n\u200b", inline=False)
embed.add_field(name="!matchChannel <channel name> <tourneyname>", value="To register a channel for match"+"\n\u200b", inline=False)
embed.add_field(name="!unRegMatchChannel <channel name>", value="To unregister a channel for match"+"\n\u200b", inline=False)
embed.add_field(name="!startTourney <tourneyname>", value="Start a tournament"+"\n\u200b", inline=False)
embed.add_field(name="!stopTourney <tourneyname>", value="Stop a tournament"+"\n\u200b", inline=False)
embed.add_field(name="!showTourneys", value="Shows the list of tournaments"+"\n\u200b", inline=False)
embed.add_field(name="!startMatch <tag1> <tag2> <rating/toughness>", value=disp, inline=False)
await ctx.send(embed=embed)
return
##########################################################################################################################
# ATCODER CODE
##########################################################################################################################
# sync functions
def sing_status(task,user):
link1 = f"{task[:-2]}/submissions?f.Task={task}&f.LanguageName=&f.Status=&f.User={user}"
msg1 = ac_problemset.search(link1)
ans1 = ac_problemset.status(msg1)
return ans1
def status(task,user1,user2):
link1 = f"{task[:-2]}/submissions?f.Task={task}&f.LanguageName=&f.Status=&f.User={user1}"
msg1 = ac_problemset.search(link1)
ans1 = ac_problemset.status(msg1)
link2 = f"{task[:-2]}/submissions?f.Task={task}&f.LanguageName=&f.Status=&f.User={user2}"
msg2 = ac_problemset.search(link2)
ans2 = ac_problemset.status(msg2)
if ans1 == ans2 == 'No submissions':
return False
else:
return True
def ac_probs(words,user1,user2):
link = 'Error, Please try again!'
if words[0].lower() == 'beginner':
if words[1] in 'abcd':
num = random.randint(42,250)
else:
num = random.randint(130,250)
if 9<num<100:
num = '0'+str(num)
else:
num = str(num)
while status('abc_'+num+words[1],user1,user2):
if words[1] in 'abcd':
num = random.randint(42,250)
else:
num = random.randint(130,250)
if 9<num<100:
num = '0'+str(num)
else:
num = str(num)
link = 'abc'+str(num)+'/tasks/abc'+str(num)+'_'+words[1].lower()
elif words[0].lower() == 'regular':
num = random.randint(104,150) #starts from 58 but 58 to 103 only have abcd
if 9<num<100:
num = '0'+str(num)
else:
num = str(num)
while status('arc_'+num+words[1],user1,user2):
num = random.randint(104,150) #starts from 58 but 58 to 103 only have abcd
if 9<num<100:
num = '0'+str(num)
else:
num = str(num)
link = 'arc'+str(num)+'/tasks/arc'+str(num)+'_'+words[1].lower()
elif words[0].lower() == 'grand':
num = random.randint(1,59)
if 0<num<10:
num = '00'+str(num)
elif 9<num<100:
num = '0'+str(num)
else:
num = str(num)
while status('agc_'+num+words[1],user1,user2):
num = random.randint(1,59)
if 0<num<10:
num = '00'+str(num)
elif 9<num<100:
num = '0'+str(num)
else:
num = str(num)
link = 'agc'+str(num)+'/tasks/agc'+str(num)+'_'+words[1].lower()
return link
def ac_validate_acc(handle,string):
startTime = time.time()
uris = 'https://atcoder.jp/users/' + handle
while True:
response = requests.get(uris)
content = response.content
soup = BeautifulSoup(content, 'html.parser')
Text = soup.body
main = Text.find("table",class_ = "dl-table")
if "Affiliation" not in main.text:
continue
index = main.text.index("Affiliation")
aff = main.text[index+11:]
s = str(aff)[:-1]
# s = string
# print(s,aff)
if s == string:
return True
if time.time()-startTime > 60:
return False
time.sleep(10)
async def matchLive(ctx, str1, str2, dic, url, match_time):
thisServer = servers.find_one({"_id": ctx.guild.id})
# global text_channel
for x in ctx.guild.text_channels:
if x.id == dic["channel_id"]:
text_channel = x
global tourneyName
tourneyName = None
for tournament in thisServer['tournaments']:
if(text_channel.id in thisServer['tournaments'][tournament]['match_channels']):
tourneyName = tournament
print(text_channel.id)
# await text_channel.send(embed=embed)
# return
print("hello")
# match_time = 0
while(True):
flag = False
match_list_now=current_matches.find_one({"server":ctx.guild.id})['matches'][tourneyName]
for i in match_list_now:
if(i["channel_id"] == text_channel.id):
plt = i["platform"]
problem_list = i["Problems"]
score1 = i["Scores"][0]
score2 = i["Scores"][1]
pc1 = i["problem_rating"][0]
pc2 = i["problem_rating"][1]
player1 = i["player1"]
player2 = i["player2"]
hours_start = i["Start_Time"][0]
minutes_start = i["Start_Time"][1]
flag = True
break
if(flag == False):
break
print(text_channel.id)
print(i["player1"]["cf_handle"])
# score1=scores[0]
# score2=scores[1]
# pc1 = pc[0]
# pc2 = pc[1]
if plt == 'cf':
url1=f"https://codeforces.com/api/user.status?handle={player1['cf_handle']}&from=1&count=10"
url2=f"https://codeforces.com/api/user.status?handle={player2['cf_handle']}&from=1&count=10"
response_API=requests.get(url1)
data=response_API.text
parse_json=json.loads(data)
submissions=parse_json['result']
index=1
for x in problem_list:
for y in submissions:
if(y['problem']['name']==x['name']and y['verdict']=="OK"and x['status']==0):
pc1 = max(pc1,index*100)
x['status']=1
score1=score1+100*index
embed = discord.Embed(
description=f"<@{str1}> has solved problem worth {100*index} points",
color=discord.Color.blue()
)
await text_channel.send(embed = embed)
embed = discord.Embed(
title="There's an update in the standings !",
description=f"<@{str1}> : {score1} <@{str2}> : {score2}",
color=discord.Color.green()
)
value = ""
score = ""
idx=1
for xx in problem_list:
proburl = "https://codeforces.com/contest/" + str(xx['contestId']) + "/problem/" + str(xx['index'])
if(xx['status'] == 0):
value += f"[{xx['name']}]({proburl})" + "\n"
score += str(idx*100) + "\n";
else:
value += "this problem has been solved" + "\n"
score += str(idx*100) + "\n";
idx += 1
embed.add_field(name='Score', value = score, inline = True)
embed.add_field(name="Problem", value = value, inline=True)
embed.set_footer(text=f"Remaining Time : {match_time-time_elapsed} minutes")
await text_channel.send(embed = embed)
continue
index = index + 1
response_API=requests.get(url2)
data=response_API.text
parse_json=json.loads(data)
submissions=parse_json['result']
index=1
for x in problem_list:
for y in submissions:
if(y['problem']['name']==x['name']and y['verdict']=="OK"and x['status']==0):
pc2 = max(pc2,index*100)
x['status']=1
score2=score2 + 100*index
embed = discord.Embed(
description=f"<@{str2}> has solved problem worth {100*index} points",
color=discord.Color.blue()
)
await text_channel.send(embed = embed)
embed = discord.Embed(
title="There's an update in the standings !",
description=f"<@{str1}> : {score1} <@{str2}> : {score2}",
color=discord.Color.green()
)
value = ""
score = ""
idx = 1
for xx in problem_list:
proburl = "https://codeforces.com/contest/" + str(xx['contestId']) + "/problem/" + str(xx['index'])
if(xx['status'] == 0):
value += f"[{xx['name']}]({proburl})" + "\n"
score += str(idx*100) + "\n";
else:
value += "this problem has been solved" + "\n"
score += str(idx*100) + "\n";
idx += 1
embed.add_field(name='Score', value = score, inline = True)
embed.add_field(name="Problem", value = value, inline=True)
embed.set_footer(text=f"Remaining Time : {match_time-time_elapsed} minutes")
await text_channel.send(embed = embed)
continue
index=index+1
dic.update({"platform": "cf"})
else:
index = 1
for x in problem_list:
# print(x[0][-8:])
if sing_status(x[0][-8:],player1["ac_handle"]) == 'AC' and x[1] == 0:
x[1]=1
score1+=100*index
pc1 = max(pc1,100*index)
embed = discord.Embed(
description=f"<@{str1}> has solved problem worth {100*index} points",
color=discord.Color.blue()
)
await text_channel.send(embed = embed)
embed = discord.Embed(
title="There's an update in the standings !",
description=f"<@{str1}> : {score1} <@{str2}> : {score2}",
color=discord.Color.green()
)
value = ""
score = ""
index = 1
for xx in problem_list:
if(xx[1] == 0):
value += f"[Task {index}]({url+str(xx[0])})"+"\n"
score += str(index*100) + "\n";
else:
value += "this problem has been solved" + "\n"
score += str(index*100) + "\n";
index+=1
embed.add_field(name='Score', value = score, inline = True)
embed.add_field(name="Problem", value = value, inline=True)
embed.set_footer(text=f"Remaining Time : {match_time-time_elapsed} minutes")
await text_channel.send(embed = embed)
continue
index=index+1
index=1
for x in problem_list:
if sing_status(x[0][-8:],player2["ac_handle"]) == 'AC' and x[1] == 0:
x[1]=1
score2+=100*index
pc2 = max(pc2,100*index)
embed = discord.Embed(
description=f"<@{str2}> has solved problem worth {100*index} points",
color=discord.Color.blue()
)
await text_channel.send(embed = embed)
embed = discord.Embed(
title="There's an update in the standings !",
description=f"<@{str1}> : {score1} <@{str2}> : {score2}",
color=discord.Color.green()
)
value = ""
score = ""
index = 1
for xx in problem_list:
if(xx[1] == 0):
value += f"[Task {index}]({url+str(xx[0])})"+"\n"
score += str(index*100) + "\n";
else:
value += "this problem has been solved" + "\n"
score += str(index*100) + "\n";
index=index+1
embed.add_field(name='Score', value = score, inline = True)
embed.add_field(name="Problem", value = value, inline=True)
embed.set_footer(text=f"Remaining Time : {match_time-time_elapsed} minutes")
await text_channel.send(embed = embed)
continue
index=index+1
dic.update({"platform":"ac"})
dic.update({"Problems":problem_list})
dic.update({"Scores":[score1,score2]})
dic.update({"problem_rating":[pc1,pc2]})
scores = [score1,score2]
pc = [pc1,pc2]
current_time=time.ctime()[11:19]
hours=int(current_time[0:2])
minutes=int(current_time[3:5])
seconds=int(current_time[6:8])
time_elapsed=(hours-hours_start)*60+(minutes-minutes_start)
if(time_elapsed > match_time-1):
print(time_elapsed)
print(match_time)
embed = discord.Embed(
title="Time over!",
description="The match is finished",
color=discord.Color.red()
)
await text_channel.send(embed = embed)
await stopMatch(ctx)
return
matches = current_matches.find_one({"server":ctx.guild.id})['matches']
arr = []
for var in matches[tourneyName]:
if(var['channel_id'] == text_channel.id):
var['Scores'] = scores
var['Problems'] = problem_list
var['problem_rating'] = pc
var['platform'] = plt
arr.append(var)
else:
arr.append(var)
matches[tourneyName] = arr
current_matches.update_one({"server": ctx.guild.id},{"$set":{"matches": matches}})
all_solved = True
if plt == 'ac':
for x in problem_list:
if(x[1] == 0):
all_solved = False
else:
for x in problem_list:
if(x['status'] == 0):
all_solved = False
if(all_solved):
embed = discord.Embed(
title="All problems have been solved !",
description="The match is finished",
color=discord.Color.red()
)
await text_channel.send(embed = embed)
await stopMatch(ctx)
return
await asyncio.sleep(30)
#async functions
#Participants can register using this command
@client.command()
async def ac_registerMe(ctx, ac_handle="--"):
thisServer = servers.find_one({"_id": ctx.guild.id})
# global text_channel
for x in ctx.guild.text_channels:
if x.id == ctx.channel.id:
text_channel = x
global tourneyName
tourneyName = None
for tournament in thisServer['tournaments']:
if(thisServer['tournaments'][tournament]['text_channel'] == text_channel.id):
tourneyName = tournament
if tourneyName == None:
embed = discord.Embed(
title="No Tourney",
description=f"{ctx.author.mention} there is no ongoing tournament in this channel",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
checkForStartTourney = thisServer['tournaments'][tourneyName]['tourney_status']
if(ac_handle == "--"):
embed = discord.Embed(
title="Invalid command!",
description="Please specify the ac handle.",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
if checkForStartTourney == True:
embed = discord.Embed(
title="Tournament Already Started",
description="Tounament has already started so nothing can be changed.",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
flag = False
participantsListTemp = participantsList.find_one({"server": ctx.guild.id})
for x in participantsListTemp["contestants"][tourneyName]:
if x['id'] == ctx.author.id:
flag = True
if x['ac_handle'] == ac_handle:
embed = discord.Embed(
title="Already Registered",
description=f"{ctx.author.mention} This handle has already been registered by another person"
"Please register using another perviously unregistered handle!",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
if x['id'] == ctx.author.id and x['ac_handle'] != '--':
embed = discord.Embed(
title="Already Registered",
description=f"{ctx.author.mention} you are already registered, please wait till tournament"
f" is started. If trying to change your"
f"seed then first unregister yourself then again register.",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
if not flag:
embed = discord.Embed(
title="Invalid Command",
description=f"{ctx.author.mention} Please register your cf_handle first and then register your "
"ac_handle!",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
maxR = 0
uri = 'https://atcoder.jp/users/' + ac_handle
response = requests.get(uri)
soup = BeautifulSoup(response.content, 'html.parser')
Text = soup.body
main = Text.find("table",class_ = "dl-table mt-2")
if main == None:
embed = discord.Embed(
title="Invalid ac handle!",
description="Please check your ac handle.",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
## validate account
embed = discord.Embed(
title="Validate your account within 1 minute",
description=f"{ctx.author.mention}",
color=discord.Color.gold()
)
val_string = ''.join(random.choices(string.ascii_lowercase, k=10))
embed.add_field(name="Please change your Affiliation", value=val_string)
await text_channel.send(embed=embed)
if not (ac_validate_acc(ac_handle, val_string)):
embed = discord.Embed(
title="Validation failed!",
description=f"{ctx.author.mention}",
color=discord.Color.gold()
)
embed.add_field(name="Please try to register again")
await text_channel.send(embed=embed)
return
ind = main.text.index("Highest")
s = ''
for i in main.text[ind+len("Highest rating"):]:
if i == '―':
break
s += i
maxR = int(s)
contestants_ = participantsList.find_one({"server": ctx.guild.id})['contestants']
for i in contestants_[tourneyName]:
if i["id"] == ctx.author.id:
i["ac_handle"] = ac_handle
i["ac_maxR"] = maxR
participantsList.update_one({"server": ctx.guild.id},
{"$set": {"contestants": contestants_}})
embed = discord.Embed(
title="Registration successfull!",
description=f"{ctx.author.mention}",
color=discord.Color.gold()
)
embed.add_field(name="Ac_Handle", value=ac_handle, inline=True)
embed.add_field(name="Max_Rating", value=maxR)
embed.set_footer(text = "If the above details are incorrect, unregister yourself and then register again.")
await text_channel.send(embed=embed)
###########################################################################################################################
# CODEFORCES
###########################################################################################################################
#Give updates on the status of a match using discord command
@client.command()
async def matchUpdates(ctx):
thisServer = servers.find_one({"_id": ctx.guild.id})
# global text_channel
for x in ctx.guild.text_channels:
if x.id == ctx.channel.id:
text_channel = x
global tourneyName
tourneyName = None
for tournament in thisServer['tournaments']:
if(text_channel.id in thisServer['tournaments'][tournament]['match_channels']):
tourneyName = tournament
if(tourneyName == None):
embed = discord.Embed(
title="This channel is not registered for hosting any match!",
color=discord.Color.red()
)
await text_channel.send(embed=embed)
return
matches = current_matches.find_one({"server": ctx.guild.id})["matches"][tourneyName]
for match in matches:
if(match["channel_id"] == text_channel.id):
current_time=time.ctime()[11:19]
hours=int(current_time[0:2])
minutes=int(current_time[3:5])
time_elapsed=(hours-match["Start_Time"][0])*60+(minutes-match["Start_Time"][1])
score1,score2=match["Scores"][0],match["Scores"][1]
id1,id2=match['player1']['id'],match['player2']['id']
plt = match["platform"]
embed=discord.Embed(
title="Match_Updates",
description=f"<@{id1}> : {score1} <@{id2}> : {score2}",
color=discord.Color.green()
)
index=1
value = ""
score = ""
if plt == 'cf':
for x in match["Problems"]:
proburl = "https://codeforces.com/contest/" + str(x['contestId']) + "/problem/" + str(x['index'])
if(x['status'] == 0):
value += f"[{x['name']}]({proburl})" + "\n"
score += str(index*100) + "\n";
else:
value += "this problem has been solved" + "\n"
score += str(index*100) + "\n";
index=index+1
else:
url = 'https://atcoder.jp/contests/'
for x in match["Problems"]:
if(x[1] == 0):
value += f"[Task {index}]({url+str(x[0])})"+"\n"
score += str(index*100) + "\n";
else:
value += "this problem has been solved" + "\n"
score += str(index*100) + "\n";
index=index+1
embed.add_field(name='Score', value = score, inline = True)
embed.add_field(name="Problem", value = value, inline=True)
embed.set_footer(text=f"Remaining Time : {match['Match_duration']-time_elapsed} minutes")
await text_channel.send(embed=embed)
return
embed=discord.Embed(
title="No live match in this channel !",
color=discord.Color.red()
)
await text_channel.send(embed=embed)
return
#Prepares the database for tournaments in a new server
@client.event
async def on_guild_join(guild):
res = servers.find_one({"_id": guild.id})
if res is None:
text_channel = guild.text_channels[0]
servers.insert_one({"_id": guild.id,
"tournaments": {},
"text_channel": text_channel.id})
current_matches.insert_one({"server": guild.id,
"matches": {}})
participantsList.insert_one({"server": guild.id,
"contestants": {}})
storage.insert_one({"server": guild.id,
"storage": {}})
embed = discord.Embed(title="Lockout Bot Added Successfully ! :crossed_swords:",
description="You are now ready to organise tournaments", color=0xffa800)
embed.set_thumbnail(
url="https://cdn-icons-png.flaticon.com/512/1355/1355961.png")
embed.add_field(name="Bot Name", value="Lockout Bot", inline=True)
embed.add_field(name="Nick Name", value="Tatakae", inline=True)
await text_channel.send(embed=embed)
@client.command()
@commands.has_role('Tourney-manager')
async def channel(ctx, text_channel: discord.TextChannel):
global prev_channel
prev = servers.find_one({"_id": ctx.guild.id})["text_channel"]
servers.update_one({"_id": ctx.guild.id}, {"$set": {"text_channel": text_channel.id}})
for x in ctx.guild.text_channels:
if x.id == prev:
prev_channel = x
if prev == text_channel.id:
embed = discord.Embed(
title="Channel Changed",
description=f"I am already in this channel",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
return
embed = discord.Embed(
title="Channel Changed",
description=f"Bot's channel changed to {text_channel.mention}",
color=discord.Color.gold()
)
embed2 = discord.Embed(
title="Channel Changed",
description=f"Bot's channel changed to {text_channel.mention}",
color=discord.Color.gold()
)
await text_channel.send(embed=embed)
await prev_channel.send(embed=embed2)
#Starts the registrations for a tournament
@client.command()
@commands.has_role('Tourney-manager')
async def startRegister(ctx, text_channel: discord.TextChannel, tourneyName = "--"):
thisServer = servers.find_one({"_id": ctx.guild.id})
text_channel_n = thisServer["text_channel"]
global home_channel
for x in ctx.guild.text_channels:
if x.id == text_channel_n:
home_channel = x
if(ctx.channel.id != text_channel_n):
embed = discord.Embed(
title="Bot not registered in this channel !",
color=discord.Color.red()
)
await ctx.send(embed=embed)
return
if(tourneyName == "--"):
embed = discord.Embed(
title="Invalid command! :x:",
description="please specify tournament name",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
return
flag = False
tournaments = servers.find_one({"_id": ctx.guild.id})['tournaments']
for tournament in tournaments:
if(tournaments[tournament]['text_channel'] == text_channel.id):
embed = discord.Embed(
title="Tournament already running in given channel !",
description="you can start a new tournament only after current one ends",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
return
if(tournament == tourneyName):
flag = True
if(flag):
embed = discord.Embed(
title="Tournament name should be unique !",
description="there exists a tournament with the same name so please try again with a new name",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
return
tournaments[tourneyName] = {
"text_channel": text_channel.id,
"tourney_status": False,
"current_round": None,
"match_channels": []
}
servers.update_one({"_id": ctx.guild.id}, {
"$set": {"tournaments": tournaments}})
parts_ = participantsList.find_one({"server": ctx.guild.id})['contestants']
parts_[tourneyName] = []
participantsList.update_one({"server": ctx.guild.id},
{"$set": {'contestants': parts_}})
current_ = current_matches.find_one({"server": ctx.guild.id})['matches']
current_[tourneyName] = []
current_matches.update_one({"server": ctx.guild.id},
{"$set": {'matches': current_}})
storage_ = storage.find_one({"server": ctx.guild.id})['storage']
storage_[tourneyName] = []
storage.update_one({"server": ctx.guild.id},
{"$set": {'storage': storage_}})
embed = discord.Embed(
title="Tournament Started :crossed_swords:",
description=f"Participants can register their cf account with **!registerMe <cf_handle>** and ac account with **!ac_registerMe <ac_handle>**",
color=discord.Color.gold()
)
embed2 = discord.Embed(
title=f"Tournament **{tourneyName}** started :crossed_swords:",
color=discord.Color.gold()
)
embed.set_author(name=botName)
await text_channel.send(embed=embed)
await home_channel.send(embed=embed2)
#Officially starts the tournament with matchups
@client.command()
@commands.has_role('Tourney-manager')
async def startTourney(ctx, tourneyName= "--"):
thisServer = servers.find_one({"_id": ctx.guild.id})
text_channel_n = thisServer["text_channel"]
global home_channel
for x in ctx.guild.text_channels:
if x.id == text_channel_n:
home_channel = x
if(ctx.channel.id != text_channel_n):
embed = discord.Embed(
title="Tourney-manager not registered in this channel !",
color=discord.Color.red()
)
await ctx.send(embed=embed)
return
if(tourneyName == "--"):
embed = discord.Embed(
title="Invalid command! :x:",
description="please specify tournament name",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
return
tournaments = thisServer['tournaments']
global checkForStartTourney
flag = False
for i in tournaments:
if(i == tourneyName):
flag = True
checkForStartTourney = tournaments[tourneyName]['tourney_status']
if not flag:
embed = discord.Embed(
title=f"Tournament {tourneyName} does not exist!",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
if checkForStartTourney == True:
embed = discord.Embed(
title="Tournament Already Started",
color=discord.Color.red()
)
embed.set_author(name=botName)
await home_channel.send(embed=embed)
return
if len(participantsList.find_one({"server": ctx.guild.id})['contestants'][tourneyName]) == 0:
embed = discord.Embed(
title="No registrations",
description="No participants registered, cannot start the Tourney. Participants can register their cf accont using !registerMe <cf_handle> and ac accound using !ac_registerMe <ac_handle>",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
return
if len(participantsList.find_one({"server": ctx.guild.id})['contestants'][tourneyName]) == 1:
embed = discord.Embed(
title="Single registrant",
description="Cannot start a tourney with a single participant.",
color=discord.Color.red()
)
await home_channel.send(embed=embed)
return
text_channel_n2 = thisServer['tournaments'][tourneyName]['text_channel']
# global text_channel
for x in ctx.guild.text_channels:
if x.id == text_channel_n2:
text_channel = x
tournaments[tourneyName]['tourney_status'] = True
tournaments[tourneyName]['current_round'] = 1
match_builder(ctx,tourneyName)
servers.update_one({"_id": ctx.guild.id},{
"$set": {"tournaments": tournaments}})
embed = discord.Embed(
title=f"Tourney started :D",
description=f"The tourney {tourneyName} has started.",
color=discord.Color.green()
)
await text_channel.send(embed=embed)
await home_channel.send(embed=embed)
@client.command()
@commands.has_role('Tourney-manager')
async def matchChannel(ctx, text_channel: discord.TextChannel, tourneyName= "--"):
thisServer = servers.find_one({"_id": ctx.guild.id})
text_channel_n = thisServer["text_channel"]
global home_channel
for x in ctx.guild.text_channels:
if x.id == text_channel_n:
home_channel = x