-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.py
120 lines (100 loc) · 3.69 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
import logging
from datetime import datetime
from queue import Queue
from threading import Thread
import telegram
from telegram.ext import CommandHandler
from telegram.ext import Dispatcher
from telegram.ext import Filters
from telegram.ext import MessageHandler
from telegram.ext import (Updater)
import settings
from decorators import stop_flood, size_limit, log_message
from exceptions import EncodingException
from shelve_utils import users_history as uh
from urllib_utils import create_gist, get_request_contents
from utils import get_default_description, unix_ts, string_md5
logger = logging.getLogger(__name__)
@log_message
def start(bot, update):
update.message.reply_text("Hello. I can upload your text and documents to https://gist.github.com.")
@log_message
@stop_flood
@size_limit
def on_text_receive(bot, update):
bot.sendChatAction(chat_id=update.message.chat_id, action=telegram.ChatAction.TYPING)
url = create_gist(
get_default_description(),
datetime.utcnow().strftime('%Y%d%m%H%M%S'),
update.message.text
)
if url:
uh.update_user_history(
update.message.from_user.id,
date=unix_ts(update.message.date),
txt_msg_hash=string_md5(update.message.text),
text_url=url
)
update.message.reply_text(url)
else:
update.message.reply_text('Error during uploading a gist. Please try again.')
@log_message
@stop_flood
def on_file_receive(bot, update):
new_file = bot.getFile(update.message.document.file_id)
bot.sendChatAction(chat_id=update.message.chat_id, action=telegram.ChatAction.TYPING)
try:
url = create_gist(
get_default_description(),
update.message.document.file_name,
get_request_contents('GET', new_file.file_path)
)
except EncodingException as e:
update.message.reply_text(str(e))
return
if url:
new_file = bot.getFile(update.message.document.file_id)
file_contents = get_request_contents('GET', new_file.file_path)
uh.update_user_history(
update.message.from_user.id,
date=unix_ts(update.message.date),
file_id=update.message.document.file_id,
file_contents_hash=string_md5(file_contents),
file_url=url
)
update.message.reply_text(url)
else:
update.message.reply_text('Error during uploading a gist. Please try again.')
def error(bot, update, error):
logger.error('Update "%s" caused error "%s"' % (update, error))
def setup(webhook_url=None):
"""If webhook_url is not passed, run with long-polling."""
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO)
if webhook_url:
bot = telegram.Bot(settings.TELEGRAM_GIST_BOT_TOKEN)
update_queue = Queue()
dp = Dispatcher(bot, update_queue)
else:
updater = Updater(settings.TELEGRAM_GIST_BOT_TOKEN)
bot = updater.bot
dp = updater.dispatcher
# message handlers
start_msg_handler = CommandHandler('start', start)
text_handler = MessageHandler(Filters.text, on_text_receive)
file_handler = MessageHandler(Filters.document, on_file_receive)
dp.add_handler(start_msg_handler)
dp.add_handler(text_handler)
dp.add_handler(file_handler)
logger.info('Bot started.')
if webhook_url:
bot.set_webhook(webhook_url=webhook_url)
thread = Thread(target=dp.start, name='dispatcher')
thread.start()
return update_queue, bot
else:
bot.set_webhook() # Delete webhook
updater.start_polling()
updater.idle()
if __name__ == '__main__':
setup()