# -*- coding: utf-8 -*- # # Copyright (c) 2010 by Alexander Schremmer # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # # (this script requires WeeChat 0.3.0 or newer) # # History: # 2010-05-20, Alexander Schremmer # version 0.2: removed InfoList code # 2010-05-15, Alexander Schremmer # version 0.1: initial release import weechat as w import re SCRIPT_NAME = "postpone" SCRIPT_AUTHOR = "Alexander Schremmer " SCRIPT_VERSION = "0.2" SCRIPT_LICENSE = "GPL3" SCRIPT_DESC = "Postpones written messages for later dispatching if target nick is not on channel" postpone_data = {} def join_cb(data, signal, signal_data): server = signal.split(',')[0] # EFNet,irc_in_JOIN channel = signal_data.split(':')[-1] nick = re.match(':(?P.+)!', signal_data).groups()[0].lower() buffer = w.buffer_search("", "%s.%s" % (server, channel)) if server in postpone_data and channel in postpone_data[server] and\ nick in postpone_data[server][channel]: messages = postpone_data[server][channel][nick] for msg in messages: w.command(buffer, msg + " (This message has been postponed.)") messages[:] = [] return w.WEECHAT_RC_OK def channel_has_nick(server, channel, nick): buffer = w.buffer_search("", "%s.%s" % (server, channel)) return bool(w.nicklist_search_nick(buffer, "", nick)) def command_run_input(data, buffer, command): """ Function called when a command "/input xxxx" is run """ if command == "/input return": # As in enter was pressed. input_s = w.buffer_get_string(buffer, 'input') server = w.buffer_get_string(buffer, 'localvar_server') channel = w.buffer_get_string(buffer, 'localvar_channel') match = re.match(r'([\w-]+?): (.*)$', input_s) if match: nick, message = match.groups() if not channel_has_nick(server, channel, nick): w.prnt(buffer, "| Enqueued message for %s: %s" % (nick, message)) postpone_data.setdefault(server, {}).setdefault(channel, {}).setdefault(nick.lower(), []).append(input_s) w.buffer_set(buffer, 'input', "") # XXX why doesn't this work? i want to have the typed text # in the history #history_list = w.infolist_get("history", buffer, "") #history_item = w.infolist_new_item(history_list) #w.infolist_new_var_string(history_item, "text", input_s) return w.WEECHAT_RC_OK if w.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE, SCRIPT_DESC, "", ""): w.hook_command_run("/input return", "command_run_input", "") w.hook_signal('*,irc_in2_join', 'join_cb', '')