This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlauncher.py
933 lines (800 loc) · 43.1 KB
/
launcher.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
import gettext
import sys
import asyncio
import pytz
import datetime
import time
import json
import operator
import emoji
import telepot
from telepot.aio.loop import MessageLoop
from telepot.aio.delegate import (
per_chat_id, create_open, pave_event_space, include_callback_query_chat_id)
from telepot.namedtuple import InlineKeyboardMarkup, InlineKeyboardButton
class ThePokeGOBot(telepot.aio.helper.ChatHandler):
def __init__(self, *args, **kwargs):
super(ThePokeGOBot, self).__init__(*args, **kwargs)
self.load_data()
self.router.routing_table['_delete_raid'] = self.on___delete_raid
self.router.routing_table['_delete_quest'] = self.on___delete_quest
self.router.routing_table['_delete_help'] = self.on___delete_help
self.router.routing_table['_delete_bot_messages'] = self.on___delete_bot_messages
async def on_chat_message(self, msg):
content_type, chat_type, chat_id = telepot.glance(msg)
user = msg['from']
if content_type != 'text':
return
command = msg['text'].strip()
if command.startswith('/'):
message = command.split(' ')
command = message[0].strip().lower()
del message[0]
params = message
await self.handle_command(command, params, user, msg)
async def handle_command(self, cmd, params, user, user_msg):
self.load_data()
# Start a raid
if cmd == _('/raid'):
parts = " ".join(params).split(',')
if len(parts) == 3:
try:
pokemon = self.retornar_pokemon(parts[0].strip())
if pokemon is not None:
try:
time.strptime(parts[2].strip(), '%H:%M')
raid = {
'id': int(self.raids['index']) + 1,
'pokemon': pokemon,
'place': parts[1].strip().title(),
'start_time': parts[2].strip(),
'created_by': user,
'finish_by': user,
'status': _('active'),
'maximum_trainers': 20,
'going': [],
'messages': [],
'comments': [],
'log': []
}
raid_keyboard = self.create_keyboard(raid)
self.add_log_in_raid(raid, user, "Criado ás: %s" % (self.return_data_hora_formatado()))
msg = await self.sender.sendMessage(self.create_list(raid), reply_markup=raid_keyboard, parse_mode="markdown")
self.scheduler.event_later(self.convert_to_seconds(1, 45), ('_delete_raid', {'raid_id': raid['id']}))
if next((x for x in raid['messages'] if int(x['message_id']) == int(msg['message_id'])), None) is None:
raid['messages'].append(msg)
self.raids["index"] = int(raid['id'])
self.raids["raids"].append(raid)
self.persist_data()
except Exception as e:
msg = await self.sender.sendMessage("Miau! A hora deve estar no formato de *HH:MM*!", parse_mode="markdown")
self.delete_messages(msg)
else:
msg = await self.sender.sendMessage("Miau! O pokémon *%s* não esta ativo para raids!" % (parts[0].strip().title()), parse_mode = "markdown")
self.delete_messages(msg)
except:
msg = await self.sender.sendMessage("Miau! *%s* não é um Pokémon válido!" % (parts[0].strip().title()), parse_mode = "markdown")
self.delete_messages(msg)
# Edit the start time of the raid
elif cmd == _('/edit'):
if len(params) == 2:
raid_id = params[0].strip()
new_time = params[1].strip()
if raid_id.isdigit():
raid = self.retornar_raid(raid_id)
if self.raid_nao_ativa_ou_nao_existente(raid):
message = "Miau! A raid de id *%s* não existe ou já foi finalizada!" % (raid_id)
else:
try:
time.strptime(params[1].strip(), '%H:%M')
if self.exists_trainer_in_raid(raid, int(user['id'])) or self.is_admin(user['id']):
raid['start_time'] = new_time
self.add_log_in_raid(raid, user, "Editado hora ás: %s" % (self.return_data_hora_formatado()))
self.persist_data()
for msg in raid['messages']:
await self.bot.editMessageText(telepot.message_identifier(msg), self.create_list(raid), reply_markup=self.create_keyboard(raid), parse_mode="markdown")
message = "Miau! Raid de id *%s* foi alterada a hora!" % (raid_id)
else:
message = "Miau! Você deve fazer parte da lista para usar este comando!"
except:
message = "Miau! A hora deve estar no formato de *HH:MM*!"
else:
message = "Miau! Id passado não corresponde a um número!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Edit the name raid
elif cmd == _('/editname'):
if len(params) == 2:
raid_id = params[0].strip()
new_name = params[1].strip()
try:
if raid_id.isdigit():
raid = self.retornar_raid(raid_id)
if self.raid_nao_ativa_ou_nao_existente(raid):
message = "Miau! A raid de id *%s* não existe ou já foi finalizada!" % (raid_id)
else:
if self.exists_trainer_in_raid(raid, int(user['id'])) or self.is_admin(user['id']):
pokemon = self.retornar_pokemon(new_name)
if pokemon is not None:
if pokemon['status'] == 'ativado':
raid['pokemon'] = pokemon
self.add_log_in_raid(raid, user, "Editado pokémon ás: %s" % (self.return_data_hora_formatado()))
self.persist_data()
for msg in raid['messages']:
await self.bot.editMessageText(telepot.message_identifier(msg),self.create_list(raid),reply_markup=self.create_keyboard(raid),parse_mode="markdown")
message = "Miau! Raid de id *%s* foi trocado de pokemon!" % (raid_id)
else:
message = "Miau! O pokémon *%s* não esta ativo para raids!" % (pokemon['name'].title())
else:
message = "Miau! O pokémon *%s* não esta ativo para raids!" % (new_name).title()
else:
message = "Miau! Você deve fazer parte da lista para usar este comando!"
else:
message = "Miau! Id passado não corresponde a um número!"
except:
message = "Miau! *%s* não é um Pokémon válido!" % (new_name).title()
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Adicionar Mais 1 na raid
elif cmd == '/maisum':
if len(params) >= 2:
raid_id = params[0].strip()
if raid_id.isdigit():
raid = self.retornar_raid(raid_id)
if self.raid_nao_ativa_ou_nao_existente(raid):
message = "Miau! A raid de id *%s* não existe ou já foi finalizada!" % (raid_id)
else:
message = ""
for word in params:
if params.index(word) >= 1:
message += f"{word.strip()} "
user_raid = self.retornar_usuario_raid(raid, user)
if self.return_total_trainers_in_raid(raid) < raid['maximum_trainers']:
if user_raid is not None:
user_raid['count'] += 1
else:
self.adicionar_treinador_raid(raid, user)
self.adicionar_comentario(raid, user, message, "maisum")
message = "Miau! Adicionado com sucesso!"
raid_keyboard = self.create_keyboard(raid)
self.persist_data()
for msg in raid['messages']:
message_idf = telepot.message_identifier(msg)
await self.bot.editMessageText(message_idf, self.create_list(raid), reply_markup=raid_keyboard, parse_mode="markdown")
else:
message = "Miau! Número máximo de jogadores excedido!"
else:
message = "Miau! Id passado não corresponde a um número!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Cancel/finish active raid
elif cmd == _('/cancel') or cmd == _('/end'):
if len(params) == 1:
command = _('cancel') if cmd == _('/cancel') else _('end')
raid_id = params[0].strip()
if raid_id.isdigit():
raid = self.retornar_raid(raid_id)
if raid is None:
message = "Miau! A raid de id *%s* não existe ou já foi finalizada!" % (raid_id)
else:
if self.exists_trainer_in_raid(raid, int(user['id'])) or self.is_admin(user['id']):
raid['status'] = _('canceled') if command == _('cancel') else _('ended')
raid['finish_by'] = user
self.add_log_in_raid(raid, user, "%s ás: %s" % (raid['status'],self.return_data_hora_formatado()))
self.persist_data()
for msg in raid['messages']:
await self.bot.editMessageText(telepot.message_identifier(msg), self.create_list(raid), reply_markup=None, parse_mode="markdown")
message = "Miau! Raid de id *%s* foi *%s*!" %(raid_id, raid['status'].upper())
else:
message = "Miau! Você deve fazer parte da lista para usar este comando!"
else:
message = "Miau! Id passado não corresponde a um número!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Set trainer informations
elif cmd == _('/trainer'):
teams = [['valor', _('red'), 'v', ':fire:'], [
'mystic', _('blue'), 'm', ':snowflake:'], ['instinct', _('yellow'), 'i', '⚡']]
trainer = {}
trainer_team = None
for p in params:
p = p.lower()
i = 0
for t in range(0, 3):
if p in teams[t]:
trainer['team'] = f"{teams[i][0]}"
trainer['emoji'] = f"{emoji.emojize(teams[i][3])}"
trainer_team = f"{trainer['team']} ({teams[i][1]})"
break
else:
i += 1
try:
level = int(p)
if level > 0 and level <= 40:
trainer['level'] = level
except:
continue
if 'team' in trainer and 'level' in trainer:
trainer['id'] = user['id']
trainer['nickname'] = params[0].strip()
if next((x for x in self.trainers if int(x['id']) == int(user['id'])), None) is None:
self.trainers.append(trainer)
else:
i = 0
for x in self.trainers:
if int(x['id']) == int(user['id']):
self.trainers.pop(i)
self.trainers.append(trainer)
break
else:
i += 1
self.persist_data()
message = "Miau! Time *%s* e level *%s* informados!" % (trainer_team.title(), trainer['level'])
else:
message = "Miau! Informe um time e level válidos!"
msg = await self.sender.sendMessage(message, parse_mode = "markdown")
self.delete_messages(msg)
# Update trainer's level
elif cmd == _('/level'):
if len(params) == 1:
level = params[0].strip()
if level.isdigit():
level = int(level)
trainer = next((x for x in self.trainers if int(x['id']) == int(user['id'])), None)
if trainer is not None:
if level > 0 and level <= 40:
trainer['level'] = level
self.persist_data()
message = "Miau! Seu level foi atualizado para *%s*!" % (level)
else:
message = "Miau! Informe um level válido!"
else:
message = "Miau! Configure suas informações usando */treinador time level*! Este comando é apenas para atualizar seu level depois que as informações do seu treinador estiverem configuradas!"
else:
message = "Miau! Informe um level válido!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Pesquisar Gyn
elif cmd == '/pesquisargyn':
if len(params) == 1 and params[0].isdigit():
gyn = self.retornar_gyn(params[0])
gyns = "%s %s\n" % (gyn['id'], gyn['name'].title())
elif len(params) >= 1:
nome_gyn = ""
tempo = 20
for word in params:
if params.index(word) >= 0:
nome_gyn += f"{word.strip()} "
gyns = ""
for gyn in self.gyns:
if gyn['name'].find(nome_gyn) > -1:
gyns += "%s %s\n" % (gyn['id'], gyn['name'].title())
if gyns == "":
tempo = 5
gyns = "Miau! Não há Ginásio(s) que contenha(m) o nome passado!"
else:
tempo = 5
gyns = "Miau! Não foi informado nenhum parâmetro!"
msg = await self.sender.sendMessage(gyns, parse_mode="markdown")
self.delete_messages(msg, tempo)
# Post a quest report
elif cmd == _('/quest'):
parts = " ".join(params).split(',')
if len(parts) == 3:
quest = {
'id': int(self.quests['index']) + 1,
'quest': parts[0].strip().title(),
'place': parts[1].strip().title(),
'reward': parts[2].strip().title(),
'created_by': user,
'status': _('active'),
'messages': [],
'comments': []
}
msg = await self.sender.sendMessage(self.create_quest(quest), parse_mode="markdown")
tomorrow = datetime.datetime.now(pytz.utc).day + 1
midnight = datetime.datetime.now(pytz.utc).replace(day=tomorrow,hour=0,minute=0,second=0,microsecond=0)
diff = (midnight - (datetime.datetime.now(pytz.utc) - datetime.timedelta(hours=3))).seconds
self.scheduler.event_later(diff, ('_delete_quest', {'quest_id': quest['id']}))
if next((x for x in quest['messages'] if int(x['message_id']) == int(msg['message_id'])), None) == None:
quest['messages'].append(msg)
self.quests['index'] = int(quest['id'])
self.quests['quests'].append(quest)
self.persist_data()
# Share/comment raid/quest
elif cmd == _('/share') or cmd == _('/comment'):
if len(params) >= 2:
try:
_id = int(params[1].strip())
_type = _("raid or quest")
obj = {}
_list = []
command = _('/share') if cmd == _('/share') else _('/comment')
parametro = params[0].strip().lower()
if _id:
if parametro == _('r'):
_list = self.raids["raids"]
_type = _("raid")
elif parametro == _('q'):
_list = self.quests["quests"]
_type = _("quest")
else:
msg = await self.sender.sendMessage(_("Meowth! Invalid command!"))
self.delete_messages(msg)
obj = next((x for x in _list if int(x['id']) == int(_id)), None)
if obj is None:
msg = await self.sender.sendMessage(_("Meowth! The %s of id *%s* does not exist or has already ended!") % (_type, _id), parse_mode = "markdown")
self.delete_messages(msg)
else:
if command == _('/share'):
if obj['status'] == _('active'):
if parametro == _('r'):
msg = await self.sender.sendMessage(self.create_list(obj), reply_markup=self.create_keyboard(obj), parse_mode="markdown")
elif parametro == _('q'):
msg = await self.sender.sendMessage(self.create_quest(obj), parse_mode="markdown")
if parametro == _('r'):
if next((x for x in obj['messages'] if int(x['chat']['id']) == int(msg['chat']['id'])), None) != None:
await self.bot.deleteMessage(telepot.message_identifier(msg))
msg = await self.sender.sendMessage(_("Meowth! The %s of id *%s* has already been posted in this group!") % (_type, _id), parse_mode = "markdown")
self.delete_messages(msg)
if next((x for x in obj['messages'] if int(x['message_id']) == int(msg['message_id'])), None) == None:
obj['messages'].append(msg)
self.persist_data()
else:
await self.bot.deleteMessage(telepot.message_identifier(msg))
else:
msg = await self.sender.sendMessage(_("Meowth! The raid of id *%s* has already been ended or canceled!") % (_id))
else:
add = True
if parametro == _('r'):
add = next((x for x in obj['going'] if int(x['user']['id']) == int(user['id'])), None) != None
if add == True:
message = ""
for word in params:
if params.index(word) >= 2:
message += f"{word.strip()} "
if next((x for x in obj['comments'] if int(x['user']['id']) == int(user['id']) and x['tipo'] == "comentar"), None) == None:
self.adicionar_comentario(obj, user, message, "comentar")
else:
i = 0
for x in obj['comments']:
if int(x['user']['id']) == int(user['id']) and x['tipo'] == "comentar":
obj['comments'].pop(i)
self.adicionar_comentario(obj, user, message, "comentar")
break
else:
i += 1
self.persist_data()
for msg in obj['messages']:
if parametro == _('r'):
await self.bot.editMessageText(telepot.message_identifier(msg), self.create_list(obj), reply_markup=self.create_keyboard(obj), parse_mode="markdown")
else:
await self.bot.editMessageText(telepot.message_identifier(msg), self.create_quest(obj), parse_mode="markdown")
except:
return
# Help command
elif cmd == _('/help'):
await self.help(user_msg)
# None of the commands
else:
if user['id'] != self.master and not self.is_admin(user['id']):
await self.help(user_msg)
# MASTER-Admins commands
if user['id'] == self.master or self.is_admin(user['id']):
# Visualizar Raid
if cmd == '/visualizarraid':
if len(params) == 1:
id_raid = params[0].strip()
if id_raid.isdigit():
raid = self.retornar_raid(id_raid)
if raid is not None:
mensagem = self.cabecalholista(raid)
mensagem += self.corpolista(raid)
mensagem += self.create_log(raid)
else:
mensagem = "Miau! A raid de id *%s* não existe!" % (id_raid)
else:
mensagem = "Miau! Parâmetro passado não corresponde a um número!"
msg = await self.sender.sendMessage(mensagem, parse_mode="markdown")
self.delete_messages(msg, 30)
# Re Ativar uma raid
elif cmd == '/ativarraid':
if len(params) == 1:
id_raid = params[0].strip()
if id_raid.isdigit():
raid = self.retornar_raid(id_raid)
if raid is not None and raid['status'] != _('active'):
raid['status'] = _('active')
self.add_log_in_raid(raid, user, "Re-Ativado ás: %s" % (self.return_data_hora_formatado()))
self.persist_data()
for mmm in raid['messages']:
await self.bot.editMessageText(telepot.message_identifier(mmm), self.create_list(raid),reply_markup=self.create_keyboard(raid), parse_mode="markdown")
message = "Miau! Raid de ID *%s* foi Reativada!" % (id_raid)
else:
message = "Miau! Raid de ID *%s* ainda ativa!" % (id_raid)
else:
message = "Miau! Parâmetro passado não corresponde a um número!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Adicionar Pokemon Raid
elif cmd == '/pokemon':
parts = " ".join(params).split(',')
if len(parts) >= 3:
id_pokemon = parts[0].strip()
level = parts[2].strip()
if id_pokemon.isdigit() and level.isdigit():
pokemon = {
'id': int(id_pokemon),
'name': parts[1].strip().lower(),
'level': int(level),
'comment': parts[3].strip(),
'status': 'ativado',
'created_by': user
}
if self.retornar_pokemon(id_pokemon) is None:
self.pokemons.append(pokemon)
else:
i = 0
for x in self.pokemons:
if int(x['id']) == int(pokemon['id']):
self.pokemons.pop(i)
self.pokemons.append(pokemon)
break
else:
i += 1
self.persist_data()
message = "Miau! Pokémon *%s* adicionado as raids!" % (pokemon['name'].title())
else:
message = "Miau! Parâmetros passados não correspondem a números!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg)
# Listar Pokemons
elif cmd == '/listarpokemons':
if len(self.pokemons) > 0:
message = "Pokémons de Raid:\n"
for x in sorted(self.pokemons, key=lambda p: p.get('name')):
message += f"{x['id']} {x['name'].title()} {x['level']} {x['status'].title()}\n"
else:
message = "Miau! Lista de pokémons Vazia!"
msg = await self.sender.sendMessage(message, parse_mode="markdown")
self.delete_messages(msg, 30)
#Adicionar Gyn
elif cmd == '/gyn':
parts = " ".join(params).split(',')
if len(parts) >= 4:
gyn = {
'id': len(self.gyns) + 1,
'name': parts[0].strip().lower(),
'coords': parts[1].strip() + ',' + parts[2].strip(),
'ex': True if parts[3].strip().lower() == 'sim' else False,
'status': 'ativado',
'created_by': user
}
self.gyns.append(gyn)
self.persist_data()
msg = await self.sender.sendMessage("Miau! Ginásio *%s* adicionado com sucesso!" % (gyn['name'].title()), parse_mode="markdown")
self.delete_messages(msg)
#Help dos Admins
elif cmd == '/ajudaadmin':
mensagem = _("*Comandos*"
"\n/visualizarraid id_raid - Visualiza o log da raid."
"\n`/visualizarraid 1`"
"\n/ativarraid id_raid - Reativa uma raid finalizada\cancelada indevidamente."
"\n`/ativarraid 1`"
"\n/pokemon numero_dex, nome, level, observação - Adiciona pokémon para raid."
"\n`/pokemon 25, pikachu, 3, minímo de 2 treinadores`"
"\n/gyn nome, coordenada, ex(sim ou nao) - Criar um gyn."
"\n`/gyn coreto do liceu, -21.333333,-41.333333, sim`"
)
msg = await self.sender.sendMessage(mensagem, parse_mode="markdown")
self.delete_messages(msg, 30)
if user_msg['chat']['type'] != 'private':
self.delete_messages(user_msg, 1)
async def help(self, user_msg):
will_delete = _("\n\n_This message will be automatically deleted in a minute._") if user_msg['chat']['type'] != 'private' else ""
admins = ""
i = 1
for admin_id in self.administradores:
trainer = next((x for x in self.trainers if int(x['id']) == int(admin_id)), None)
if trainer != None:
if i == 1:
admins = ""
elif len(self.administradores) == i:
admins += " ou "
else:
admins += ", "
admins += f"[{trainer['nickname']}](tg://user?id={admin_id})"
i += 1
msg = await self.sender.sendMessage(
_("*Comandos*"
"\n/treinador - Defina seu time e level."
"\n`/treinador nickname time/cor 30`"
"\n/level - Atualiza seu nível, mas só funciona depois que o comando /treinador já tiver sido usado."
"\n`/level 31`"
"\n/raid - Inicia uma nova raid."
"\n`/raid pokémon,local,HH:MM`"
"\n/editar - modifica o horário da raid."
"\n`/editar ID_raid HH:MM`"
"\n/editarnome - Modifica o nome do pokemon da raid."
"\n`/editarnome ID_raid nome_pokemon`"
"\n/maisum - Adicionar uma segunda conta."
"\n`/maisum ID_raid comentario`"
"\n/cancelar - cancela a raid."
"\n`/cancelar ID_raid`"
"\n/finalizar - finaliza uma raid."
"\n`/finalizar ID_raid`"
"\n/missao - criar uma missão."
"\n`/missao tarefa,local,recompensa`"
"\n/compartilhar - enviar uma raid ou missão para outro grupo, para que ambos sejam atualizados automaticamente nos grupos em que foram compartilhados."
"\n`/compartilhar m/r ID_raid/ID_missao`"
"\n/comentar - adicionar comentario na raid ou missão."
"\n`/comentar m/r ID_raid/ID_quest comentario`"
"\n\n*Listagem de Raid*"
"\nPara adicionar-se à lista, basta clicar no botão Sim."
"\nNo caso de haver mais pessoas indo com você, toque no +1 para cada treinador extra que vai com você."
"\nCaso não consiga mais ir, clicar no Não e seu nome será removido automaticamente."
"\n\n*Comentários*"
"\nSomente aqueles que confirmaram que estão indo para a raid podem comentar sobre isso."
"\nNa missão, qualquer um pode comentar."
"\n\n*Duração da Raid*"
"\nApós 1 hora e 45 minutos, a lista da raid é definida para terminar (hora de eclodir ovos + duração da raid)."
"\nÀ meia-noite de cada dia, as raids e missões são apagadas."
"\n\nQualquer dúvida, fale com %s %s") % (admins, will_delete),
parse_mode="markdown")
if user_msg['chat']['type'] != 'private':
self.scheduler.event_later( 60, ('_delete_help', {'message': msg}))
async def on___delete_bot_messages(self, event):
await self.bot.deleteMessage(telepot.message_identifier(event['_delete_bot_messages']['delete']))
async def on___delete_raid(self, event):
await self.delete_data(event, self.raids['raids'], event['_delete_raid']['raid_id'])
async def on___delete_quest(self, event):
await self.delete_data(event, self.quests['quests'], event['_delete_quest']['quest_id'])
async def on___delete_help(self, event):
await self.bot.deleteMessage(telepot.message_identifier(event['_delete_help']['message']))
async def delete_data(self, event, _list, _id):
obj = next((x for x in _list if int(x['id']) == int(_id)), None)
if obj != None:
obj['status'] = _('ended')
for msg in obj['messages']:
if 'status' in obj:
await self.bot.editMessageText(telepot.message_identifier(msg), self.create_list(obj), parse_mode="markdown")
else:
await self.bot.editMessageText(telepot.message_identifier(msg), self.create_quest(obj), parse_mode="markdown")
i = 0
for x in _list:
if int(x['id']) == int(_id):
_list.pop(i)
self.persist_data()
break
else:
i += 1
async def on_callback_query(self, msg):
query_id, from_id, query_data = telepot.glance(msg, flavor='callback_query')
query_data = query_data.split(',')
raid_id = query_data[0]
response = query_data[1]
raid = self.retornar_raid(raid_id)
if raid is not None:
if response == "coordenada":
gyn = self.retornar_gyn(raid['place'])
if gyn is not None:
msg = await self.sender.sendMessage(gyn['coords'], parse_mode="markdown")
self.delete_messages(msg, 10)
else:
return
else:
user = self.retornar_usuario_raid(raid, msg['from'])
if response == "yes":
if user is None and self.return_total_trainers_in_raid(raid) < raid['maximum_trainers']:
self.adicionar_treinador_raid(raid, msg['from'])
else:
return
else:
if user is not None:
raid['going'] = self.remove(raid['going'], msg['from']['id'])
self.add_log_in_raid(raid, msg['from'], "Saiu ás: %s" % (self.return_data_hora_formatado()))
self.remover_comentarios(raid, msg['from'])
else:
return
raid_keyboard = self.create_keyboard(raid)
self.persist_data()
for msg in raid['messages']:
message_idf = telepot.message_identifier(msg)
await self.bot.editMessageText(message_idf, self.create_list(raid), reply_markup=raid_keyboard, parse_mode="markdown")
async def enviar_mensagem_usuario(self, raid, mensagem):
if raid['status'] == _('active'):
for indo in raid['going']:
print(indo['user']['id'])
await self.bot.sendMessage(indo['user']['id'], mensagem, parse_mode="markdown")
def delete_messages(self, msg, after = 5):
self.scheduler.event_later(after, ('_delete_bot_messages', { 'delete': msg }))
def mention_member(self, user):
username = f"{user['first_name']}"
if 'last_name' in user:
username += f" {user['last_name']}"
trainer_info = ""
trainer = next((x for x in self.trainers if int(x['id']) == int(user['id'])), None)
if trainer is not None:
trainer_info = f" {trainer['level']} {trainer['emoji']}"
username = f"{trainer['nickname']}"
return f"[{username}](tg://user?id={user['id']}){trainer_info}"
def retornar_pokemon(self, argumento):
if argumento.isdigit():
return next((x for x in self.pokemons if int(x['id']) == int(argumento)), None)
else:
return next((x for x in self.pokemons if x['name'] == argumento.lower()), None)
def raid_nao_ativa_ou_nao_existente(self, raid):
if raid is None:
return True
elif raid['status'] != _('active'):
return True
else:
return False
def remover_comentarios(self, raid, user):
i = 0
for comment in raid['comments']:
if comment['user']['id'] == user['id']:
raid['comments'].pop(i)
self.remover_comentarios(raid, user)
else:
i = i + 1
def retornar_raid(self, id):
return next((x for x in self.raids['raids'] if int(x['id']) == int(id)), None)
def exists_trainer_in_raid(self, raid, iduser):
return next((x for x in raid['going'] if int(x['user']['id']) == iduser), None) is not None
def return_data_hora_formatado(self):
return self.retonar_data_hora().strftime('%d/%m/%Y %H:%M:%S')
def retonar_data_hora(self):
return datetime.datetime.now() - datetime.timedelta(hours=3)
def retornar_gyn(self, argumento):
if argumento.isdigit():
return next((x for x in self.gyns if int(x['id']) == int(argumento)), None)
else:
return next((x for x in self.gyns if x['name'] == argumento.lower()), None)
def adicionar_comentario(self, obj, user, comentario, tipo_comentario):
obj['comments'].append({
'user': user,
'comment': comentario,
'tipo': tipo_comentario
})
def adicionar_treinador_raid(self, raid, user):
raid['going'].append({
"user": user,
"count": 0
})
def retornar_usuario_raid(self, raid, usuario_mensagem):
return next((x for x in raid['going'] if int(x['user']['id']) == int(usuario_mensagem['id'])), None)
def add_log_in_raid(self, raid, usuario, message):
raid['log'].append({
"user": usuario,
"mensagem": message
})
def is_admin(self, id):
aux = False
for admin_id in self.administradores:
if admin_id == id:
aux = True
break
return aux
def return_total_trainers_in_raid(self, raid):
total = len(raid['going'])
for r in raid['going']:
total += r['count']
return total
def create_keyboard(self, raid):
return InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton(text=_('Yes'), callback_data=f"{raid['id']},yes"),
InlineKeyboardButton(text=_('No'), callback_data=f"{raid['id']},no"),
InlineKeyboardButton(text='Coordenada', callback_data=f"{raid['id']},coordenada")]
])
def create_quest(self, quest):
message = _("#️⃣ ID: *%s*\n🕵🏽♂️ Quest: *%s*\n%s Place: *%s*\n%s Reward: *%s*") % (quest['id'],quest['quest'],emoji.emojize(':round_pushpin:'),quest['place'],emoji.emojize(':trophy:'),quest['reward'])
if quest['status'] == _('active'):
if len(quest['comments']) > 0:
message += _("\n\n*Comments:*")
for comment in quest['comments']:
message += f"\n{self.mention_member(comment['user'])}: {comment['comment']}"
message += _("\n\n*Reported by:* %s") % (self.mention_member(quest['created_by']))
else:
message += f"\n\n*{quest['status'].upper()}*"
return message
def cabecalholista(self, raid):
cabeca = "#️⃣ ID: *%s*\n" % (raid['id'])
cabeca += "%s Pokémon: *%s*\n" % (emoji.emojize(':trident_emblem:'),raid['pokemon']['name'].title())
gyn = self.retornar_gyn(raid['place'])
if gyn is None:
cabeca += "%s Local: *%s*\n" % (emoji.emojize(':round_pushpin:'), raid['place'])
else:
cabeca += "%s Local: *%s*\n" % (emoji.emojize(':round_pushpin:'), raid['place'])
if gyn['ex'] is True:
cabeca += "%s *Ginásio de Passe EX*\n" % (emoji.emojize(':warning:'))
cabeca += "%s Coordenada: *%s*\n" % (emoji.emojize(':round_pushpin:'), gyn['coords'])
cabeca += "%s Horário: *%s*" % (emoji.emojize(':alarm_clock:'),raid['start_time'])
return cabeca
def corpolista(self, raid):
i = 1
message = ''
total = self.return_total_trainers_in_raid(raid)
if total > 0:
message += _("\n\n*Going:* %s") % (total)
for x in raid['going']:
if i == 1:
message += "\n"
message += f"\n{i}. {self.mention_member(x['user'])}"
i += 1
total += x['count']
if x['count'] > 0:
message += f" (+{x['count']})"
if self.return_total_trainers_in_raid(raid) == raid['maximum_trainers']:
message += _("\n\n*Lista fechada por atingir limite permitido*")
if len(raid['comments']) > 0:
message += _("\n\n*Comments:*")
for comment in raid['comments']:
message += f"\n{self.mention_member(comment['user'])}: {comment['comment']}"
message += _("\n\n*Created by:* %s") % (self.mention_member(raid['created_by']))
return message
def create_log(self, raid):
message = _("\n\n*Log:*")
if len(raid['log']) > 0:
for comment in raid['log']:
message += f"\n{self.mention_member(comment['user'])}: {comment['mensagem']}"
else:
message += _("\n*Não há logs para essa raid.*")
return message
def create_list(self, raid):
message = self.cabecalholista(raid)
if raid['status'] == _('active'):
message += self.corpolista(raid)
else:
message += f"\n\n*{raid['status'].upper()} POR* {self.mention_member(raid['finish_by'])}"
return message
def remove(self, _list, id):
i = 0
for x in _list:
if int(x['user']['id']) == int(id):
_list.pop(i)
break
else:
i += 1
return _list
def load_data(self):
config = json.loads(open('config.json').read())
self.master = config['master_id']
self.administradores = config['administradores']
#self.curr_raids = json.loads(open('data/raids.json').read())
#self.pokemon = json.loads(open('data/pokemon.json').read())
self.raids = json.loads(open('data/raids.json').read())
self.trainers = json.loads(open('data/trainers.json').read())
self.quests = json.loads(open('data/quests.json').read())
self.pokemons = json.loads(open('data/pokemons.json').read())
self.gyns = json.loads(open('data/gyns.json').read())
def persist_data(self):
# save active raids
self.save_json(self.raids, 'data/raids.json')
# save trainers
self.save_json(self.trainers, 'data/trainers.json')
# save quests
self.save_json(self.quests, 'data/quests.json')
# save current available raids
#self.save_json(self.curr_raids, 'data/raids.json')
# save pokemons in raid
self.save_json(self.pokemons, 'data/pokemons.json')
#save gyns
self.save_json(self.gyns, 'data/gyns.json')
def save_json(self, obj, filename):
with open(filename, 'w') as f:
json.dump(obj, f)
def convert_to_seconds(self, hours, minutes):
return int((hours * 3600) + (minutes * 60))
config = json.loads(open('config.json').read())
language = gettext.translation('thepokegobot', localedir='locale', languages=[config['language']])
language.install()
bot = telepot.aio.DelegatorBot(config['token'], [
include_callback_query_chat_id(
pave_event_space())(
per_chat_id(), create_open, ThePokeGOBot, timeout=600)
])
loop = asyncio.get_event_loop()
loop.create_task(MessageLoop(bot).run_forever())
print(_("Miau! E isso ai Campos Oficial!"))
loop.run_forever()