Skip to content

Commit bfb5395

Browse files
Add multiple chats, minor improvements and bug fix
1 parent 0cba349 commit bfb5395

File tree

7 files changed

+74
-45
lines changed

7 files changed

+74
-45
lines changed

dailybot.py

+66-44
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
import logging
21
import datetime
2+
import logging
33
import os
4-
import sys
5-
from configparser import ConfigParser
64
from time import sleep
75

86
import telegram
9-
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
7+
from telegram.ext import Updater, CommandHandler
108

119

1210
class DailyBot:
@@ -17,7 +15,7 @@ def __init__(self, token):
1715
level=logging.INFO,
1816
)
1917
self.logger = logging.getLogger("LOG")
20-
self.logger.info("Starting bot.")
18+
self.logger.info("Starting BOT.")
2119
self.updater = Updater(token)
2220
self.dispatcher = self.updater.dispatcher
2321

@@ -26,14 +24,17 @@ def __init__(self, token):
2624
daily_hour = int(os.environ.get("HOUR"))
2725
daily_minute = int(os.environ.get("MINUTE"))
2826
daily_time = datetime.time(hour=daily_hour, minute=daily_minute)
29-
self.job_daily = self.job.run_daily(self.send_daily, time=daily_time, days=(0, 1, 2, 3, 4))
27+
self.job_daily = self.job.run_daily(self.send_daily, time=daily_time, days=(2, 4))
3028

3129
start_handler = CommandHandler("start", self.send_start)
3230
self.dispatcher.add_handler(start_handler)
3331

3432
example_handler = CommandHandler("example", self.send_example)
3533
self.dispatcher.add_handler(example_handler)
3634

35+
daily_handler = CommandHandler("daily", self.send_daily)
36+
self.dispatcher.add_handler(daily_handler)
37+
3738
self.dispatcher.add_error_handler(self.error)
3839

3940
@staticmethod
@@ -49,53 +50,74 @@ def send_type_action(chatbot, update):
4950
def send_start(self, chatbot, update):
5051
"""
5152
Start command to receive /start message on Telegram.
52-
@bot = information about the bot
53+
@BOT = information about the BOT
5354
@update = the user info.
5455
"""
55-
chat_id = os.environ.get("CHAT_ID")
5656
self.logger.info("Start command received.")
5757
self.logger.info(f"{update}")
5858
self.send_type_action(chatbot, update)
59-
name = update.message["chat"]["first_name"]
6059

61-
with open("start.md") \
62-
as start_file:
63-
start_text = start_file.read()
64-
chatbot.send_message(
65-
chat_id=chat_id,
66-
text=start_text,
67-
parse_mode=telegram.ParseMode.MARKDOWN,
68-
)
69-
return 0
60+
chat_id = update.message["chat"]["id"]
61+
if update.message["chat"]["type"] == "private":
62+
name = update.message["chat"]["first_name"]
63+
else:
64+
name = update.message["from_user"]["first_name"]
65+
66+
with open("msg/start.md") as start_file:
67+
try:
68+
start_text = start_file.read()
69+
start_text = start_text.replace("{{name}}", name)
70+
chatbot.send_message(
71+
chat_id=chat_id,
72+
text=start_text,
73+
parse_mode=telegram.ParseMode.MARKDOWN,
74+
)
75+
except Exception as error:
76+
self.logger.error(error)
77+
try:
78+
chat_ids = os.environ.get("CHAT_ID").replace(" ", "")
79+
chat_ids = chat_ids.split(",")
80+
chat_ids = [int(i) for i in chat_ids]
81+
if chat_id not in chat_ids:
82+
with open("msg/error.md") as error:
83+
error = error.read()
84+
chatbot.send_message(
85+
chat_id=chat_id,
86+
text=error,
87+
parse_mode=telegram.ParseMode.MARKDOWN,
88+
)
89+
except Exception as error:
90+
self.logger.error(error)
91+
return 0
7092

7193
def send_daily(self, chatbot, job):
7294
"""
73-
Info command to know more about the developers.
74-
@bot = information about the bot
95+
Sends text on `daily.md` daily to groups on CHAT_ID
96+
@BOT = information about the BOT
7597
@update = the user info.
7698
"""
77-
chat_id = os.environ.get("CHAT_ID")
78-
self.logger.info(f"Sending daily to {chat_id}")
79-
with open("daily.md") \
80-
as daily_file:
81-
daily_text = daily_file.read()
82-
chatbot.send_message(
83-
chat_id=chat_id,
84-
text=daily_text,
85-
parse_mode=telegram.ParseMode.MARKDOWN,
86-
)
87-
return 0
99+
chat_ids = os.environ.get("CHAT_ID").replace(" ", "")
100+
chat_ids = chat_ids.split(",")
101+
for chat_id in chat_ids:
102+
self.logger.info(f"Sending daily to {chat_id}")
103+
with open("msg/daily.md") as daily_file:
104+
daily_text = daily_file.read()
105+
chatbot.send_message(
106+
chat_id=chat_id,
107+
text=daily_text,
108+
parse_mode=telegram.ParseMode.MARKDOWN,
109+
)
110+
return 0
88111

89112
def send_example(self, chatbot, update):
90113
"""
91114
Sends example to caller
92-
@chatbot = information about the bot
115+
@chatbot = information about the BOT
93116
@update = the user info.
94117
"""
95118
self.send_type_action(chatbot, update)
96119
self.logger.info("Example command received.")
97-
with open("example.md") \
98-
as example_file:
120+
with open("msg/example.md") as example_file:
99121
example_text = example_file.read()
100122
print(example_text)
101123
chatbot.send_message(
@@ -121,12 +143,12 @@ def error(self, chatbot, update, error):
121143

122144
def run(self):
123145
# Start the Bot
124-
self.logger.info("Polling bot.")
146+
self.logger.info("Polling BOT.")
125147
self.updater.start_polling()
126148

127-
# Run the bot until you press Ctrl-C or the process receives SIGINT,
149+
# Run the BOT until you press Ctrl-C or the process receives SIGINT,
128150
# SIGTERM or SIGABRT. This should be used most of the time, since
129-
# start_polling() is non-blocking and will stop the bot gracefully.
151+
# start_polling() is non-blocking and will stop the BOT gracefully.
130152
self.updater.idle()
131153
return 0
132154

@@ -140,20 +162,20 @@ def run(self):
140162
LINK = os.environ.get("LINK")
141163
if TOKEN is not None:
142164
if PORT is not None:
143-
bot = DailyBot(TOKEN)
144-
bot.updater.start_webhook(
165+
BOT = DailyBot(TOKEN)
166+
BOT.updater.start_webhook(
145167
listen="0.0.0.0",
146168
port=int(PORT),
147169
url_path=TOKEN)
148170
if LINK:
149-
bot.updater.bot.set_webhook(LINK)
171+
BOT.updater.bot.set_webhook(LINK)
150172
else:
151-
bot.updater.bot.set_webhook(f"https://{NAME}.herokuapp.com/{TOKEN}")
152-
bot.updater.idle()
173+
BOT.updater.bot.set_webhook(f"https://{NAME}.herokuapp.com/{TOKEN}")
174+
BOT.updater.idle()
153175
else:
154176
# Run on local system once detected that it's not on Heroku nor ngrok
155-
bot = DailyBot(TOKEN)
156-
bot.run()
177+
BOT = DailyBot(TOKEN)
178+
BOT.run()
157179
else:
158180
HOUR = int(os.environ.get("HOUR"))
159181
MINUTE = int(os.environ.get("MINUTE"))

daily.md msg/daily.md

File renamed without changes.

msg/error.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*Aviso*: chat atual não se encontra cadastrado para receber mensagem da daily.

example.md msg/example.md

File renamed without changes.

msg/start.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Olá, {{name}}, estou aqui para te lembrar de mandar sua daily todo dia! TODO. SANTO. DIA.

start.md

-1
This file was deleted.

tox.ini

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[pycodestyle]
2+
count = True
3+
;ignore = E226,E302,E41
4+
max-line-length = 100
5+
statistics = True
6+
exclude = venv/

0 commit comments

Comments
 (0)