-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
executable file
·638 lines (541 loc) · 27.2 KB
/
main.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
#! /usr/bin/env python3
# The MIT License (MIT)
# Copyright (c) 2017 Levak Borok <levak92@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
import discord
import asyncio
import sys
from rolekeeper import RoleKeeper
intents = discord.Intents.default()
intents.guilds = True
intents.members = True
intents.presences = True
intents.messages = True
intents.reactions = True
client = discord.Client(intents=intents)
@client.event
async def on_ready():
print('Logged in as')
print(client.user.name)
print(client.user.id)
print('------')
await rk.on_ready()
@client.event
async def on_member_join(member):
await rk.on_member_join(member)
@client.event
async def on_member_update(before, after):
await rk.on_member_update(before, after)
@client.event
async def on_user_update(before, after):
await rk.on_user_update(before, after)
client.cached_reaction_messages = {}
async def get_message(guild_id, channel_id, message_id):
if message_id not in client.cached_reaction_messages:
guild = client.get_guild(guild_id)
channel = guild.get_channel(channel_id)
message = await channel.fetch_message(message_id)
client.cached_reaction_messages[message_id] = message
return client.cached_reaction_messages[message_id]
@client.event
async def on_raw_reaction_add(payload):
message = await get_message(payload.guild_id, payload.channel_id, payload.message_id)
user = client.get_user(payload.user_id)
reaction = payload.emoji.name
await rk.on_reaction_event('add', reaction, message, user)
@client.event
async def on_raw_reaction_remove(payload):
message = await get_message(payload.guild_id, payload.channel_id, payload.message_id)
user = client.get_user(payload.user_id)
reaction = payload.emoji.name
await rk.on_reaction_event('remove', reaction, message, user)
@client.event
async def on_message(message):
# If we are the one sending a message, skip
if message.author == rk.client.user:
return
# If message is a DM
if isinstance(message.channel, discord.abc.PrivateChannel):
await rk.on_dm(message)
return
# If message came from a non-configured guild, skip
if not rk.check_guild(message.guild):
return
is_admin = message.author.guild_permissions.manage_roles
is_ref = discord.utils.get(message.author.roles, name=rk.config['roles']['referee']['name']) or is_admin
is_captain_in_match = rk.is_captain_in_match(message.author, message.channel, is_admin or is_ref)
is_streamer = discord.utils.get(message.author.roles, name=rk.config['roles']['streamer']['name']) or is_ref
if len(message.content) <= 0:
return
# Bypass command line when message is in a captain hunt channel
_db, _error, _ = rk.find_cup_db(message.guild, hunt=message.channel)
if not _error and not is_ref:
await rk.on_hunt_message(message, _db)
return
command = message.content.split()[0]
args = message.content.replace(command, '', 1)
command = command.lower()
# Special shortcut for pick&ban
if is_captain_in_match and len(command) > 1:
if command.startswith('-'):
args = command[1:] + ' ' + args
command = '!ban'
elif command.startswith('+'):
args = command[1:] + ' ' + args
command = '!pick'
elif command.startswith('='):
args = command[1:] + ' ' + args
command = '!side'
args = args.strip()
reuse_mode = RoleKeeper.REUSE_UNK
if args.endswith(' reuse'):
reuse_mode = RoleKeeper.REUSE_YES
args = args[:-6]
elif args.endswith(' new'):
reuse_mode = RoleKeeper.REUSE_NO
args = args[:-4]
parts = args.split()
ret = False
exception = None
try:
if False:
pass
# ADMIN COMMANDS
#----------------
elif command == '!wipe_matches' and is_admin:
wipe_mode = None
if 'finished' in args:
wipe_mode = RoleKeeper.WIPE_FINISHED
args = args.replace('finished', '', 1)
elif 'rooms' in args:
wipe_mode = RoleKeeper.WIPE_ROOMS
args = args.replace('rooms', '', 1)
elif 'all' in args:
wipe_mode = RoleKeeper.WIPE_ALL
args = args.replace('all', '', 1)
else:
await rk.reply(message,
'Not enough arguments:\n```!wipe_matches finished|rooms|all [cup]```')
if wipe_mode:
parts = args.split()
ret = await rk.wipe_matches(message,
parts[0] if len(parts) > 0 else '',
mode=wipe_mode)
elif command == '!wipe_messages' and is_admin:
if len(message.channel_mentions) < 1:
await rk.reply(message,
'Not enough arguments:\n```!wipe_messages #channel```')
else:
ret = await rk.wipe_messages(message, message.channel_mentions[0])
elif command == '!announce' and is_admin:
ret = await rk.announce(args, message)
elif command == '!reconfig' and is_admin:
ret = await rk.reload_config(message)
elif command == '!broadcast' and is_admin:
if len(parts) > 0:
ret = await rk.broadcast_mode(message,
RoleKeeper.BCAST_ON \
if parts[0] == 'on' \
else RoleKeeper.BCAST_OFF)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!broadcast on/off```')
elif command == '!members' and is_admin:
ret = await rk.export_members(message)
elif command == '!captains' and is_admin:
ret = await rk.export_captains(message,
parts[0] if len(parts) > 0 else '')
elif command == '!set_players' and is_admin:
if len(parts) > 0 and len(message.attachments) > 0:
ret = await rk.set_players(message,
parts[0],
message.attachments[0])
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!set_players name // PLAYERS_CID.csv```')
elif command == '!start_rewards' and is_admin:
if len(parts) > 1 and len(message.channel_mentions) > 0:
ret = await rk.start_rewards(message,
parts[0],
message.channel_mentions[0],
parts[2] if len(parts) > 2 else None,
message.attachments[0] if len(message.attachments) > 0 else None)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!start_rewards name #channel pvp.gg // [PLAYERS_CID.csv]```')
elif command == '!export_rewards' and is_admin:
if len(parts) > 0:
ret = await rk.export_rewards(message,
parts[0],
message.attachments[0] if len(message.attachments) > 0 else None)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!export_rewards name // [PLAYERS_CID.csv]```')
elif command == '!stop_rewards' and is_admin:
ret = await rk.stop_rewards(message,
parts[0] if len(parts) > 0 else '')
elif command == '!stats' and is_admin:
ret = await rk.export_stats(message,
parts[0] if len(parts) > 0 else '')
elif command == '!start_cup' and is_admin:
if len(parts) > 0:
ret = await rk.start_cup(message,
parts[0],
message.attachments[0] if len(message.attachments) > 0 else None,
selected_maps_key=parts[1] if len(parts) > 1 else None)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!start_cup name [maps_key] [// TEAMS.csv]```')
elif command == '!check_cup' and is_admin:
if len(parts) > 0:
ret = await rk.check_cup(message,
parts[0],
message.attachments[0] if len(message.attachments) > 0 else None,
pvpgg_link = parts[1] if len(parts) > 1 else None)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!check_cup name [pvp.gg] [// TEAMS.csv]```')
elif command == '!update_cup' and is_admin:
if len(parts) > 0 and len(message.attachments) > 0:
ret = await rk.update_cup(message,
parts[0],
message.attachments[0])
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!update_cup name // TEAMS.csv```')
elif command == '!stop_cup' and is_admin:
if len(parts) > 0:
ret = await rk.stop_cup(message,
parts[0])
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!stop_cup name```')
elif command == '!cups' and is_admin:
ret = await rk.list_cups(message)
elif command == '!start_hunt' and is_admin:
channel = message.channel_mentions[0] if len(message.channel_mentions) > 0 else message.channel
if len(parts) > 0:
ret = await rk.start_hunt(message,
parts[0],
channel)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!start_hunt cup [#channel]```')
elif command == '!stop_hunt' and is_admin:
if len(parts) > 0:
ret = await rk.stop_hunt(message,
parts[0])
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!stop_hunt cup```')
# REF COMMANDS
#--------------
elif command == '!add_group' and is_ref:
if len(parts) >= 1:
ret = await rk.add_group(message,
message.guild,
parts[0],
parts[1] if len(parts) >= 2 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!add_group group [cup]```')
elif command == '!remove_group' and is_ref:
if len(parts) >= 1:
ret = await rk.remove_group(message,
message.guild,
parts[0],
parts[1] if len(parts) >= 2 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!remove_group group [cup]```')
elif command == '!add_captain' and is_ref:
member = message.mentions[0] if len(message.mentions) >= 1 \
else message.guild.get_member(int(parts[0])) if len(parts) >= 4 and parts[0].isdigit() \
else None
if member:
ret = await rk.add_captain(message,
message.guild,
member,
parts[1],
parts[2],
parts[3] if parts[3] != '-' else None,
parts[4] if len(parts) > 4 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!add_captain @xxx team nick group|- [cup]```')
elif command == '!update_captain' and is_ref:
member = message.mentions[0] if len(message.mentions) >= 1 \
else message.guild.get_member(int(parts[0])) if len(parts) >= 2 and parts[0].isdigit() \
else None
if member:
ret = await rk.update_captain(message,
message.guild,
member,
parts[1],
parts[2] if len(parts) > 2 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!update_captain @xxx nickname [cup]```')
elif command == '!update_team' and is_ref:
if len(parts) >= 2:
ret = await rk.update_team(message,
message.guild,
parts[0],
parts[1],
parts[2] if len(parts) > 2 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!update_team team_name new_name [cup]```')
elif command == '!remove_captain' and is_ref:
member = message.mentions[0] if len(message.mentions) >= 1 \
else message.guild.get_member(int(parts[0])) if len(parts) >= 1 and parts[0].isdigit() \
else None
if member:
ret = await rk.remove_captain(message,
message.guild,
member,
parts[1] if len(parts) > 1 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!remove_captain @xxx [cup]```')
elif command == '!check_captain' and is_ref:
member = message.mentions[0] if len(message.mentions) >= 1 \
else message.guild.get_member(int(parts[0])) if len(parts) >= 1 and parts[0].isdigit() \
else None
if member:
ret = await rk.check_captain(message,
message.guild,
member,
parts[1] if len(parts) > 1 else '')
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!check_captain @xxx [cup]```')
elif is_ref and (command == '!bo1' or command == '!bo2' or command == '!bo3' or command == '!bo5'):
mode = RoleKeeper.MATCH_BO1
if command == '!bo2':
mode = RoleKeeper.MATCH_BO2
elif command == '!bo3':
mode = RoleKeeper.MATCH_BO3
elif command == '!bo5':
mode = RoleKeeper.MATCH_BO5
cat_id = parts[2][1:] \
if len(parts) > 2 and parts[2].startswith('>')\
else None
cup_name = parts[3] \
if len(parts) > 3 \
else parts[2] \
if len(parts) > 2 and not parts[2].startswith('>') \
else ''
if len(message.role_mentions) == 2:
ret, _ = await rk.matchup_role(message,
message.guild,
message.role_mentions[0],
message.role_mentions[1],
cat_id,
cup_name,
mode=mode,
reuse=reuse_mode)
elif len(message.mentions) == 2:
ret, _ = await rk.matchup_cpt (message,
message.guild,
message.mentions[0],
message.mentions[1],
cat_id,
cup_name,
mode=mode,
reuse=reuse_mode)
elif len(parts) >= 2:
ret, _ = await rk.matchup_team(message,
message.guild,
parts[0],
parts[1],
cat_id,
cup_name,
mode=mode,
reuse=reuse_mode)
else:
await rk.reply(message,
'Too much or not enough arguments:\n'
'```{command} @xxx @yyy [>category] [cup] [new/reuse]```'\
.format(command=command))
elif is_ref and command == '!ffa':
cat_id = parts[-1][1:] \
if len(parts) > 2 and parts[-1].startswith('>') \
else parts[-2][1:] \
if len(parts) > 3 and parts[-2].startswith('>') \
else None
cup_name = parts[-1][1:] \
if len(parts) > 3 and parts[-1].startswith('?') \
else parts[-2][1:] \
if len(parts) > 2 and parts[-2].startswith('?') \
else ''
round=parts[0] if len(parts) > 0 else None
match=parts[1] if len(parts) > 1 else None
if round and match and len(message.mentions) > 0:
ret, _ = await rk.matchup_ffa (message,
message.guild,
round,
match,
cat_id,
cup_name,
players=message.mentions,
reuse=reuse_mode)
elif round and match and len(message.attachments) > 0:
ret, _ = await rk.matchup_ffa (message,
message.guild,
round,
match,
cat_id,
cup_name,
players_csv=message.attachments[0],
reuse=reuse_mode)
elif round and match and len(parts) > 2:
end = -2 if len(cup_name) > 0 and cat_id else -1 if len(cup_name) > 0 or cat_id else 0
names = [ p.replace(',', '') for p in (parts[2:end] if end < 0 else parts[2:]) ]
ret, _ = await rk.matchup_ffa (message,
message.guild,
round,
match,
cat_id,
cup_name,
team_names=names,
reuse=reuse_mode)
else:
await rk.reply(message,
'Too much or not enough arguments:\n'
'```!ffa round match [@member1 @member2 ...|player1, player2, ...] [>category] [?cup] [new/reuse] [// Players.csv]```')
elif command == '!undo' and is_ref:
ret = await rk.undo_map(message)
elif command == '!close' and is_ref:
ret = await rk.close_match(message)
elif command == '!say' and is_ref:
if len(parts) > 1 or (len(parts) == 1 and len(message.attachments) > 0):
channel_id = parts[0]
if channel_id.startswith('<'):
channel_id = channel_id[2:-1]
channel = message.guild.get_channel(int(channel_id))
else:
channel = discord.utils.get(message.guild.channels, name=channel_id)
if channel:
msg = args.replace(parts[0], '', 1)
try:
if len(message.attachments) > 0:
for attachment in message.attachments:
attach = await rk.fetch_text_attachment(attachment)
if attach:
await rk.send(channel, attach)
else:
await rk.send(channel, msg)
ret = True
except:
await rk.reply(message,
'I do not see channel `#{}`'.format(channel.name))
else:
await rk.reply(message,
'No channel named `#{}`'.format(channel_id))
else:
await rk.reply(message,
'Not enough arguments:\n```!say #channel message...```')
elif command == '!sync_cup' and is_ref:
if len(parts) >= 2:
ret = await rk.sync_cup(message,
parts[0],
parts[1],
parts[2][1:] \
if len(parts) > 2 and parts[2].startswith('>')\
else None)
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!sync_cup cup bracket_url [>category]```')
elif command == '!desync_cup' and is_ref:
if len(parts) >= 1:
ret = await rk.desync_cup(message,
parts[0])
else:
await rk.reply(message,
'Too much or not enough arguments:\n```!desync_cup cup```')
# CAPTAIN COMMANDS
#-------------------
elif command == '!ban' and is_captain_in_match:
ret = await rk.ban_map(message,
parts[0] if len(parts) > 0 else '',
force=is_ref)
elif command == '!pick' and is_captain_in_match:
ret = await rk.pick_map(message,
parts[0] if len(parts) > 0 else '',
force=is_ref)
elif command == '!side' and is_captain_in_match:
ret = await rk.choose_side(message,
parts[0] if len(parts) > 0 else '',
force=is_ref)
elif command == '!attack' and is_captain_in_match:
ret = await rk.choose_side(message,
'attack',
force=is_ref)
elif command == '!defense' and is_captain_in_match:
ret = await rk.choose_side(message,
'defense',
force=is_ref)
# STREAMER COMMANDS
#-------------------
elif command == '!stream' and is_streamer:
channel_name = message.channel_mentions[0].name if len(message.channel_mentions) > 0 \
else parts[0] if len(parts) > 0 \
else None
if channel_name:
ret = await rk.stream_match(message,
channel_name,
message.mentions[0] if len(message.mentions) > 0 else None)
else:
await rk.reply(message,
'Not enough arguments:\n```!stream channel_id [@streamer]```')
elif command == '!unstream' and is_streamer:
channel_name = message.channel_mentions[0].name if len(message.channel_mentions) > 0 \
else parts[0] if len(parts) > 0 \
else None
if channel_name:
ret = await rk.unstream_match(message,
channel_name,
message.mentions[0] if len(message.mentions) > 0 else None)
else:
await rk.reply(message,
'Not enough arguments:\n```!unstream channel_id [@streamer]```')
# Unknown command, probably not for us:
#-------------------------------------
else:
return
except Exception as e:
ret = False
exception = e
try:
await message.add_reaction('\N{WHITE HEAVY CHECK MARK}' if ret else '\N{NO ENTRY}')
except:
pass
if exception:
raise exception
if __name__ == '__main__':
config_file = 'config.json'
if len(sys.argv) > 1:
config_file = sys.argv[1]
else:
print('Using default configuration file path: `{}`'.format(config_file))
rk = RoleKeeper(client, config_file)
if rk.config:
client.run(rk.config['app_bot_token'])