From f27556747896aeb891ce71cfdd0ac349d68c5b3d Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sat, 24 Sep 2011 22:26:31 +0200 Subject: [teisenbe] Use the imp module to import modules. Also add a simple translator module --- plugins/translate.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 plugins/translate.py (limited to 'plugins/translate.py') diff --git a/plugins/translate.py b/plugins/translate.py new file mode 100644 index 00000000..625d78e7 --- /dev/null +++ b/plugins/translate.py @@ -0,0 +1,33 @@ +from plugin import BasePlugin +import urllib.request +from urllib.parse import urlencode +import xhtml +import json + +TARGET_LANG = 'en' + +def translate(s, target=TARGET_LANG, source=''): + f = urllib.request.urlopen('http://ajax.googleapis.com/ajax/services/language/translate', urlencode({ 'v': '1.0', 'q': s, 'langpair': '%s|%s' % (source, target) })) + response = json.loads(str(f.read(), 'utf-8'))['responseData'] + return (response['translatedText'], response['detectedSourceLanguage']) + +class Plugin(BasePlugin): + def init(self): + self.add_event_handler('groupchat_message', self.on_groupchat_message) + + def on_groupchat_message(self, message): + try: + room_from = message.getMucroom() + if message['type'] == 'error': + return + + if room_from == 'poezio@kikoo.louiz.org': + nick_from = message['mucnick'] + body = xhtml.get_body_from_message_stanza(message) + room = self.core.get_room_by_name(room_from) + text, lang = translate(body) + if lang != TARGET_LANG: + room.add_message(text, nickname=nick_from) + except Exception as e: + import traceback + self.core.information("Exception in translator! %s" % (traceback.format_exc(),)) -- cgit v1.2.3 From 5dea3dcf800d2588732d0d217429e1d7402208fc Mon Sep 17 00:00:00 2001 From: Todd Eisenberger Date: Tue, 27 Sep 2011 10:15:15 -0700 Subject: Add day_change plugin, make translate update right away --- plugins/translate.py | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/translate.py') diff --git a/plugins/translate.py b/plugins/translate.py index 625d78e7..880c8af1 100644 --- a/plugins/translate.py +++ b/plugins/translate.py @@ -28,6 +28,7 @@ class Plugin(BasePlugin): text, lang = translate(body) if lang != TARGET_LANG: room.add_message(text, nickname=nick_from) + self.core.refresh_window() except Exception as e: import traceback self.core.information("Exception in translator! %s" % (traceback.format_exc(),)) -- cgit v1.2.3 From 28ef9d6003b0e1ea2c702e05a3f41de923b5b178 Mon Sep 17 00:00:00 2001 From: Todd Eisenberger Date: Sat, 1 Oct 2011 13:00:41 -0700 Subject: Update translate for the new MUC room --- plugins/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/translate.py') diff --git a/plugins/translate.py b/plugins/translate.py index 880c8af1..520d02b4 100644 --- a/plugins/translate.py +++ b/plugins/translate.py @@ -21,7 +21,7 @@ class Plugin(BasePlugin): if message['type'] == 'error': return - if room_from == 'poezio@kikoo.louiz.org': + if room_from == 'poezio@muc.poezio.eu': nick_from = message['mucnick'] body = xhtml.get_body_from_message_stanza(message) room = self.core.get_room_by_name(room_from) -- cgit v1.2.3