""" The command added by this plugin sends a message to someone when he next joins. Usage ----- This plugin defines two new commands for MUC tabs: :term:`/tell` and :term:`/untell`. .. glossary:: :sorted: /tell **Usage:** ``/tell `` Send *message* to *nick* at his next join. /untell **Usage:** ``/untell `` Cancel all scheduled messages to *nick*. """ from poezio.plugin import BasePlugin from poezio.core.structs import Completion from poezio.decorators import command_args_parser from poezio import tabs class Plugin(BasePlugin): def init(self): self.api.add_tab_command(tabs.MucTab, 'tell', self.command_tell, usage=' ', help='Will tell of when he next joins.', short='Send a message when someone joins') self.api.add_tab_command(tabs.MucTab, 'untell', self.command_untell, usage='', help='Remove the planned messages from /tell.', short='Cancel a /tell message', completion=self.completion_untell) self.api.add_event_handler('muc_join', self.on_join) # {tab -> {nick -> [messages]} self.tabs = {} def on_join(self, presence, tab): if not tab in self.tabs: return nick = presence['from'].resource if not nick in self.tabs[tab]: return for i in self.tabs[tab][nick]: tab.command_say("%s: %s" % (nick, i)) del self.tabs[tab][nick] @command_args_parser.quoted(2) def command_tell(self, args): """/tell """ if args is None: self.core.command.help('tell') return nick, msg = args tab = self.api.current_tab() if not tab in self.tabs: self.tabs[tab] = {} if not nick in self.tabs[tab]: self.tabs[tab][nick] = [] self.tabs[tab][nick].append(msg) self.api.information('Message for %s queued' % nick, 'Info') def command_untell(self, args): """/untell """ tab = self.api.current_tab() if not tab in self.tabs: return nick = args if not nick in self.tabs[tab]: return del self.tabs[tab][nick] self.api.information('Messages for %s unqueued' % nick, 'Info') def completion_untell(self, the_input): tab = self.api.current_tab() if not tab in self.tabs: return Completion(the_input.auto_completion, [], '') return Completion(the_input.auto_completion, list(self.tabs[tab]), '', quotify=False)