From e3b933445fe4b18af6ec462fc40da5f482e447a0 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Fri, 23 Sep 2011 17:43:01 +0200 Subject: [teisenbe] first attempt at a plugin system. --- plugins/screen_detach.py | 45 +++++++++++++++++++++++++++++++++++++++++++++ plugins/test.py | 12 ++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 plugins/screen_detach.py create mode 100644 plugins/test.py (limited to 'plugins') diff --git a/plugins/screen_detach.py b/plugins/screen_detach.py new file mode 100644 index 00000000..6ebc77f2 --- /dev/null +++ b/plugins/screen_detach.py @@ -0,0 +1,45 @@ +import os +import stat +import pyinotify + +SCREEN_DIR = '/var/run/screen/S-%s' % (os.getlogin(),) + +class Plugin(BasePlugin): + def init(self): + self.timed_event = None + sock_path = None + self.thread = None + for f in os.listdir(SCREEN_DIR): + path = os.path.join(SCREEN_DIR, f) + if screen_attached(path): + sock_path = path + self.attached = True + break + + # Only actually do something if we found an attached screen (assuming only one) + if sock_path: + wm = pyinotify.WatchManager() + wm.add_watch(sock_path, pyinotify.EventsCodes.ALL_FLAGS['IN_ATTRIB']) + self.thread = pyinotify.ThreadedNotifier(wm, default_proc_fun=HandleScreen(plugin=self)) + self.thread.start() + + def cleanup(self): + if self.thread: + self.thread.stop() + + def update_screen_state(self, socket): + attached = screen_attached(socket) + if attached != self.attached: + self.attached = attached + status = 'available' if self.attached else 'away' + self.core.command_status(status) + +def screen_attached(socket): + return (os.stat(socket).st_mode & stat.S_IXUSR) != 0 + +class HandleScreen(pyinotify.ProcessEvent): + def my_init(self, **kwargs): + self.plugin = kwargs['plugin'] + + def process_IN_ATTRIB(self, event): + self.plugin.update_screen_state(event.path) diff --git a/plugins/test.py b/plugins/test.py new file mode 100644 index 00000000..fc7aedc6 --- /dev/null +++ b/plugins/test.py @@ -0,0 +1,12 @@ +class Plugin(BasePlugin): + def init(self): + self.core.information("Plugin loaded") + + def cleanup(self): + self.core.information("Plugin unloaded") + + def on_message(self, message): + self.core.information("Test plugin received message: {}".format(message)) + + def command_plugintest(self, args): + self.core.information("Command! With args {}".format(args)) -- cgit v1.2.3 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/screen_detach.py | 1 + plugins/test.py | 4 ++++ plugins/translate.py | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 plugins/translate.py (limited to 'plugins') diff --git a/plugins/screen_detach.py b/plugins/screen_detach.py index 6ebc77f2..6ee96896 100644 --- a/plugins/screen_detach.py +++ b/plugins/screen_detach.py @@ -1,3 +1,4 @@ +from plugin import BasePlugin import os import stat import pyinotify diff --git a/plugins/test.py b/plugins/test.py index fc7aedc6..13ba1e9c 100644 --- a/plugins/test.py +++ b/plugins/test.py @@ -1,5 +1,9 @@ +from plugin import BasePlugin + class Plugin(BasePlugin): def init(self): + self.add_command('plugintest', self.command_plugintest, 'Test command') + self.add_event_handler('message', self.on_message) self.core.information("Plugin loaded") def cleanup(self): 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 55d624c0ee0d96ee5706ccbeec91cdc6ffc0b5a7 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 25 Sep 2011 21:16:31 +0200 Subject: exec plugin --- plugins/exec.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 plugins/exec.py (limited to 'plugins') diff --git a/plugins/exec.py b/plugins/exec.py new file mode 100644 index 00000000..f7f451df --- /dev/null +++ b/plugins/exec.py @@ -0,0 +1,43 @@ +# A plugin that can execute a command and send the result in the conversation + +from plugin import BasePlugin +import os +import common +import shlex +import subprocess + +class Plugin(BasePlugin): + def init(self): + self.add_command('exec', self.command_exec, "Usage: /exec [-o|-O] \nExec: Execute a shell command and prints the result in the information buffer. The command should be ONE argument, that means it should be between \"\". The first argument (before the command) can be -o or -O. If -o is specified, it sends the result in the current conversation. If -O is specified, it sends the command and its result in the current conversation.\nExample: /exec -O \"uptime\" will send “uptime\n20:36:19 up 3:47, 4 users, load average: 0.09, 0.13, 0.09” in the current conversation.") + + def command_exec(self, args): + args = common.shell_split(args) + if len(args) == 1: + command = args[0] + arg = None + elif len(args) == 2: + command = args[1] + arg = args[0] + else: + self.core.command_help('exec') + return + try: + cut_command = shlex.split(command) + except Exception as e: + self.core.information('Failed to parse command: %s' % (e,), 'Error') + return + try: + process = subprocess.Popen(cut_command, stdout=subprocess.PIPE) + except OSError as e: + self.core.information('Failed to execute command: %s' % (e,), 'Error') + return + result = process.communicate()[0].decode('utf-8') + if arg and arg == '-o': + if not self.core.send_message('%s' % (result,)): + self.core.information('Cannot send result (%s), this is not a conversation tab' % result) + elif arg and arg == '-O': + if not self.core.send_message('%s:\n%s' % (command, result)): + self.core.information('Cannot send result (%s), this is not a conversation tab' % result) + else: + self.core.information('%s:\n%s' % (command, result), 'Info') + return -- 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/day_change.py | 31 +++++++++++++++++++++++++++++++ plugins/translate.py | 1 + 2 files changed, 32 insertions(+) create mode 100644 plugins/day_change.py (limited to 'plugins') diff --git a/plugins/day_change.py b/plugins/day_change.py new file mode 100644 index 00000000..cac69a75 --- /dev/null +++ b/plugins/day_change.py @@ -0,0 +1,31 @@ +from gettext import gettext as _ +from plugin import BasePlugin +import datetime +import tabs +import timed_events + +class Plugin(BasePlugin): + def init(self): + self.schedule_event() + + def cleanup(self): + self.core.remove_timed_event(self.next_event) + + def schedule_event(self): + day_change = datetime.datetime.combine(datetime.date.today(), datetime.time()) + day_change += datetime.timedelta(1) + self.next_event = timed_events.TimedEvent(day_change, self.day_change) + self.core.add_timed_event(self.next_event) + + def day_change(self): + msg = datetime.date.today().strftime(_("Day changed to %x")) + + for tab in self.core.tabs: + if (isinstance(tab, tabs.MucTab) or + isinstance(tab, tabs.PrivateTab) or + isinstance(tab, tabs.ConversationTab)): + room = tab.get_room() + room.add_message(msg) + + self.core.refresh_window() + self.schedule_event() 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') 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 From ed87f26db763432505072eb5a2875f30fc4061d1 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 1 Oct 2011 23:48:42 +0200 Subject: Added a connect() function to the plugins API, for internal event --- plugins/test.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugins') diff --git a/plugins/test.py b/plugins/test.py index 13ba1e9c..0d5cdb0a 100644 --- a/plugins/test.py +++ b/plugins/test.py @@ -5,10 +5,14 @@ class Plugin(BasePlugin): self.add_command('plugintest', self.command_plugintest, 'Test command') self.add_event_handler('message', self.on_message) self.core.information("Plugin loaded") + self.core.connect('enter', self.on_enter) def cleanup(self): self.core.information("Plugin unloaded") + def on_enter(self, line): + self.core.information('Text sent: {}'.format(line)) + def on_message(self, message): self.core.information("Test plugin received message: {}".format(message)) -- cgit v1.2.3 From 5050d775d9e1f117766e721168c2f35f981d7146 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 2 Oct 2011 13:22:13 +0200 Subject: Alias plugin. Fixes #1523 --- plugins/alias.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 plugins/alias.py (limited to 'plugins') diff --git a/plugins/alias.py b/plugins/alias.py new file mode 100644 index 00000000..eb596332 --- /dev/null +++ b/plugins/alias.py @@ -0,0 +1,40 @@ +from plugin import BasePlugin + +class Plugin(BasePlugin): + def init(self): + self.add_command('alias', self.command_alias, '/alias \nAlias: create an alias command') + self.add_command('unalias', self.command_unalias, '/unalias \nUnalias: remove a previously created alias') + self.commands = {} + + def command_alias(self, line): + arg = line.split() + if len(arg) < 2: + self.core.information('Alias: Not enough parameters', 'Error') + return + alias = arg[0] + command = arg[1] + post_args = ' '.join(arg[2:]) + + if alias in self.core.commands or alias in self.commands: + self.core.information('Alias: command already exists', 'Error') + return + self.commands[alias] = lambda args: self.get_command(command)(post_args+args) + self.add_command(alias, self.commands[alias], 'This command is an alias for /%s %s' % (command, post_args)) + self.core.information('Alias /%s successfuly created' % alias, 'Info') + + def command_unalias(self, alias): + if alias in self.commands: + del self.commands[alias] + self.del_command(alias) + self.core.information('Alias /%s successfuly deleted' % alias, 'Info') + + def get_command(self, name): + """Returns the function associated with a command""" + def dummy(args): + """Dummy function called if the command doesn’t exist""" + pass + if name in self.core.commands: + return self.core.commands[name][0] + elif name in self.core.current_tab().commands: + return self.core.current_tab().commands[name][0] + return dummy -- cgit v1.2.3 From b98880b5269764ad69bb19262790d27b2575b174 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sat, 29 Oct 2011 07:18:19 +0200 Subject: add the link plugin --- plugins/link.py | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 plugins/link.py (limited to 'plugins') diff --git a/plugins/link.py b/plugins/link.py new file mode 100644 index 00000000..0cd1a0f1 --- /dev/null +++ b/plugins/link.py @@ -0,0 +1,48 @@ +# A plugin that adds the /link command, letting you open links that are pasted +# in the conversation, without having to click them. + +import os +import re + +from plugin import BasePlugin, PluginConfig +from xhtml import clean_text +import common + +url_pattern = re.compile(r'\b(http[s]?://(?:\S+))\b', re.I|re.U) + +class Plugin(BasePlugin): + def init(self): + self.add_command('link', self.command_link, "Usage: /link\nLink: opens the last link from the conversation into a browser.") + + def find_link(self, nb): + messages = self.core.get_conversation_messages() + if not messages: + return None + for message in messages[::-1]: + match = url_pattern.search(clean_text(message.txt)) + if match: + self.core.information('[%s]' % (match.groups(),)) + for url in list(match.groups())[::-1]: + if nb == 1: + return url + else: + nb -= 1 + return None + + def command_link(self, args): + args = common.shell_split(args) + if len(args) == 1: + try: + nb = int(args[0]) + except: + return self.core.command_help('link') + else: + nb = 1 + link = self.find_link(nb) + if link: + self.core.exec_command('%s %s' % (self.config.get('browser', 'firefox'), link)) + else: + self.core.information('No URL found.', 'Warning') + + def cleanup(self): + del self.config -- cgit v1.2.3 From d608ccbd6d8d1d3dbbe8660d22b6a329df71da63 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sat, 29 Oct 2011 16:55:46 +0200 Subject: Remove the information() call in the link plugin --- plugins/link.py | 1 - 1 file changed, 1 deletion(-) (limited to 'plugins') diff --git a/plugins/link.py b/plugins/link.py index 0cd1a0f1..34f0a441 100644 --- a/plugins/link.py +++ b/plugins/link.py @@ -21,7 +21,6 @@ class Plugin(BasePlugin): for message in messages[::-1]: match = url_pattern.search(clean_text(message.txt)) if match: - self.core.information('[%s]' % (match.groups(),)) for url in list(match.groups())[::-1]: if nb == 1: return url -- cgit v1.2.3 From 21f0c8f3f348ca515b81208c73704d5fd7b10328 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sat, 29 Oct 2011 17:20:18 +0200 Subject: Fix the url matching in the link plugin --- plugins/link.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/link.py b/plugins/link.py index 34f0a441..8ef52982 100644 --- a/plugins/link.py +++ b/plugins/link.py @@ -19,9 +19,9 @@ class Plugin(BasePlugin): if not messages: return None for message in messages[::-1]: - match = url_pattern.search(clean_text(message.txt)) - if match: - for url in list(match.groups())[::-1]: + matches = url_pattern.findall(clean_text(message.txt)) + if matches: + for url in matches[::-1]: if nb == 1: return url else: -- cgit v1.2.3 From ece4949086ec4a6dce191136ebf48e86bd14f01e Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 29 Oct 2011 17:47:30 +0200 Subject: Add a plugin for /status aliases --- plugins/status.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 plugins/status.py (limited to 'plugins') diff --git a/plugins/status.py b/plugins/status.py new file mode 100644 index 00000000..7eb27cb5 --- /dev/null +++ b/plugins/status.py @@ -0,0 +1,21 @@ +from plugin import BasePlugin + +class Plugin(BasePlugin): + """ + Adds several convenient aliases to /status command + """ + def init(self): + self.add_command('dnd', lambda line: self.core.command_status('dnd '+line), + '/dnd [status message]\nDnd: Set your status as dnd (do not disturb).') + self.add_command('busy', lambda line: self.core.command_status('busy '+line), + '/busy [status message]\nBusy: Set your status as busy.') + self.add_command('chat', lambda line: self.core.command_status('chat '+line), + '/chat [status message]\nChat: Set your status as chatty.') + self.add_command('xa', lambda line: self.core.command_status('xa '+line), + '/xa [status message]\nXa: Set your status as xa (eXtended away).') + self.add_command('afk', lambda line: self.core.command_status('afk '+line), + '/afk [status message]\nAfk: Set your status as afk (away from keyboard).') + self.add_command('away', lambda line: self.core.command_status('away '+line), + '/away [status message]\nAway: Set your status as away.') + self.add_command('away', lambda line: self.core.command_status('away '+line), + '/available [status message]\nAvailable: Set your status as available.') -- cgit v1.2.3 From 2a9484a6800dc4d06a7c535b6fdf58f01e1abc00 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 6 Nov 2011 20:25:30 +0100 Subject: add a mpd plugin --- plugins/mpd_client.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 plugins/mpd_client.py (limited to 'plugins') diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py new file mode 100644 index 00000000..6298a729 --- /dev/null +++ b/plugins/mpd_client.py @@ -0,0 +1,27 @@ +# a plugin adding a command to manipulate an MPD instance + +from plugin import BasePlugin +from common import shell_split +import mpd + +class Plugin(BasePlugin): + def init(self): + self.add_command('mpd', self.command_mpd, "Usage: /mpd [full]\nMpd: sends a message showing the current song of an MPD instance. If full is provided, teh message is more verbose.", self.completion_mpd) + + def command_mpd(self, args): + args = shell_split(args) + c = mpd.MPDClient() + c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('host', '6600')) + + current = c.currentsong() + current_time = float(c.status()['elapsed']) + + s = '%(artist)s - %(title)s (%(album)s)' % current + if 'full' in args: + pourcentage = int(current_time / float(current['time']) * 10) + s += ' \x192[\x191' + '-'*(pourcentage-1) + '\x193+' + '\x191' + '-' * (10-pourcentage-1) + '\x192]\x19o' + if not self.core.send_message('%s' % (s,)): + self.core.information('Cannot send result (%s), this is not a conversation tab' % result) + + def completion_mpd(self, the_input): + return the_input.auto_completion(['full']) -- cgit v1.2.3 From d62a3a1b1bf2eda1186aa8bf94bd33c1b54c4d59 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 6 Nov 2011 20:29:46 +0100 Subject: mpd plugins now accepts a password and catches some errors. --- plugins/mpd_client.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index 6298a729..5207a0d6 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -10,9 +10,19 @@ class Plugin(BasePlugin): def command_mpd(self, args): args = shell_split(args) - c = mpd.MPDClient() + c = mpd.MPDClient() + try: c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('host', '6600')) - + except Exception as e: + self.core.information('%s' % (e,), 'Error') + return + password = self.config.get('password', '') + if password: + try: + c.password(password) + except Exception as e: + self.core.information('%s' % (e,), 'Error') + return current = c.currentsong() current_time = float(c.status()['elapsed']) -- cgit v1.2.3 From 9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 6 Nov 2011 20:31:19 +0100 Subject: typo --- plugins/mpd_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index 5207a0d6..a7690a9d 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -10,7 +10,7 @@ class Plugin(BasePlugin): def command_mpd(self, args): args = shell_split(args) - c = mpd.MPDClient() + c = mpd.MPDClient() try: c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('host', '6600')) except Exception as e: -- cgit v1.2.3 From 46ccf6a966123531d8e5c0e5891496b6cb829b94 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 6 Nov 2011 20:41:42 +0100 Subject: =?UTF-8?q?do=20not=20catch=20errors,=20actually,=20since=20there?= =?UTF-8?q?=E2=80=99s=20a=20bug=20in=20the=20mpd=20lib=20with=20python3=20?= =?UTF-8?q?that=20makes=20it=20impossible=20to=20catch.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/mpd_client.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'plugins') diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index a7690a9d..bfba7df0 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -11,18 +11,10 @@ class Plugin(BasePlugin): def command_mpd(self, args): args = shell_split(args) c = mpd.MPDClient() - try: c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('host', '6600')) - except Exception as e: - self.core.information('%s' % (e,), 'Error') - return password = self.config.get('password', '') if password: - try: - c.password(password) - except Exception as e: - self.core.information('%s' % (e,), 'Error') - return + c.password(password) current = c.currentsong() current_time = float(c.status()['elapsed']) -- cgit v1.2.3 From 840acd3bd4dcee91ca34c5b4e4c89ce5e78a56b4 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 6 Nov 2011 21:36:43 +0100 Subject: =?UTF-8?q?Actually=20use=20the=20port=20option=20for=20the=20port?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/mpd_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index bfba7df0..16255b86 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -11,7 +11,7 @@ class Plugin(BasePlugin): def command_mpd(self, args): args = shell_split(args) c = mpd.MPDClient() - c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('host', '6600')) + c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('port', '6600')) password = self.config.get('password', '') if password: c.password(password) -- cgit v1.2.3 From b7027e53474c208d7b772794fd34b30092bc4df1 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 6 Nov 2011 23:46:35 +0100 Subject: Super-useful figlet plugin --- plugins/figlet.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 plugins/figlet.py (limited to 'plugins') diff --git a/plugins/figlet.py b/plugins/figlet.py new file mode 100644 index 00000000..ccff687a --- /dev/null +++ b/plugins/figlet.py @@ -0,0 +1,11 @@ +from plugin import BasePlugin +import subprocess + +class Plugin(BasePlugin): + def init(self): + self.add_poezio_event_handler('muc_say', self.figletize) + + def figletize(self, msg): + process = subprocess.Popen(['figlet', msg['body']], stdout=subprocess.PIPE) + result = process.communicate()[0].decode('utf-8') + msg['body'] = result -- cgit v1.2.3 From 305e5ed40d129843a774f14990cf6f46d8c6e1a8 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 7 Nov 2011 19:59:12 +0100 Subject: Add a funny rainbow plugin, mainly to test some plugin hooks. --- plugins/rainbow.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 plugins/rainbow.py (limited to 'plugins') diff --git a/plugins/rainbow.py b/plugins/rainbow.py new file mode 100644 index 00000000..838c91f4 --- /dev/null +++ b/plugins/rainbow.py @@ -0,0 +1,19 @@ +from plugin import BasePlugin +import random + +possible_colors = list(range(256)) +# remove the colors that are almost white or almost black +for col in [16, 232, 233, 234, 235, 236, 237, 15, 231, 255, 254, 253, 252, 251]: + possible_colors.remove(col) + +def rand_color(): + return '\x19%s}' % (random.choice(possible_colors),) + +class Plugin(BasePlugin): + def init(self): + self.add_poezio_event_handler('muc_say', self.rainbowize) + self.add_poezio_event_handler('private_say', self.rainbowize) + self.add_poezio_event_handler('conversation_say', self.rainbowize) + + def rainbowize(self, msg): + msg['body'] = ''.join(['%s%s' % (rand_color(),char,) for char in msg['body']]) -- cgit v1.2.3 From d8865bcd45794259f384a003c4a330f7e967dc10 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 7 Nov 2011 23:32:21 +0100 Subject: Typo --- plugins/mpd_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index 16255b86..b56e0d7f 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -6,7 +6,7 @@ import mpd class Plugin(BasePlugin): def init(self): - self.add_command('mpd', self.command_mpd, "Usage: /mpd [full]\nMpd: sends a message showing the current song of an MPD instance. If full is provided, teh message is more verbose.", self.completion_mpd) + self.add_command('mpd', self.command_mpd, "Usage: /mpd [full]\nMpd: sends a message showing the current song of an MPD instance. If full is provided, the message is more verbose.", self.completion_mpd) def command_mpd(self, args): args = shell_split(args) -- cgit v1.2.3 From 934006e2e90f70009a6ff354ee4f4541cc5b47fc Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 7 Nov 2011 23:37:16 +0100 Subject: Activate figlet plugin in private and conversation tabs --- plugins/figlet.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins') diff --git a/plugins/figlet.py b/plugins/figlet.py index ccff687a..cf885352 100644 --- a/plugins/figlet.py +++ b/plugins/figlet.py @@ -4,6 +4,8 @@ import subprocess class Plugin(BasePlugin): def init(self): self.add_poezio_event_handler('muc_say', self.figletize) + self.add_poezio_event_handler('conversation_say', self.figletize) + self.add_poezio_event_handler('private_say', self.figletize) def figletize(self, msg): process = subprocess.Popen(['figlet', msg['body']], stdout=subprocess.PIPE) -- cgit v1.2.3 From 33997e43569fb2ea5944fa83812f19a484ce3c32 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 8 Nov 2011 00:14:44 +0100 Subject: Should fix day_change plugin --- plugins/day_change.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/day_change.py b/plugins/day_change.py index cac69a75..14924684 100644 --- a/plugins/day_change.py +++ b/plugins/day_change.py @@ -24,8 +24,7 @@ class Plugin(BasePlugin): if (isinstance(tab, tabs.MucTab) or isinstance(tab, tabs.PrivateTab) or isinstance(tab, tabs.ConversationTab)): - room = tab.get_room() - room.add_message(msg) + tab.add_message(msg) self.core.refresh_window() self.schedule_event() -- cgit v1.2.3 From 03999f1ef08036b7ea25e2239cf7b6bcdb4d76cc Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Tue, 8 Nov 2011 02:21:20 +0100 Subject: Make the rainbow plugin clean existing colors before adding the new colors. --- plugins/rainbow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/rainbow.py b/plugins/rainbow.py index 838c91f4..0f242027 100644 --- a/plugins/rainbow.py +++ b/plugins/rainbow.py @@ -1,4 +1,5 @@ from plugin import BasePlugin +import xhtml import random possible_colors = list(range(256)) @@ -16,4 +17,4 @@ class Plugin(BasePlugin): self.add_poezio_event_handler('conversation_say', self.rainbowize) def rainbowize(self, msg): - msg['body'] = ''.join(['%s%s' % (rand_color(),char,) for char in msg['body']]) + msg['body'] = ''.join(['%s%s' % (rand_color(),char,) for char in xhtml.clean_text(msg['body'])]) -- cgit v1.2.3