-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwrapper.py
152 lines (126 loc) · 5.14 KB
/
wrapper.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
#!/usr/bin/env python
#coding:utf-8
"""
Author: Marco Mescalchin --<>
Purpose: Wrapper to telegram bot api
Created: 06/25/15
"""
import requests,json,os
from time import sleep
import logging
logging.getLogger(__name__)
DEBUG_GET_POST = False
########################################################################
class Bot:
""""""
api_url = "https://api.telegram.org"
offset = 0
stop = False
#----------------------------------------------------------------------
def __init__(self,token):
"""Constructor"""
logging.info("Telegram Bot Starting")
self.token = token
def setWebhook(self,whurl):
r = self.post('setWebhook',{'url':whurl})
logging.info("Telegram WebHook Setup: %s" % r)
def clearWebHook(self):
r = self.post('setWebhook',{'url':''})
logging.info("Telegram WebHook Cleared: %s" % r)
def get(self,method,params=None):
if DEBUG_GET_POST: logging.info("GET --> %s %s" % (method,params))
r = requests.get("%s/bot%s/%s" % (self.api_url,self.token,method),params,timeout=30)
if DEBUG_GET_POST: logging.info("GET <-- %s" % r)
if r.status_code == requests.codes.ok:
j = r.json()
if j['ok']:
if j['result']:
return j['result']
else:
logging.info("GET Error %s" % r.text)
return False
def post(self,method,params=None,files=None):
logging.debug("POST --> %s %s" % (method,params))
r = requests.post("%s/bot%s/%s" % (self.api_url,self.token,method),params,files=files,timeout=60)
logging.debug("POST <-- %s" % (r))
if r.status_code == requests.codes.ok:
j = r.json()
if j['ok']:
if j['result']:
return j['result']
else:
logging.error("POST Error %s" % r.text)
return False
def webhook(self,request):
data = json.loads(request.body.decode('utf8'))
logging.info("<-- WH %s" % data['message'])
message_received.send(self,message=data['message'])
return 'ok'
def action_typing(self,chat_id):
self.post('sendChatAction',{'chat_id':chat_id,'action':'typing'})
def action_upload_photo(self,chat_id):
self.post('sendChatAction',{'chat_id':chat_id,'action':'upload_photo'})
def forwardMessage(self,chat_id,from_chat_id,message_id):
r = self.post('forwardMessage',{
'chat_id':chat_id,
'from_chat_id':from_chat_id,
'message_id':message_id
})
def sendMessage(self,chat_id,text,disable_web_page_preview=True,reply_to_message_id=None,reply_markup=None):
r = self.post('sendMessage',{
'chat_id':chat_id,
'text':text,
'disable_web_page_preview':disable_web_page_preview,
'reply_to_message_id':reply_to_message_id,
'reply_markup':json.dumps(reply_markup)
})
#TODO: check result
def sendPhoto(self,chat_id,photo,caption=None,reply_to_message_id=None,reply_markup=None):
r = self.post('sendPhoto',{
'chat_id':chat_id,
'caption':caption,
'reply_to_message_id':reply_to_message_id,
'reply_markup':json.dumps(reply_markup)
},files={'photo':('image.jpg', photo, 'image/jpeg', {'Expires': '0'})})
#TODO: check result
def parsemessage(self,chat_id,message):
# parse message here
pass
def parsepicture(self,chat_id,message):
# parse message here
pass
def parsedocument(self,chat_id,message):
# parse document here but no api from telegram yet
pass
def getUpdates(self):
timeout = 60
geturl = "%s/bot%s/getUpdates" % (self.api_url,self.token)
while True:
if self.stop:
try:
# ask for the next message before exit ( if not it will loop )
dt = dict(offset=self.offset, timeout=timeout)
j = requests.post(geturl, data=dt, timeout=None).json()
except:
sleep(60)
break
try:
dt = dict(offset=self.offset, timeout=timeout)
try:
j = requests.post(geturl, data=dt, timeout=None).json()
except ValueError: # incomplete data
continue
if not j['ok'] or not j['result']:
continue
for r in j['result']:
m = r['message']
cid = m['chat']['id']
if 'text' in m:
self.parsemessage(cid,m)
if 'photo' in m:
self.parsepicture(cid,m)
if 'document' in m:
self.parsedocument(cid,m)
self.offset = r['update_id'] + 1
except:
sleep(60)