def on_chat_message(self, msg):
content_type, chat_type, chat_id = telepot.glance(msg)
# Check ID
if not chat_id in VALID_USERS:
print("Permission Denied")
return
if content_type is 'text':
self.handle_command(msg['text'])
return
if content_type is 'document':
file_name = msg['document']['file_name']
if file_name[-3:] == 'smi':
file_id = msg['document']['file_id']
self.handle_smifile(file_id, file_name)
return
if file_name[-7:] == 'torrent':
file_id = msg['document']['file_id']
self.handle_seedfile(file_id, file_name)
return
self.sender.sendMessage('Invalid File')
return
self.sender.sendMessage('Invalid File')
telegram_torrent.py 文件源码
python
阅读 20
收藏 0
点赞 0
评论 0
评论列表
文章目录