forked from bhdn/supybot-telegram-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.py
248 lines (219 loc) · 9.47 KB
/
plugin.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
###
# Copyright (c) 2015, Bogdano Arendartchuk
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
import supybot.callbacks as callbacks
import supybot.ircmsgs as ircmsgs
import traceback
import threading
import time
import sys
import importlib
import telegram
from telegram import TelegramBot
#importlib.reload(telegram)
import unicodedata
class TelegramBridge(callbacks.Plugin):
"""Add the help for "@plugin help TelegramBridge" here
This should describe *how* to use this plugin."""
_pipe = None
def __init__(self, irc):
super(TelegramBridge, self).__init__(irc)
self.log.debug("TelegramBridge initializing")
self._tgToken = self.registryValue("tgToken")
self.telegram_loop_run = True
try:
self._tgId = int(self._tgToken.split(":", 1)[0])
except ValueError:
self.log.error("failed to parse tgToken, please check it is in "
"the <ID>:<COOKIE> format")
self._tgTimeout = self.registryValue("tgTimeout")
self._tgIrc = irc
self._tg = TelegramBot(self._tgToken)
self._start_telegram_loop()
def _feed_to_supybot(self, channel, author, text):
new_msg = ircmsgs.privmsg(channel, text.encode("utf-8","replace"))
new_msg.prefix = self._tgIrc.prefix
new_msg.tag("from_telegram")
new_msg.nick = author
self.log.debug("feeding back to supybot: %s", new_msg)
self._tgIrc.feedMsg(new_msg)
@staticmethod
def _tg_user_repr(user):
user_id = user.get("id", "??")
last_name = user.get("last_name", "")
name = user.get("first_name", str(user_id)) + last_name
chosen = user.get("username", name)
namelookup = {"T_101": "T-101",
"MikaRautio": "luftwaffle",
"Mr the truckPerson being thing": "truck",
"AnttiSvenn": "kakka",
"lupinesse": "jenni",
"Tuhox": "DDT",
"salainensaksalainen": "urs"}
if namelookup.has_key(chosen):
chosen = namelookup[chosen]
return user_id, chosen
def _tg_repr_location(self, location):
template = ("<location http://www.google.com/maps/place/"
"{0},{1}/@{0},{1},17z>")
text = template.format(location.get("latitude"),
location.get("longitude"))
return text
def _tg_repr_contact(self, contact):
template = "<contact {} {} {}>"
text = template.format(contact.get("first_name"),
contact.get("last_name"),
contact.get("phone_number"))
return text
def _tg_repr_non_text(self, message):
text = ""
for type in ("photo", "video", "audio", "sticker", "contact",
"location", "venue", "voice", "game", "document"):
object = message.get(type)
if object:
if type == "sticker":
text = object.get("emoji")
# Decode not required, json is already utf8
#text = text.decode("utf-8","replace")
#text = unicodedata.name(text)
text = u"<sticker {}>".format(text)
#text = text.encode("utf-8","replace")
#text = "<sticker>"
elif type == "location":
text = self._tg_repr_location(object).encode("utf-8","replace")
elif type == "contact":
text = self._tg_repr_contact(object).encode("utf-8","replace")
else:
text = "<{}>".format(type.encode("utf-8","replace"))
break
return text
def _tg_repr_message(self, message):
text = message.get("text")
if not text:
text = self._tg_repr_non_text(message)
return text
def _get_channel_from_chat(self, message):
chat_ids = {self.registryValue("tgChatId", ch):
ch for ch in self._tgIrc.state.channels}
chat_id = message.get("chat")
if not chat_id:
self.log.warning("Malformed Telegram message")
else:
chat_id = chat_id.get("id")
channel = chat_ids.get(chat_id, None)
if channel:
self.log.debug("Got message from Telegram chat %s, relaying "
"to channel %s", chat_id, channel)
else:
self.log.info("Got message from unknown Telegram group: %s",
chat_id)
return channel
def _tg_handle_message(self, message):
channel = self._get_channel_from_chat(message)
if channel:
text = self._tg_repr_message(message)
user = message.get("from")
user_id, author = self._tg_user_repr(user)
if user_id != self._tgId:
for line in text.splitlines():
irc_text = "%s> %s" % (author, line)
self._send_irc_message(channel, irc_text)
self._feed_to_supybot(channel, author, line)
def _telegram_discard_previous_updates(self):
update_id = None
for update_id, update in self._tg.updates():
pass
all(self._tg.updates(state=update_id))
def _telegram_loop(self):
self._telegram_discard_previous_updates()
while self.telegram_loop_run:
try:
for message in self._tg.updates_loop(self._tgTimeout):
self._tg_handle_message(message)
except Exception as e:
self.log.debug("%s", traceback.format_exc())
self.log.critical("%s", str(e))
time.sleep(1)
def _start_telegram_loop(self):
self.telegram_loop_run = True
t = threading.Thread(target=self._telegram_loop)
t.setDaemon(True)
t.start()
def _send_to_chat(self, text, chatId):
if sys.version_info[0] < 3:
text = text.decode("utf8", "replace")
text = text.encode("utf8", "replace")
self._tg.send_message(chatId, text)
def _send_irc_message(self, channel, text):
if sys.version_info[0] < 3:
text = text.encode("utf-8", "replace")
new_msg = ircmsgs.privmsg(channel, text)
new_msg.tag("from_telegram")
self._tgIrc.queueMsg(new_msg)
def doPrivmsg(self, irc, msg):
irc = callbacks.SimpleProxy(irc, msg)
channel = msg.args[0]
if (not msg.isError and channel in irc.state.channels
and not msg.from_telegram):
chat_id = self.registryValue("tgChatId", channel)
if not chat_id or chat_id == 0:
self.log.debug("TelegramBridge not configured for channel %s",
channel)
return
text = msg.args[1]
if ircmsgs.isAction(msg):
text = ircmsgs.unAction(msg)
if sys.version_info[0] < 3:
text = text.decode("utf8", "replace")
line = "* %s %s" % (msg.nick, text)
else:
if sys.version_info[0] < 3:
text = text.decode("utf8", "replace")
line = "%s> %s" % (msg.nick, text)
if sys.version_info[0] < 3:
line = line.encode("utf8", "replace")
self._send_to_chat(line, chat_id)
def doTopic(self, irc, msg):
if len(msg.args) == 1:
return
channel = msg.args[0]
topic = msg.args[1]
if sys.version_info[0] < 3:
topic = topic.decode("utf8", "replace")
line = u"%s: %s" % (channel, topic)
if sys.version_info[0] < 3:
line = line.encode("utf8", "replace")
self._send_to_chat(line)
def outFilter(self, irc, msg):
if msg.command == "PRIVMSG" and not msg.from_telegram:
self.doPrivmsg(irc, msg)
return msg
def die(self):
self.telegram_loop_run = False
Class = TelegramBridge
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: