-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.py
122 lines (104 loc) · 4.4 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
# Importando bibliotecas/módulos necessários para o funcionamento
from pyrogram import Client, filters
from pyrogram.types import ReplyKeyboardMarkup
from dotenv import load_dotenv
from os import getenv
import customization_variables.messages as messages
import customization_variables.information as information
# Carregando as variáveis de ambiente do arquivo .env
load_dotenv()
# Configurando o cliente no telegram usando as variáveis de ambiente
bot = Client(
'lup_ajuda_bot',
api_id=getenv('TELEGRAM_API_ID'),
api_hash=getenv('TELEGRAM_API_HASH'),
bot_token=getenv('TELEGRAM_BOT_TOKEN')
)
# Teclado com opções de escolhas para o usuário clicar
@bot.on_message(filters.command('escolher'))
async def teclado_para_escolher(client, message):
teclado = ReplyKeyboardMarkup(
information.lista_escolhas_teclado,
resize_keyboard=True
)
await message.reply(messages.texto_opcoes_teclado,
reply_markup = teclado
)
# Interagindo com o comando /ambulancia digitado pelo usuário
@bot.on_message(filters.command('ambulancia'))
async def ambulancia(client, message):
await message.reply(messages.texto_ambulancia)
await bot.send_contact(message.chat.id,
messages.texto_ambulancia, information.nome_contato_ambulancia
)
# Interagindo com o comando /bombeiros digitado pelo usuário
@bot.on_message(filters.command('bombeiros'))
async def bombeiros(client, message):
await message.reply(messages.texto_bombeiros)
await bot.send_contact(message.chat.id,
messages.texto_bombeiros, information.nome_contato_bombeiros
)
# Interagindo com o comando /direitos digitado pelo usuário
@bot.on_message(filters.command('direitos'))
async def direitos(client, message):
await message.reply(messages.texto_direitos)
await bot.send_contact(message.chat.id,
messages.texto_direitos, information.nome_contato_direitos
)
# Interagindo com o comando /policia digitado pelo usuário
@bot.on_message(filters.command('policia'))
async def policia(client, message):
await message.reply(messages.texto_policia)
await bot.send_contact(message.chat.id,
messages.texto_policia, information.nome_contato_policia
)
# Interagindo com o comando /emocional digitado pelo usuário
@bot.on_message(filters.command('emocional'))
async def emocional(client, message):
await message.reply(messages.texto_emocional)
await bot.send_contact(message.chat.id,
messages.texto_emocional, information.nome_contato_emocional
)
# Interagindo com o comando /justica_mulher digitado pelo usuário
@bot.on_message(filters.command('justica_mulher'))
async def justica_mulher(client, message):
await message.reply(messages.texto_justica_mulher)
await bot.send_contact(message.chat.id,
messages.texto_justica_mulher, information.nome_contato_justica_mulher
)
# Interagindo com o comando /elogio digitado pelo usuário
@bot.on_message(filters.command('elogio'))
async def elogio(client, message):
await message.reply(messages.texto_elogio)
# Interagindo com o comando /motivar digitado pelo usuário
@bot.on_message(filters.command('motivar'))
async def motivar(client, message):
await message.reply(messages.texto_motivar)
# Interagindo com o comando /fofura digitado pelo usuário
@bot.on_message(filters.command('fofura'))
async def fofura(client, message):
await bot.send_photo(message.chat.id,
information.link_imagem_fofura
)
# Interagindo com o comando /frase digitado pelo usuário
@bot.on_message(filters.command('frase'))
async def frase(client, message):
await message.reply(messages.texto_frase)
# Interagindo com o comando /musica digitado pelo usuário
@bot.on_message(filters.command('musica'))
async def musica(client, message):
await message.reply(messages.texto_musica)
# Filtrando imagens ou vídeos que o usuário possa enviar
@bot.on_message(filters.photo | filters.sticker | filters.animation | filters.video)
async def filtrando_imagens(client, message):
await message.reply(messages.texto_imagens_ou_videos)
# Filtrando audios que o usuário possa enviar
@bot.on_message(filters.voice | filters.audio)
async def filtrando_audios(client, message):
await message.reply(messages.texto_audios)
# Interagindo com o usuário a partir de qualquer mensagem enviada
@bot.on_message()
async def mensagens_gerais(client, message):
await message.reply(messages.texto_geral)
# Executando o bot
bot.run()