-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
3046 lines (2265 loc) · 101 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
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
import gspread
import asyncio
import json
import logging
import sys
from gspread_formatting import *
from stats import *
from whatColorYouNeed import *
from commandChannel import *
from datetime import datetime as dt
from searchForSimilar import *
from juniorRequestCyc import *
from discord.ext import commands
from discord.ext import tasks
from config import *
from discord import app_commands
# logging.basicConfig(
# filename='file.log',
# filemode='w',
# format='%(asctime)s - %(name)s - %(levelname)s - %(funcName)s - %(message)s'
# )
intents = discord.Intents.all()
intents.members = True
intents.message_content = True
client = commands.Bot(command_prefix=PREFIX, intents=intents, help_command=None)
logger = logging.getLogger()
logger.setLevel(logging.INFO)
formatter = logging.Formatter('%(asctime)s | %(levelname)s | %(message)s')
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setLevel(logging.DEBUG)
stdout_handler.setFormatter(formatter)
file_handler = logging.FileHandler('loginfo.log')
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(formatter)
logger.addHandler(file_handler)
logger.addHandler(stdout_handler)
logging.info('restart')
# gc = gspread.service_account(filename='secretkey.json')
# sh = gc.open("копия 2.0")
# worksheet = sh.sheet1
########################
########################
########################
@client.event
async def on_ready():
logging.info(f"запустился как {client.user}")
await client.tree.sync(guild=discord.Object(id=GUILD)) # синхорнизация
await client.change_presence(status=discord.Status.online, activity = discord.Activity(name = f'на всех свысока.', type = discord.ActivityType.watching))
# try:
# ctx = client.get_channel(1139276548650848266)
# await ctx.send('Я только что обновился.<:catSitting:1089452185122775200>')
# except:
# print('error ctx.send')
# pass
#await cycle('')
await asyncio.sleep(120)
dataBaseCycle.start()
juniorRequestsCycle.start()
@tasks.loop(hours=3)
async def juniorRequestsCycle():
await juniorRequestFunc(client)
async def get_user_profile(user_id):
user_id = str(user_id)
with open("basa.json", "r") as file:
profile = json.load(file)
if user_id not in profile.keys():
profile[user_id] = PROFILE_DEFAULT
logs = client.get_channel(ERROR_ROOM)
await logs.send(f'❗ <@{user_id}> создаёт себе БД.')
with open("basa.json", "w") as file:
json.dump(profile, file)
return profile[user_id]
async def set_user_profile(user_id, parameter, new_value, ckey=False):
user_id = str(user_id)
with open("basa.json", "r") as file:
profile = json.load(file)
if user_id not in profile.keys():
profile[user_id] = PROFILE_DEFAULT
logs = client.get_channel(ERROR_ROOM)
await logs.send(f'❗ <@{user_id}> создаёт себе БД, и записывает туда данные.')
if ckey == True:
profile[user_id].setdefault('ckey', new_value)
profile[user_id][parameter] = new_value
else:
profile[user_id][parameter] = new_value
with open("basa.json", "w") as file:
json.dump(profile, file)
def joinToSheet():
gc = gspread.service_account(filename='secretkey.json')
sh = gc.open(SHEET)
worksheet = sh.sheet1
return gc, sh, worksheet
TWORKS = False
async def technicalWorks(ctx):
global TWORKS
if TWORKS:
await ctx.response.send_message('Ксов объявил технические работы, большинство команд не доступны.', ephemeral=True)
return TWORKS
def getProfileFromSheet(user, warnCheck, banCheck, testCheck, row, col, worksheet, UserWarnBan='User'):
def colorStatus():
rgb = whatColorYouNeed(row=row, worksheet=worksheet, UserWarnBan='User')
colour=discord.Colour.from_rgb(rgb[0], rgb[1], rgb[2])
return colour
warnNullOrNot = worksheet.get_values(f'D{row}:D{row+50}')
banNullOrNot = worksheet.get_values(f'G{row}:G{row+50}')
listWarn = ''
listBan = ''
warnCount = warnCheck
for x in warnNullOrNot:
if warnCount == 0:
break
if x == ['']:
break
listWarn += f"{x[0]}\n"
warnCount -= 1
banCount = banCheck
for x in banNullOrNot:
if banCount == 0:
break
if x == ['']:
break
listBan += f"{x[0]}\n"
banCount -= 1
if listWarn == '':
listWarn = '-'
warnCheck = 0
if listBan == '':
listBan = '-'
banCheck = 0
textForEmbedDesc = f'''
*Нажмите на ник, что-бы перейти в таблицу.*
⚠️ Варны: **{warnCheck}**
⛔ Баны: **{banCheck}**
📃 Тест: **{testCheck}**
'''
embed = discord.Embed(
colour=colorStatus(),
description=textForEmbedDesc,
#title=f"Информация о"
)
embed.set_author(name=user, url=LINK+str(row))
#embed.add_field(name="⚠️ Варны", value=warnCheck)
#embed.insert_field_at(1,name="⛔ Баны", value=banCheck)
#embed.add_field(name="📃 Тест", value=testCheck)
embed.add_field(name='список варнов', value=listWarn)
embed.add_field(name=' ', value=' ')
embed.add_field(name='список банов', value=listBan)
embed.set_footer(text=f'Строка {row}, столбик {col}')
return embed
def checkForWarn(row, worksheet):
ruleNumbers = worksheet.get_values(f'C{row}:C{row+50}')
try:
if ruleNumbers[0] == ['']:
return 0
except:
return 0
li = []
warnCount = 0
for x in ruleNumbers:
if x not in li:
li.append(x)
else:
break
for x in li:
if x != ['']:
warnCount += 1
return warnCount
def checkForBan(row, worksheet):
ruleNumbersSecond = worksheet.get_values(f'F{row}:F{row+50}')
try:
if ruleNumbersSecond[0] == ['']:
return 0
except:
return 0
if ruleNumbersSecond[0] == ['']:
return 0
li2 = []
banCount = 0
for x in ruleNumbersSecond:
if x not in li2:
li2.append(x)
else:
break
for x in li2:
if x != ['']:
banCount += 1
return banCount
def checkForTest(row, sh):
fin = sh.sheet1.get(f'H{str(row)}')
if fin == []:
return '-'
fin = fin[0]
fin = str(fin[0])
if fin == 'Да':
return 'Прошёл.'
elif fin == 'Нет':
return 'Не прошёл.'
else:
return fin
def checkRole(ctx, user):
echoRole = discord.utils.find(lambda r: r.name == '☄️', ctx.guild.roles)
elysiumRole = discord.utils.find(lambda r: r.name == '🌑', ctx.guild.roles)
solarisRole = discord.utils.find(lambda r: r.name == '🌕', ctx.guild.roles)
atharaRole = discord.utils.find(lambda r: r.name == '🌌', ctx.guild.roles)
novaRole = discord.utils.find(lambda r: r.name == '🪐', ctx.guild.roles)
mainRole = discord.utils.find(lambda r: r.name == '🚀', ctx.guild.roles)
nebulaRole = discord.utils.find(lambda r: r.name == '✨', ctx.guild.roles)
allRole = discord.utils.find(lambda r: r.name == '🍿', ctx.guild.roles)
if echoRole in user.roles:
return discord.Colour(0x00FFFF)
elif elysiumRole in user.roles:
return discord.Colour(0x808080)
elif solarisRole in user.roles:
return discord.Colour(0xF8FF00)
elif atharaRole in user.roles:
return discord.Colour(0xC485F7)
elif novaRole in user.roles:
return discord.Colour(0xFFA500)
elif mainRole in user.roles:
return discord.Colour(0xFF0000)
elif nebulaRole in user.roles:
return discord.Colour(0xFF8C00)
elif allRole in user.roles:
return discord.Colour(0xFFFFFF)
else:
return discord.Colour(0x000000)
def checkFooter(ctx, user):
echoRole = discord.utils.find(lambda r: r.name == '☄️', ctx.guild.roles)
elysiumRole = discord.utils.find(lambda r: r.name == '🌑', ctx.guild.roles)
solarisRole = discord.utils.find(lambda r: r.name == '🌕', ctx.guild.roles)
atharaRole = discord.utils.find(lambda r: r.name == '🌌', ctx.guild.roles)
novaRole = discord.utils.find(lambda r: r.name == '🪐', ctx.guild.roles)
mainRole = discord.utils.find(lambda r: r.name == '🚀', ctx.guild.roles)
nebulaRole = discord.utils.find(lambda r: r.name == '✨', ctx.guild.roles)
allRole = discord.utils.find(lambda r: r.name == '🍿', ctx.guild.roles)
if echoRole in user.roles:
return f'{user.id}, echo☄️'
elif elysiumRole in user.roles:
return f'{user.id}, elysium🌑'
elif solarisRole in user.roles:
return f'{user.id}, solaris🌕'
elif atharaRole in user.roles:
return f'{user.id}, athara🌌'
elif novaRole in ctx.user.roles:
return f'{user.id}, nova🪐'
elif mainRole in user.roles:
return f'{user.id}, main🚀'
elif nebulaRole in user.roles:
return f'{user.id}, nebula✨'
elif allRole in user.roles:
return f'{user.id}, all🍿'
else:
return f'{user.id}, ???'
@client.tree.command(name = 'мой-сикей', description='установить сикей из игры, для подсчета ахелпов в течении месяца.', guild=discord.Object(id=GUILD))
async def ckey(ctx, ckey: str=None):
access = await checkForModeratorRole(ctx)
if access == False:
return
user = ctx.user.id
if ckey == None:
await ctx.response.send_message('❌ Не указан ckey.', ephemeral=True)
return
profile = await get_user_profile(user)
user_id = ctx.user.id
new_value = ckey
parameter = 'ckey'
await set_user_profile(user_id, parameter, new_value, ckey=True)
logs = client.get_channel(ERROR_ROOM)
await logs.send(f'👤 {ctx.user} установил себе новый ckey - `{ckey}`')
await ctx.response.send_message(f'✅ Успешно установлен сикей - `{ckey}`.', ephemeral=True)
@client.tree.command(name = "помощь", description= 'подробное описание всех команд в боте', guild=discord.Object(id=GUILD))
async def perma(ctx):
embed = discord.Embed(
colour=discord.Colour.dark_purple(),
#description=checkForReason(),
#title='Команды доступные на сегодняшний день:'
)
text = '''
# БОТ РАБОТАЕТ ТОЛЬКО С ТАБЛИЦЕЙ,
# ОН НЕ БАНИТ В ИГРЕ.
### команды для работы с таблицей:
`/поиск` - ищет игрока в таблице, если такой есть - пишет данные о нём. цвет сообщения - цвет игрока в таблице.
`/внести-наказание` - обычное записывание в таблице. варн/бан.
`/внести-заметку` - записывает заметку в таблицу на __ник__ в __ячейке__ игрока.
`/внести-тест` - устанавливает статус теста на игроке.
`/перма` - быстрая запись пермы, делает игрока сразу чёрным, а
бан красным.
`/джобка` - быстрая запись джобки.
`/сменить-цвет` - меняет цвет игрока, варна или бана.
### команды вне таблицы:
`/профиль` - ваша или чужая статистика. цвет сообщения - цвет вашего сервера.
`/добавить-жалобу` - даёт +1 к жалобе в статистику.
`/пдк` - делает запрос на пдк.
`/мой-сикей` - устанавливает ваш сикей в профиль, он может пригодиться кодеру для подсчетов ахелпов например.
`/топ` - показывает легендарных модераторов.
`/запросы` - выводит список актуальных запросов от младших модераторов.
'''
embed = discord.Embed(
colour=discord.Colour.random(),
description=text,
#title='Команды доступные на сегодняшний день:'
)
#await ctx.response.send_message('❌ Еще не работает.')
await ctx.response.send_message(embed=embed, ephemeral=True)
return
async def msgToLOGG(ctx, worksheet, user, msgAuthor, clrColor=None, clrColum=None, clrNumber=None, choose=None, rule=None, reason=None, isJobka=False, isPerma=False, isColor=False):
logs = client.get_channel(LOGS)
try:
cell = worksheet.find(user)
row = cell.row
col = cell.col
except AttributeError:
row = '-'
col = '-'
member = msgAuthor
def checkForAction():
if isPerma == True:
return f'Записал ПЕРМУ игроку.'
elif isJobka == True:
return f'Записал новую джобку.'
elif isColor == True:
return f'Поменял цвет игроку.'
elif choose != None:
return f'Обновил тест игроку.'
elif rule != None:
return f'Записал новое наказание.'
elif reason != None:
return f'Записал новую заметку.'
else:
return f'Что то сделал, но не могу зафиксировать.'
def checkForReason():
if reason == 'None':
return 'БЕЗ ПРИЧИНЫ.'
elif reason != None:
return reason
else:
return ''
embed = discord.Embed(
colour=checkRole(ctx=ctx, user=ctx.user),
description=checkForReason(),
title=checkForAction()
)
embed.set_author(name=ctx.user)
embed.add_field(name="Игрок", value=user)
if choose != None:
embed.add_field(name="Тест", value=choose.name)
if rule != None:
embed.add_field(name="Правило", value=rule)
if clrColor != None:
embed.add_field(name="Цвет", value=clrColor)
if clrColum != None:
embed.add_field(name="Столбик", value=clrColum)
if clrNumber != None:
embed.add_field(name="Номер", value=clrNumber)
try:
embed.set_thumbnail(url=member.avatar.url)
except:
embed.set_thumbnail(url='https://static.wikia.nocookie.net/evade-nextbot/images/b/b5/Nerd.png/revision/latest?cb=20220822144117')
embed.set_footer(text=f'{checkFooter(ctx=ctx, user=ctx.user)}, {row}')
await logs.send(embed=embed)
async def juniorCheck(ctx, user, reason, msg, rule=None, punish=None, punishTime=None, jobChoose=None, playerEmbed=None):
await msg.edit(content=f'**😐 Ожидай одобрения запроса от старшей администрации.**')
request = client.get_channel(REQUEST_ROOM)
embed = discord.Embed(
colour=discord.Colour(0xE6B400),
description=
f'''
**Нарушитель:** {user}
**Причина:** {reason}
''', #**Модератор:** {ctx.user}
title='❗Статус: ожидает одобрения.'
)
if punish != None:
punishIsVisible = False
if punish == 'варн':
punish = 'Варн ⚠️'
elif punish == 'бан':
punish = 'Бан ⛔'
punishIsVisible = True
elif punish == 'джобка':
punish = f'Джобка 👤'
punishIsVisible = True
elif punish == 'перма':
punish = 'ПЕРМА ❗'
elif punish == 'ПДК':
punish = 'ПДК 😡'
elif punish == 'СНЯТЬ ПДК':
punish = 'Снять ПДК 🙏'
embed.add_field(name="Наказание", value=punish)
if rule != None:
embed.add_field(name="Правило", value=rule)
if punishIsVisible == True:
if punishTime != None:
embed.add_field(name='Срок', value=punishTime)
if jobChoose != None:
embed.add_field(name='Отдел', value=jobChoose)
embed.set_footer(text=checkFooter(ctx=ctx, user=ctx.user))
msg = await request.send(embed=embed)
await msg.add_reaction('✅')
await msg.add_reaction('❌')
try:
thread = await msg.create_thread(name=f'{user}, {punish}')
if playerEmbed != None:
await thread.send(embed=playerEmbed)
else:
await thread.send('**⚠️ Не нашёл информацию о игроке. Либо его нет в таблице, либо я его вообще и не искал. 🙂**')
await thread.send(f'<@{ctx.user.id}> тебе могут задать вопрос по твоему наказанию, обсуди это здесь.')
except:
return
def check(payload):
reaction = payload.emoji
rAuth = payload.member
rMsg = payload.message_id
if msg.id != rMsg:
return
def nextStep():
return str(payload.emoji) == '✅' or str(payload.emoji) == '❌'
access = discord.utils.find(lambda r: r.name == 'Модератор', ctx.guild.roles)
access2 = discord.utils.find(lambda r: r.name == 'Старший Модератор', ctx.guild.roles)
access3 = discord.utils.find(lambda r: r.name == 'Смотритель Сервера', ctx.guild.roles)
access4 = discord.utils.find(lambda r: r.name == 'Смотритель Серверов', ctx.guild.roles)
access5 = discord.utils.find(lambda r: r.name == 'Младший Администратор', ctx.guild.roles)
access6 = discord.utils.find(lambda r: r.name == 'Администратор', ctx.guild.roles)
if access in rAuth.roles:
return nextStep()
elif access2 in rAuth.roles:
return nextStep()
elif access3 in rAuth.roles:
return nextStep()
elif access4 in rAuth.roles:
return nextStep()
elif access5 in rAuth.roles:
return nextStep()
elif access6 in rAuth.roles:
return nextStep()
else:
pass
try:
payload = await client.wait_for('raw_reaction_add', timeout=604800.0, check=check)
except asyncio.TimeoutError:
await msg.edit(content='❌ **Время на ответ запроса - вышло.**')
else:
reaction = str(payload.emoji)
if reaction == '❌':
embed = discord.Embed(
colour=discord.Colour(0xDB042F),
description=
f'''
**Нарушитель:** {user}
**Причина:** {reason}
''', #**Модератор:** {ctx.user}
title='Статус: Отказано.'
)
if punish != None:
if punish == 'варн':
punish = 'Варн ⚠️'
elif punish == 'бан':
punish = 'Бан ⛔'
embed.add_field(name="Наказание", value=punish)
if rule != None:
embed.add_field(name="Правило", value=rule)
embed.set_footer(text=checkFooter(ctx=ctx, user=ctx.user))
await msg.edit(embed=embed)
return False
elif reaction == '✅':
embed = discord.Embed(
colour=discord.Colour(0x00C72B),
description=
f'''
**Нарушитель:** {user}
**Причина:** {reason}
''', #**Модератор:** {ctx.user}
title='Статус: Одобрено.'
)
if punish != None:
if punish == 'варн':
punish = 'Варн ⚠️'
elif punish == 'бан':
punish = 'Бан ⛔'
embed.add_field(name="Наказание", value=punish)
if rule != None:
embed.add_field(name="Правило", value=rule)
embed.set_footer(text=checkFooter(ctx=ctx, user=ctx.user))
await msg.edit(embed=embed)
return True
else:
await msg.edit(content='❌ В запросе отказано. `error #451`')
async def checkForModeratorRole(ctx, ignoreChannelCheck=False):
if ignoreChannelCheck == False:
checkForChannel = await commandChannelCheck(ctx=ctx)
if checkForChannel == True:
pass
else:
await ctx.response.send_message(f'❌ Писать команды можно только тут - <#{COMMAND_ROOM}>', ephemeral=True)
return False
access = discord.utils.find(lambda r: r.name == 'Младший Модератор', ctx.guild.roles)
access1 = discord.utils.find(lambda r: r.name == 'Модератор', ctx.guild.roles)
access2 = discord.utils.find(lambda r: r.name == 'Старший Модератор', ctx.guild.roles)
access3 = discord.utils.find(lambda r: r.name == 'Смотритель Сервера', ctx.guild.roles)
access4 = discord.utils.find(lambda r: r.name == 'Смотритель Серверов', ctx.guild.roles)
access5 = discord.utils.find(lambda r: r.name == 'Младший Администратор', ctx.guild.roles)
access6 = discord.utils.find(lambda r: r.name == 'Администратор', ctx.guild.roles)
roles = ctx.user.roles
accesses = (access, access1, access2, access3, access4, access5, access6)
if any([True for access in accesses if access in roles]):
return True
else:
await ctx.response.send_message('❌ У Вас нет доступа к данной команде.')
return False
@client.tree.command(name='пдк', description='сообщение в #запросы, без таблицы', guild=discord.Object(id=GUILD))
@app_commands.choices(пдк=[
discord.app_commands.Choice(name='дать ПДК', value=1),
discord.app_commands.Choice(name='снять ПДК', value=2),
])
async def pdk(ctx, игрок: str=None, правило: str=None, причина: str=None, пдк: app_commands.Choice[int]=0):
user = игрок
rule = правило
reason = причина
pdk = пдк
access = await checkForModeratorRole(ctx)
if access == False:
return
isTworks = await technicalWorks(ctx)
if isTworks:
return
if user == None:
await ctx.response.send_message('❌ Не указан игрок.')
return
if rule == None:
await ctx.response.send_message('❌ Не указано правило.')
return
if reason == None:
await ctx.response.send_message('❌ Не указана причина.')
return
if pdk == 0:
await ctx.response.send_message('❌ Не указано дать или снять ПДК.')
return
if pdk.value == 0:
await ctx.response.send_message('❌ Не указано дать или снять ПДК.')
return
#msg = client.get_channel(ctx.channel.id)
junior = discord.utils.find(lambda r: r.name == 'Младший Модератор', ctx.guild.roles)
if junior in ctx.user.roles:
msg = await ctx.response.send_message('✅ Запрос отправлен.')
msg = client.get_channel(ctx.channel.id)
msg = await ctx.original_response()
if pdk.value == 1:
checkForJunior = await juniorCheck(ctx=ctx, user=user, rule=rule, reason=reason, msg=msg, punish='ПДК')
else:
checkForJunior = await juniorCheck(ctx=ctx, user=user, rule=rule, reason=reason, msg=msg, punish='СНЯТЬ ПДК')
try:
match checkForJunior:
case False:
await msg.edit(content=f'**❌ Твой запрос не одобрили.**')
return
case True:
await msg.edit(content=f'**✅ Твой запрос одобрили.**')
return
except:
return
else:
msg = await ctx.response.send_message('❌ Вы уже взрослый смешарик, Вам это никчему.')
@client.tree.command(name = 'статистика', description='вся статистика пользователей, команда для смотрителей', guild=discord.Object(id=GUILD))
async def toStats(ctx: discord.Interaction):
await ctx.response.defer(ephemeral=True, thinking=True)
access2 = discord.utils.find(lambda r: r.name == 'Старший Модератор', ctx.guild.roles)
access3 = discord.utils.find(lambda r: r.name == 'Смотритель Сервера', ctx.guild.roles)
access4 = discord.utils.find(lambda r: r.name == 'Смотритель Серверов', ctx.guild.roles)
access5 = discord.utils.find(lambda r: r.name == 'Младший Администратор', ctx.guild.roles)
access6 = discord.utils.find(lambda r: r.name == 'Администратор', ctx.guild.roles)
if access2 in ctx.user.roles:
pass
elif access3 in ctx.user.roles:
pass
elif access4 in ctx.user.roles:
pass
elif access5 in ctx.user.roles:
pass
elif access6 in ctx.user.roles:
pass
else:
await ctx.followup.send(ephemeral=True, content='❌ У Вас нет доступа к данной команде.')
return
embedEcho, embedSolaris, embedNova, embedAthara, embedElysium, embedAllRole, embedMain, embedNebula = await stats(ctx=ctx, client=client)
embeds = [embedMain, embedAthara, embedSolaris, embedNova, embedEcho, embedElysium, embedNebula, embedAllRole]
print(embeds)
await ctx.followup.send(ephemeral=True, embeds=embeds)
@client.tree.command(name = "внести-заметку", description= 'записывает заметку игроку в таблице', guild=discord.Object(id=GUILD))
async def note(ctx, игрок: str=None, причина: str=None):
access = await checkForModeratorRole(ctx)
if access == False:
return
isTworks = await technicalWorks(ctx)
if isTworks:
return
user = игрок
reason = причина
try:
await ctx.response.defer() # ephemeral=True
except:
await errorDeferMessage(ctx=ctx, errorValue='619')
return
loop = asyncio.get_running_loop()
gc, sh, worksheet = await loop.run_in_executor(None, joinToSheet)
values_list = worksheet.col_values(2)
if user in values_list:
user = f'{user}'
elif (f'{user} ' in values_list):
user = f'{user} '
elif (f'{user} ' in values_list):
user = f'{user} '
else:
await ctx.followup.send(f"❌ Игрока `{user}` нет в таблице.")
return
infochat = ctx.channel.id # чат
infochat = client.get_channel(infochat)
msg = await infochat.send(f'**🔄 поиск {user}...**')
cell = worksheet.find(user)
row = cell.row
col = cell.col
embed = getProfileFromSheet(user, checkForWarn(row, worksheet), checkForBan(row, worksheet), checkForTest(row, sh), row, col, worksheet, UserWarnBan='User')
await asyncio.sleep(3)
await ctx.followup.send(embed=embed)
embed = discord.Embed(
colour=discord.Colour.from_rgb(255,255,255),
description=f'{reason}',
title='Всё верно?'
)
await msg.delete()
msg = await infochat.send(embed=embed)
await msg.add_reaction('✅')
await msg.add_reaction('❌')
trueUser = ctx.user
def check(reaction, msgAuthor):
if trueUser == msgAuthor:
return msgAuthor == ctx.user and str(reaction.emoji) == '✅' or str(reaction.emoji) == '❌'
try:
reaction, msgAuthor = await client.wait_for('reaction_add', timeout=300.0, check=check)
except asyncio.TimeoutError:
await msg.edit(content='❌ **Время вышло.**')
else:
if reaction.emoji == '❌':
await msg.edit(content='❌ **Отменил операцию.**')
return
elif reaction.emoji == '✅':
await msg.edit(content=f'**🔄 Обрабатываю запросик :middle_finger:**')
await msgToLOGG(ctx, worksheet, user, msgAuthor, reason=reason)
worksheet.insert_note(f'B{row}', f'{reason}')
await msg.edit(content=f'**✅ Успешно вписал заметку игроку!**')
else:
await msg.edit(content='❌ **Время вышло.**')
async def errorDeferMessage(ctx, errorValue):
# errorCh = client.get_channel(ctx.channel.id)
print(f'erorr {errorValue}')
logging.warning(f'error - {errorValue}')
# await errorCh.send(f'<@{ctx.user.id}> **попробуй еще раз, дискорд не захотел принимать твою команду.**')
@client.tree.command(name = "джобка", description='быстрая запись джобки', guild=discord.Object(id=GUILD))
@app_commands.choices(отдел=[
discord.app_commands.Choice(name='КМД', value=1),
discord.app_commands.Choice(name='СБ', value=2),
discord.app_commands.Choice(name='РНД', value=3),
discord.app_commands.Choice(name='МЕД', value=4),
discord.app_commands.Choice(name='КАРГО', value=5),
discord.app_commands.Choice(name='ИНЖ', value=6),
discord.app_commands.Choice(name='АНТ', value=7),
],
бан=[
discord.app_commands.Choice(name='Нет', value=1),
discord.app_commands.Choice(name='Да', value=2),
]
)
async def jobka(ctx, игрок: str=None, правило: str=None, причина: str=None, отдел: app_commands.Choice[int]=0, срок: str='None', бан: app_commands.Choice[int]=0):
access = await checkForModeratorRole(ctx)
if access == False:
return
isTworks = await technicalWorks(ctx)
if isTworks:
return
user = игрок
rule = правило
reason = причина
jobChoose = отдел
punishTime = срок
isNeedToBan = бан
loop = asyncio.get_running_loop()
gc, sh, worksheet = await loop.run_in_executor(None, joinToSheet)
values_list = worksheet.col_values(2)
playerIsNew = False
if jobChoose.value == 0:
await ctx.response.send_message('❌ Не выбрана профессия.')
return
if rule == None:
await ctx.response.send_message('❌ Не корректно выбрано правило')
return
try:
if 'Правило' in rule or 'правило' in rule:
await ctx.response.send_message('❌ Не корректно выбрано правило, **используй только числа.**')
return
except:
await ctx.response.send_message('❌ Не корректно выбрано правило, **используй только числа.**')
return
if reason == None:
await ctx.response.send_message('❌ Не выбрана причина.')
return
if isNeedToBan != 0:
if isNeedToBan.value == 2:
ChoosenJob = f"{jobChoose.name} + Бан."
else:
ChoosenJob = f"{jobChoose.name}."
else:
ChoosenJob = f"{jobChoose.name}."
if user in values_list:
user = f'{user}'
elif (f'{user} ' in values_list):
user = f'{user} '
elif (f'{user} ' in values_list):
user = f'{user} '
else:
await ctx.response.send_message(f"⚠️ Игрока `{user}` нет в таблице.")
playerIsNew = True