1
- import logging
2
1
import datetime
2
+ import logging
3
3
import os
4
- import sys
5
- from configparser import ConfigParser
6
4
from time import sleep
7
5
8
6
import telegram
9
- from telegram .ext import Updater , CommandHandler , MessageHandler , Filters
7
+ from telegram .ext import Updater , CommandHandler
10
8
11
9
12
10
class DailyBot :
@@ -17,7 +15,7 @@ def __init__(self, token):
17
15
level = logging .INFO ,
18
16
)
19
17
self .logger = logging .getLogger ("LOG" )
20
- self .logger .info ("Starting bot ." )
18
+ self .logger .info ("Starting BOT ." )
21
19
self .updater = Updater (token )
22
20
self .dispatcher = self .updater .dispatcher
23
21
@@ -26,14 +24,17 @@ def __init__(self, token):
26
24
daily_hour = int (os .environ .get ("HOUR" ))
27
25
daily_minute = int (os .environ .get ("MINUTE" ))
28
26
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 ))
30
28
31
29
start_handler = CommandHandler ("start" , self .send_start )
32
30
self .dispatcher .add_handler (start_handler )
33
31
34
32
example_handler = CommandHandler ("example" , self .send_example )
35
33
self .dispatcher .add_handler (example_handler )
36
34
35
+ daily_handler = CommandHandler ("daily" , self .send_daily )
36
+ self .dispatcher .add_handler (daily_handler )
37
+
37
38
self .dispatcher .add_error_handler (self .error )
38
39
39
40
@staticmethod
@@ -49,53 +50,74 @@ def send_type_action(chatbot, update):
49
50
def send_start (self , chatbot , update ):
50
51
"""
51
52
Start command to receive /start message on Telegram.
52
- @bot = information about the bot
53
+ @BOT = information about the BOT
53
54
@update = the user info.
54
55
"""
55
- chat_id = os .environ .get ("CHAT_ID" )
56
56
self .logger .info ("Start command received." )
57
57
self .logger .info (f"{ update } " )
58
58
self .send_type_action (chatbot , update )
59
- name = update .message ["chat" ]["first_name" ]
60
59
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
70
92
71
93
def send_daily (self , chatbot , job ):
72
94
"""
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
75
97
@update = the user info.
76
98
"""
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
88
111
89
112
def send_example (self , chatbot , update ):
90
113
"""
91
114
Sends example to caller
92
- @chatbot = information about the bot
115
+ @chatbot = information about the BOT
93
116
@update = the user info.
94
117
"""
95
118
self .send_type_action (chatbot , update )
96
119
self .logger .info ("Example command received." )
97
- with open ("example.md" ) \
98
- as example_file :
120
+ with open ("msg/example.md" ) as example_file :
99
121
example_text = example_file .read ()
100
122
print (example_text )
101
123
chatbot .send_message (
@@ -121,12 +143,12 @@ def error(self, chatbot, update, error):
121
143
122
144
def run (self ):
123
145
# Start the Bot
124
- self .logger .info ("Polling bot ." )
146
+ self .logger .info ("Polling BOT ." )
125
147
self .updater .start_polling ()
126
148
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,
128
150
# 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.
130
152
self .updater .idle ()
131
153
return 0
132
154
@@ -140,20 +162,20 @@ def run(self):
140
162
LINK = os .environ .get ("LINK" )
141
163
if TOKEN is not None :
142
164
if PORT is not None :
143
- bot = DailyBot (TOKEN )
144
- bot .updater .start_webhook (
165
+ BOT = DailyBot (TOKEN )
166
+ BOT .updater .start_webhook (
145
167
listen = "0.0.0.0" ,
146
168
port = int (PORT ),
147
169
url_path = TOKEN )
148
170
if LINK :
149
- bot .updater .bot .set_webhook (LINK )
171
+ BOT .updater .bot .set_webhook (LINK )
150
172
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 ()
153
175
else :
154
176
# 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 ()
157
179
else :
158
180
HOUR = int (os .environ .get ("HOUR" ))
159
181
MINUTE = int (os .environ .get ("MINUTE" ))
0 commit comments