-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathproxy_bot.py
449 lines (403 loc) · 26.4 KB
/
proxy_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
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import telebot
import config
import dbhelper
import dictionary
import fnmatch
import os
import json
import requests
import time
# Initialize bot
bot = telebot.TeleBot(config.token)
#checks whether the file is having some pre-saved data or not
#if the file contains no data then ---> makes a list/dict with the name user_list with just [] and user_dir with just a blank dict
#else it loads the previous list/dict and stores it in the var user_list for the list and var user_dir for the dict()
if os.stat(config.storage_block).st_size == 0:
user_list = list()
else:
user_list = dictionary.load_list(config.storage_block)
if os.stat(config.storage_userdir).st_size == 0:
user_dir = dict()
else:
user_dir = dictionary.load_dict(config.storage_userdir)
#for the list of all the commands
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["help"])
def command_start(message):
bot.send_message(message.chat.id, """*Hey """ + message.chat.first_name +"""!\nSo, here is a list of commands that you should keep in mind:* \n
`1`- /available : sets your current status as available
`2`- /unavailable: sets your current status as unavailable
`3`- /viewunavailablemessage : to view your Unavailable Message
`4`- /setunavailablemessage : set the text message that you want users to see when you're unavailable
`5`- /checkstatus: allows your to check your current status
`6`- /block `@username/nickname` : allows you to block a user
`7`- /unblock `@username/nickname`: allows you to unblock a blocked user
`8`- /viewblockmessage: to view the block message (that the users will see)
`9`- /setblockmessage : set the text message that you want users to see when they are blocked
`10`-/viewblocklist : allows you to view the list of blocked users
`11`-/viewnicknames : allows you to view all the nicknames (with Firstname as reference)\n
*For any help and queries please contact -* [me](telegram.me/mrgigabytebot) *or check out* [this](https://github.com/mrgigabyte/proxybot)""",parse_mode="Markdown")
#command for admin: Used to view the block message
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["viewblockmessage"])
def command_start(message):
with open(config.storage_blockmsg) as f:
if os.stat(config.storage_nonavailmsg).st_size == 0:
bot.send_message(message.chat.id, """*Oops!*
You haven't set any *Block Message* for the users.
To set one kindly send: /setblockmessage to me""",parse_mode="Markdown")
else:
bot.send_message(message.chat.id,"`Your Block Message:`"+"\n"+ f.read(), parse_mode="Markdown")
#command for admin to set the block message that the user after getting blocked
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["setblockmessage"])
def command_start(message):
blockmsg = bot.send_message(message.chat.id, "Alright now send me your text that you want the user to see when he/she is *blocked*",parse_mode="Markdown")
bot.register_next_step_handler(blockmsg, lambda m: dictionary.unvb_msg(m, file=config.storage_blockmsg))
#to view all the nicknames in the format --> nick-name : user first name
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["viewnicknames"])
def command_nicknamelist(message):
with open(config.storage_fnamelist) as f:
if os.stat(config.storage_fnamelist).st_size == 0:
bot.send_message(message.chat.id, "No nicknames yet!")
else:
bot.send_message(message.chat.id,"`Nick Names:`" +"\n"+ "`(nick name: first name)`"+"\n"+ f.read(), parse_mode="Markdown")
#command for admin: Used to view the whole Block List containing usernames and nicknames of the blocked users, refer config.py for more info
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["viewblocklist"])
def command_blocklist(message):
with open(config.storage_blocklist) as f:
if os.stat(config.storage_blocklist).st_size == 0:
bot.send_message(message.chat.id, "No user is blocked!")
else:
bot.send_message(message.chat.id,"`Block List:`"+"\n"+ f.read(), parse_mode="Markdown")
#command for admin: Used to view your Unavailable Message
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["viewunavailablemessage"])
def command_start(message):
with open(config.storage_nonavailmsg) as f:
if os.stat(config.storage_nonavailmsg).st_size == 0:
bot.send_message(message.chat.id, """*Oops!*
You haven't set any Unavailable message for the users.
To set one kindly send: /setunavailablemessage to me""",parse_mode="Markdown")
else:
bot.send_message(message.chat.id,"`Your Unavailable Message:`"+"\n"+ f.read(), parse_mode="Markdown")
# Handle always first "/start" message when new chat with your bot is created (for users other than admin)
@bot.message_handler(func=lambda message: message.chat.id != config.my_id, commands=["start"])
def command_start(message):
bot.send_message(message.chat.id, "Hey "+ message.chat.first_name +"!"+"\n"+" Write me your text and the admin will get in touch with you shortly.")
#command for admin to set the message the users will see when the admin status is set to unavailable
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["setunavailablemessage"])
def command_start(message):
unvb = bot.send_message(message.chat.id, "Alright now send me your text that you want others to see when you're *unavailable*",parse_mode="Markdown")
bot.register_next_step_handler(unvb, lambda m: dictionary.unvb_msg(m, file=config.storage_nonavailmsg))
#command for admin to set his/her status as available, this will simply re-write the availability.txt file with the text "available"
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["available"])
def command_start(message):
bot.send_message(message.chat.id, "Your Status has been set as *Available*",parse_mode="Markdown")
dictionary.set_status(config.storage_availability,"Available")
#command for admin to set his/her status as unavailable, this will simply re-write the availability.txt file with the text "unavailable"
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["unavailable"])
def command_start(message):
bot.send_message(message.chat.id, "Your Status has been set as *Unavailable*",parse_mode="Markdown")
dictionary.set_status(config.storage_availability,"Unavailable")
#command for the admin to check his/her current status. The .checkstatus() method simply reads the text in the availability.txt file
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, commands=["checkstatus"])
def command_start(message):
ww = dictionary.check_status(config.storage_availability)
if ww == "false":
bot.send_message(message.chat.id, "Your current status is *Unavailable*",parse_mode="Markdown")
else:
bot.send_message(message.chat.id, "Your current status is *Available*",parse_mode="Markdown")
# Handle the messages which are not sent by the admin user(the one who is handling the bot) sends texts, audios, document etc to the admin
@bot.message_handler(func=lambda message: message.chat.id != config.my_id, content_types=['text', 'audio', 'document', 'photo', 'sticker', 'video',
'voice', 'location', 'contact'])
#checks whether the admin has blocked that user via bot or not
def blockk(message):
if message.chat.id in user_list:
with open(config.storage_blockmsg) as t:
bot.send_message(message.chat.id, t.read())
else:
#forwards the message sent by the user to the admin. Only if the user is not blocked
# checks if the user has replied to any previously send message. If yes ---> Then it checks the format and sends that text again to the admin if----> No then it simply forwards the message to the admin
if message.reply_to_message == None:
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
replytext = message.reply_to_message.text
replysticker = message.reply_to_message.sticker
replyaudio = message.reply_to_message.audio
replydocument = message.reply_to_message.document
replyphoto = message.reply_to_message.photo
replyvideo = message.reply_to_message.video
replyvoice = message.reply_to_message.voice
replylocation = message.reply_to_message.location
replycontact = message.reply_to_message.contact
if replytext == None:
if replysticker == None:
if replyaudio == None:
if replydocument == None:
if replyphoto == None:
if replyvideo == None:
if replyvoice == None:
if replylocation == None:
if replycontact == None:
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replycontact[-1].file_id
bot.send_message(config.my_id,"<b>"+ message.chat.first_name + " replied to 👇 Contact" +"</b>", parse_mode="HTML")
bot.send_contact(config.my_id, m)
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
bot.send_message(config.my_id,"<b>"+ message.chat.first_name + " replied to 👇 Location" +"</b>", parse_mode="HTML")
bot.send_location(config.my_id, latitude=replylocation.latitude, longitude=replylocation.longitude)
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replyvoice.file_id
bot.send_message(config.my_id,"<b>"+ message.chat.first_name + " replied to 👇 Voice Note" +"</b>", parse_mode="HTML")
bot.send_voice(config.my_id, m)
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replyvideo.file_id
bot.send_video(config.my_id, m, caption = message.chat.first_name + " replied to 👆")
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replyphoto[-1].file_id
bot.send_photo(config.my_id, m, caption = message.chat.first_name + " replied to 👆")
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replydocument.file_id
bot.send_document(config.my_id, m, caption = message.chat.first_name + " replied to 👆")
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replyaudio.file_id
bot.send_message(config.my_id,"<b>"+ message.chat.first_name + " replied to 👇 audio " +"</b>", parse_mode="HTML")
bot.send_audio(config.my_id, performer=replyaudio.performer, audio=m, title=replyaudio.title,
duration=replyaudio.duration)
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
m = replysticker.file_id
bot.send_message(config.my_id,"<b>"+ message.chat.first_name + " replied to 👇 sticker" +"</b>", parse_mode="HTML")
bot.send_sticker(config.my_id, m)
bot.forward_message(config.my_id, message.chat.id, message.message_id)
else:
bot.send_message(config.my_id, "<b>"+ message.chat.first_name + " replied to :" +"</b>"+ replytext, parse_mode="HTML")
bot.forward_message(config.my_id, message.chat.id, message.message_id)
dictionary.add_avaiblist(config.storage_avaiblist,message.chat.id) #adds the message.chat.id of the user in avaiblist.txt check config.py
q = dictionary.check_status(config.storage_availability) #checks the status of the admin whether he's available or not
if q == "false": #if not available then the user gets the unavailable text message from unavailmsg.txt check config.py
x = [line.rstrip('\n') for line in open(config.storage_avaiblist,'rt')]
else: #if the admin is available then the bot functions normally as the way it should
x = [line.rstrip('\n') for line in open('txtfiles/blank.txt','rt')]
if str(message.chat.id) in x:
with open(config.storage_nonavailmsg) as m:
bot.send_message(message.chat.id, m.read())
"""
from here the code is about saving the data of all the users in the form of a dictionary with key : username and val: message.chat.id
There can be many possibilities and chances of error, I've made sure to cover all of them but who knows o_0
Okay! So here are the cases:
1: user has a username and is a new user for the bot
2: user doesnt have a username and is a new user for the bot
3: user changed his username but is an old user for the bot
4: user removed his username and is an old user for the bot
5: idk that's it ?
if message.chat.id not in user_dir.values() <-- here the bot checks whether the message.chat.id of the user exists in the dict or not
if not: <--meaning it's a new user
then it checks for the username
if user doesnt have a username then ---> it asks the admin to give a nickname for the user to save that as key
else it saves the username of the new user as the key and chat.id as the val
We've successfully covere the cases 1 & 2 ^
Now if message.chat.id is presentt in user_dir.values()
if yes: <---meaning its an old user
it then checks whether the username is present or not
if the user doesnt has a username (meaning the old user removed his/her username)
then it cross checks in the dict whether the key of the user has '@' or not
now here's the tricky part: why did I check for '@' ? because in the case 2 we have given a nick name
to the user so now assume a case :
the new user opens the bot writes a text to the bot, the bot checks the chat.id of the user since it's not
there and the user doesnt has a username it will ask the admin to give a nickname.
NOW! if the user will write a text message again then since the chat.id of the user is now present in the
dict() the user will be treated as an old user with the key as the nickname. So, the else part of the code
will execute. Now! here we are only considering the old users and not the users who already have a nickname
and hence to differentiate among the two we have checked for '@' symbol in the key.
Hence, if the user is old and doesnt have a username then it will ask the admin for the new nickname
We have successfully covered the case 4 ^
if the old user has a nickname then it checks whether the username is already present or not
if not: then it saves the data of the user with the key as the new username and message.chat.id as the val
if yes: then do nothing
Hence, we have covered all the possible cases
"""
if message.chat.id not in user_dir.values():
if message.chat.username == None:
msg = bot.send_message(config.my_id, "*Uh! the user does not have a username o_0*\nCan you please suggest a name that can be used to store the data of the following user ?\n *PS: The nickname should be unique and shouldn't contain* '`@`'",parse_mode="Markdown" )
bot.register_next_step_handler(msg, lambda m: dictionary.process_name_step(m, dict_name=user_dir, file=config.storage_userdir, val=message.chat.id, firstname = message.chat.first_name))
else:
userName = "@"+ message.chat.username
userName = userName.lower()
#checks whether the message.chat.id of the user is there in the block list (user_list)
#if message.chat.id present ---> sends a message to the user that he/she is blocked
#else forwards the message to the admin
if userName not in user_dir:
dictionary.add_key_dict(config.storage_userdir, user_dir, userName, message.chat.id)
else:
if message.chat.username == None:
for userName, chatid in user_dir.items():
if chatid == message.chat.id:
z = userName
if '@' in z:
msg = bot.send_message(config.my_id, "*Uh! the user does not have a username o_0*\nCan you please suggest a name that can be used to store the data of the following user ?\n *PS: The nickname should be unique and shouldn't contain* '`@`'",parse_mode="Markdown" )
bot.register_next_step_handler(msg, lambda m: dictionary.process_name_step(m, dict_name=user_dir, file=config.storage_userdir, val=message.chat.id, firstname = message.chat.first_name))
else:
userName = "@"+ message.chat.username
userName = userName.lower()
if userName not in user_dir:
dictionary.add_key_dict(config.storage_userdir, user_dir, userName, message.chat.id)
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["text"])
def my_text(message):
# If we're just sending messages to bot (not replying) -> do nothing and notify about it.
# Else -> get ID whom to reply and send message FROM bot.
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
chat_id = message.reply_to_message.forward_from.id
bot.send_chat_action(chat_id, action = 'typing')
bot.send_message(chat_id, message.text)
else:
#checks whether the admin has entered /block or /unblock command
#if /block --> true then it gives the message.chat.id number as STRING after first 6 characters
#else it checks for /unblock and returns message.chat.id number as STRING after first 8 characters
#if none of the above evaluates to true then it sends "no one to reply"
if '/block'in message.text:
#if /block is true then it gets the username of the user and adds his/her id from the block list
if fnmatch.fnmatch(message.text,'/block *'): #check whether the text message is /block 'random character' using the wildcard: *
userid = message.text[6:].strip()
chat_id = user_dir.get(userid.lower())
#it can happen that the admin has entered wrong username/nickname and if that evaluates to be true then:
if chat_id == None:
bot.send_message(message.chat.id, """*Oops!*\nEither the user has never operated this bot or the username entered is incorrect
*Please try again :I*""",parse_mode="Markdown")
else:
dictionary.add_new_user(config.storage_block, user_list, chat_id)
dictionary.add_blocklist(config.storage_blocklist, userid)
elif message.text == '/block':
bot.send_message(message.chat.id, """Woops! you did a mistake, please type the username of the user you want to block after the command
Like:
/block `@username/nickname`""",parse_mode="Markdown")
elif '/unblock' in message.text:
#if /unblock is true then it gets the username of the user and removes his/her id from the block list
if fnmatch.fnmatch(message.text,'/unblock *'): #check whether the text message is /unblock 'random character' using the wildcard: *
userid = message.text[8:].strip()
chat_id = user_dir.get(userid.lower())
if chat_id == None:
bot.send_message(message.chat.id, """*Oops!*\nEither the user has never operated this bot or the username entered is incorrect
*Please try again :I*""",parse_mode="Markdown")
else:
dictionary.remove_user_list(config.storage_block, user_list, chat_id)
dictionary.remove_from_blocklist(config.storage_blocklist, userid)
elif message.text == '/unblock':
bot.send_message(message.chat.id, """Woops! you did a mistake, please type the username of the user you want to unblock after the command
Like:
/unblock `@username/nickname`""",parse_mode="Markdown")
else:
url = 'http://api.program-o.com/v2/chatbot/'
if message.text == None:
bot.send_message(config.my_id,"No one to reply!")
else:
s = message.text.split(' ')
args = "%".join(s)
cid = message.chat.id
paramsa = {
'bot_id' : '10',
'say' : args,
'convo_id' : message.from_user.id,
'format' : 'json'
}
jstr = requests.get(url, params=paramsa, headers=None, files=None, data=None)
data = json.loads(jstr.text)
if data['botsay'] =="":
bot.send_chat_action(cid, 'typing')
bot.reply_to(message, "<b> Uh Oh ... can you type that again ? :( Something went wrong </b>" , disable_web_page_preview="True", parse_mode="HTML")
if jstr.status_code != 200:
bot.reply_to(message, "*Ah !. An error was found. Please report this to my [Developer](https://telegram.me/nandan):* " + str(jstr.status_code), parse_mode="Markdown")
else:
bot.send_chat_action(cid, 'typing')
bot.reply_to(message, "<b>" + data['botsay'] + "</b>" , disable_web_page_preview="True", parse_mode="HTML")
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["sticker"])
def my_sticker(message):
# If we're just sending messages to bot (not replying) -> do nothing and notify about it.
# Else -> get ID whom to reply and send message FROM bot.
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
chat_id = message.reply_to_message.forward_from.id
bot.send_chat_action(chat_id, action = 'typing')
bot.send_sticker(chat_id, message.sticker.file_id)
else:
bot.send_message(config.my_id, "No one to reply")
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["photo"])
def my_photo(message):
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
who_to_send_id = message.reply_to_message.forward_from.id
bot.send_chat_action(who_to_send_id, action = 'upload_photo')
bot.send_photo(who_to_send_id, list(message.photo)[-1].file_id)
else:
bot.send_message(message.chat.id, "No one to reply!")
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["voice"])
def my_voice(message):
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
who_to_send_id = message.reply_to_message.forward_from.id
bot.send_voice(who_to_send_id, message.voice.file_id, duration=message.voice.duration)
else:
bot.send_message(message.chat.id, "No one to reply!")
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["document"])
def my_document(message):
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
who_to_send_id = message.reply_to_message.forward_from.id
bot.send_chat_action(who_to_send_id, action = 'upload_document')
bot.send_document(who_to_send_id, data=message.document.file_id)
else:
bot.send_message(message.chat.id, "No one to reply!")
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["audio"])
def my_audio(message):
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
who_to_send_id = message.reply_to_message.forward_from.id
bot.send_chat_action(who_to_send_id, action = 'upload_audio')
bot.send_audio(who_to_send_id, performer=message.audio.performer,
audio=message.audio.file_id, title=message.audio.title,
duration=message.audio.duration)
else:
bot.send_message(message.chat.id, "No one to reply!")
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["video"])
def my_video(message):
if message.reply_to_message:
if message.reply_to_message.forward_from == None:
bot.send_message(config.my_id,"*Oops! Something went wrong make sure you're replying to the right person!*",parse_mode="Markdown")
else:
who_to_send_id = message.reply_to_message.forward_from.id
bot.send_chat_action(who_to_send_id, action = 'upload_video')
bot.send_video(who_to_send_id, data=message.video.file_id, duration=message.video.duration)
else:
bot.send_message(message.chat.id, "No one to reply!")
# No Google Maps on my phone, so this function is untested, should work fine though.
@bot.message_handler(func=lambda message: message.chat.id == config.my_id, content_types=["location"])
def my_location(message):
if message.reply_to_message:
who_to_send_id = message.reply_to_message.forward_from.id
bot.send_chat_action(who_to_send_id, action = 'find_location')
bot.send_location(who_to_send_id, latitude=message.location.latitude, longitude=message.location.longitude)
else:
bot.send_message(message.chat.id, "No one to reply!")
print('Bot has Started\nPlease text the bot on:@{}'.format(bot.get_me().username))
bot.send_message(config.my_id,'Bot Started')
if __name__ == '__main__':
bot.polling(none_stop=True)