Mercurial > xib
view bridge.py @ 274:fa5375057658
fixed an UnboundLocalError in Bridge._xmpp_join_callback
Signed-off-by: Charly COSTE <changaco@changaco.net>
author | Charly COSTE <changaco@changaco.net> |
---|---|
date | Tue, 13 Apr 2010 11:46:02 +0200 |
parents | 7640a3feddf5 |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- # 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 <http://www.gnu.org/licenses/>. import re import threading import traceback import irclib import muc xmpp = muc.xmpp del muc from participant import Participant import say_levels class Bridge: modes = ['bypass', 'normal', 'limited', 'minimal'] class NoSuchParticipantException(Exception): pass def __init__(self, owner_bot, xmpp_room_jid, irc_room, irc_server, mode, say_level, irc_port=6667, irc_connection_interval=None, irc_charsets=None): """Create a new bridge.""" self.bot = owner_bot self.irc_server = irc_server self.irc_port = irc_port self.irc_room = irc_room.lower() self.irc_connection_interval = irc_connection_interval self.irc_charsets = irc_charsets self.irc_op = False self.xmpp_room_jid = xmpp_room_jid self.say_level = say_level self.participants = [] if mode not in self.__class__.modes: raise Exception('[Error] "'+mode+'" is not a correct value for a bridge\'s "mode" attribute') self.mode = mode self.stopped = False self.lock = threading.RLock() self.init2() def init2(self): self.reconnecting = False self.bot.error(say_levels.notice, 'starting bridge "'+str(self)+'" with mode="'+self.mode+'" and say_level="'+str(self.say_level)+'"') # Join XMPP room self.xmpp_room = xmpp.muc(self.xmpp_room_jid) self.xmpp_room.join(self.bot.xmpp_c, self.bot.nickname, callback=self._xmpp_join_callback) # Join IRC room self.irc_connection = self.bot.irc.open_connection(self.irc_server, self.irc_port, self.bot.nickname, delay=self.irc_connection_interval) self.irc_connection.connect(nick_callback=self._irc_nick_callback, charsets=self.irc_charsets) def _join_irc_failed(self, reason): self.bot.error(say_levels.error, 'failed to connect to the IRC chan of bridge '+str(self)+'\nreason: '+reason, send_to_admins=True) self.stop(message='Failed to connect to the IRC chan, stopping bridge', log=False) def _irc_nick_callback(self, error, arguments=None): if not error: if self.stopped: return self.irc_connection.join(self.irc_room, callback=self._irc_join_callback) else: self.stopped = True self.say(say_levels.error, 'failed to connect to the IRC chan, leaving ...', on_irc=False) if error in ['nicknameinuse', 'nickcollision']: reason = '"'+self.bot.nickname+'" is already used or reserved on the IRC server' elif error == 'erroneusnickname': reason = '"'+self.bot.nickname+'" got "erroneusnickname"' elif error == 'nicknametoolong': reason = '"'+self.bot.nickname+'" got "nicknametoolong", limit seems to be '+str(len(self.irc_connection.real_nickname)) else: reason = error self._join_irc_failed(reason) def _irc_join_callback(self, channel, error): if not error: self.bot.error(3, 'successfully joined IRC side of bridge "'+str(self)+'"', debug=True) self.say(say_levels.notice, 'bridge "'+str(self)+'" is running in '+self.mode+' mode', on_xmpp=False) if self.mode not in ['normal', 'bypass']: self.show_participants_list_on(protocols=['irc']) else: self._join_irc_failed(error) def _RemoteServerNotFound_handler(self): server = xmpp.protocol.JID(self.xmpp_room_jid).getDomain() bridges = self.bot.iter_bridges(patterns=[server]) m = 'The MUC server '+server+' seems to be down' self.bot.restart_bridges_delayed(bridges, 300, say_levels.warning, m) def _xmpp_join_callback(self, errors): """Called by muc._xmpp_presence_handler""" if len(errors) == 0: self.reconnecting = False if self.stopped: return self.bot.error(3, 'succesfully connected on XMPP side of bridge "'+str(self)+'"', debug=True) self.say(say_levels.notice, 'bridge "'+str(self)+'" is running in '+self.mode+' mode', on_irc=False) else: self.stopped = True self.say(say_levels.error, 'failed to connect to the XMPP room, leaving ...', on_xmpp=False) trace = '' for error in errors: try: raise error except xmpp.muc.RemoteServerNotFound: self._RemoteServerNotFound_handler() return except: trace += '\n'+traceback.format_exc().splitlines()[-1] self.bot.error(say_levels.error, 'failed to connect to the XMPP room of bridge "'+str(self)+'", stopping bridge'+trace, send_to_admins=True) self.stop(message='Failed to connect to the XMPP room, stopping bridge', log=False) def add_participant(self, from_protocol, nickname, real_jid=None): """Add a participant to the bridge.""" if (from_protocol == 'irc' and nickname == self.bot.nickname) or (from_protocol == 'xmpp' and nickname == self.bot.nickname): return try: p = self.get_participant(nickname) if p.protocol != from_protocol: if from_protocol == 'irc' and isinstance(p.irc_connection, irclib.ServerConnection) and p.irc_connection.channels.has_key(self.irc_room) and p.irc_connection.channels[self.irc_room].state >= irclib.JOINING or from_protocol == 'xmpp' and isinstance(p.muc, xmpp.muc) and p.muc.state >= p.muc.JOINING: return p p.set_both_sides() return p except self.NoSuchParticipantException: pass if nickname == 'ChanServ' and from_protocol == 'irc': return self.bot.error(3, 'adding participant "'+nickname+'" from "'+from_protocol+'" to bridge "'+str(self)+'"', debug=True) try: p = Participant(self, from_protocol, nickname, real_jid=real_jid) except: self.bot.error(say_levels.debug, 'unknown error while adding participant "'+nickname+'" from "'+from_protocol+'" to bridge "'+str(self)+'"\n'+traceback.format_exc()) return self.lock.acquire() self.participants.append(p) self.lock.release() if self.mode not in ['normal', 'bypass']: if from_protocol == 'xmpp': self.show_participants_list_on(protocols=['irc']) elif self.mode == 'minimal' and from_protocol == 'irc': self.show_participants_list_on(protocols=['xmpp']) return p def create_duplicates_on(self, protocols): for p in self.participants: if p.protocol == 'xmpp' and 'irc' in protocols: p.create_duplicate_on_irc() elif p.protocol == 'irc' and 'xmpp' in protocols: p.create_duplicate_on_xmpp() def change_mode(self, new_mode): if new_mode == self.mode: return 'Mode is already equal to '+self.mode old_mode = self.mode self.mode = new_mode unhandled = False if new_mode in ['normal', 'bypass']: if old_mode == 'limited': # From limited to {normal,bypass} self.create_duplicates_on(['irc']) elif old_mode in ['minimal', 'normal']: # From {minimal,normal} to {normal,bypass} self.create_duplicates_on(['irc', 'xmpp']) elif old_mode == 'bypass': # From bypass to normal pass # Handled below else: # Unhandled mode changing unhandled = True elif new_mode == 'limited': if old_mode == 'minimal': self.create_duplicates_on(['xmpp']) i = 0 for p in self.participants: if p.protocol == 'xmpp': i += 1 p._close_irc_connection('Bridge is switching to limited mode') self.show_participants_list_on(protocols=['irc']) elif new_mode == 'minimal': for p in self.participants: p.leave('Bridge is switching to minimal mode') else: # Unhandled mode changing unhandled = True if unhandled: self.mode = old_mode return 'Error: unhandled mode changing from '+self.mode+' to '+new_mode if old_mode == 'bypass': # From bypass to * for p in self.participants: if p.nickname != p.duplicate_nickname: p.leave('Bridge is switching to '+new_mode+' mode') self.say(say_levels.notice, 'Bridge is switching from '+old_mode+' to '+new_mode+' mode.', log=True) def get_participant(self, nickname): """Returns a participant object if there is a participant using nickname in the bridge. Raises a NoSuchParticipantException otherwise.""" self.lock.acquire() for p in self.participants: if nickname in [p.nickname, p.duplicate_nickname]: self.lock.release() return p self.lock.release() raise self.NoSuchParticipantException('there is no participant using the nickname "'+nickname+'" in this bridge') def get_participants_nicknames_list(self, protocols=['irc', 'xmpp']): """Returns a list of the nicknames of the bridge's participants that are connected on the XMPP side.""" self.lock.acquire() participants_nicknames = [] for p in self.participants: if p.protocol in protocols: participants_nicknames.append('"'+p.nickname+'"') self.lock.release() return participants_nicknames def has_participant(self, nickname): try: self.get_participant(nickname) return True except self.NoSuchParticipantException: return False def remove_participant(self, left_protocol, nickname, leave_message): """Remove the participant using nickname from the bridge. Raises a NoSuchParticipantException if nickname is not used in the bridge.""" was_on_both = None p = self.get_participant(nickname) if p.left: self.lock.acquire() self.participants.remove(p) del p self.lock.release() return if p.protocol == 'xmpp': if p.irc_connection == 'both': was_on_both = True if left_protocol == 'xmpp': p.protocol = 'irc' p.create_duplicate_on_xmpp() elif left_protocol == 'irc': p.create_duplicate_on_irc() else: if left_protocol == 'xmpp': was_on_both = False elif left_protocol == 'irc': # got disconnected somehow if isinstance(p.irc_connection, irclib.ServerConnection): if p.irc_connection.socket == 'closed': return p.irc_connection.join(self.irc_room) else: c = self.bot.irc.get_connection(self.irc_server, self.irc_port, p.duplicate_nickname) if not (c and c.channels.has_key(self.irc_room) and c.channels[self.irc_room].state <= irclib.LEAVING): p.create_duplicate_on_irc() return elif p.protocol == 'irc': if p.xmpp_c == 'both': was_on_both = True if left_protocol == 'irc': p.protocol = 'xmpp' p.create_duplicate_on_irc() elif left_protocol == 'xmpp': p.create_duplicate_on_xmpp() else: if left_protocol == 'irc': was_on_both = False elif left_protocol == 'xmpp': if isinstance(p.muc, xmpp.muc) and p.muc.state <= p.muc.LEAVING: return # got disconnected somehow if isinstance(p.xmpp_c, xmpp.client.Client): self.bot.reopen_xmpp_connection(p.xmpp_c) return else: raise Exception('[Internal Error] bad protocol') if was_on_both == True: self.bot.error(3, '"'+nickname+'" was on both sides of bridge "'+str(self)+'" but left '+left_protocol, debug=True) elif was_on_both == False: self.bot.error(3, 'removing participant "'+nickname+'" from bridge "'+str(self)+'"', debug=True) p.leave(leave_message) if left_protocol == 'xmpp': if self.mode not in ['normal', 'bypass']: self.show_participants_list_on(protocols=['irc']) elif left_protocol == 'irc': if self.mode == 'minimal': self.show_participants_list_on(protocols=['xmpp']) else: self.bot.error(say_levels.debug, 'Bad decision tree, p.protocol='+p.protocol+' left_protocol='+left_protocol+'\np.xmpp_c='+str(p.xmpp_c)+'\np.irc_connection='+str(p.irc_connection), send_to_admins=True) def restart(self, message='Restarting bridge', log=True): """Restart the bridge""" # Stop the bridge self.stop(message=message, log=log) # Recreate the bridge self.init2() def say(self, importance, message, on_irc=True, on_xmpp=True, log=False, send_to_admins=False): """Make the bot say something.""" if log or send_to_admins: self.bot.error(importance, message+' ('+str(self)+')', send_to_admins=send_to_admins) if importance != -1: message = self.bot.format_message(importance, message) if importance < self.say_level: return if on_xmpp: self._say_on_xmpp(message) if on_irc: self._say_on_irc(message) def say_on_behalf(self, nickname, message, on_protocol, action=False): if action: message = '* '+nickname+' '+message else: message = '<'+nickname+'> '+message if on_protocol == 'xmpp': self._say_on_xmpp(message) elif on_protocol == 'irc': self._say_on_irc(message) def _say_on_irc(self, message): try: self.irc_connection.privmsg(self.irc_room, message) except irclib.ServerNotConnectedError: bridges = self.bot.iter_bridges(irc_server=self.irc_server) self.bot.restart_bridges_delayed(bridges, 0, say_levels.error, 'Lost bot IRC connection', protocol='irc') def _say_on_xmpp(self, message): try: self.xmpp_room.say(message) except xmpp.muc.NotConnected: # TODO: implement a message queue to improve this if self.xmpp_room.state <= xmpp.muc.LEAVING: self.bot.error(say_levels.debug, 'Ignoring xmpp.muc.NotConnected exception because we are leaving ('+str(self)+')', send_to_admins=True) elif self.xmpp_room.state >= xmpp.muc.JOINING: self.bot.error(say_levels.debug, 'Dropping a message because we are not in the XMPP room yet ('+str(self)+')', send_to_admins=True) else: self.bot.restart(message='Lost bot XMPP connection') def show_participants_list_on(self, protocols=[]): if 'irc' in protocols and self.irc_connection.logged_in: xmpp_participants_nicknames = self.get_participants_nicknames_list(protocols=['xmpp']) self.say(say_levels.info, 'Participants on XMPP: '+' '.join(xmpp_participants_nicknames), on_xmpp=False) if 'xmpp' in protocols: irc_participants_nicknames = self.get_participants_nicknames_list(protocols=['irc']) self.say(say_levels.info, 'Participants on IRC: '+' '.join(irc_participants_nicknames), on_irc=False) def soft_restart(self, message='Softly restarting bridge', log=True): """Make the bot leave and rejoin, avoid presence flood but can leave ghosts""" if log: self.bot.error(-1, message+' '+str(self), send_to_admins=True) # Leave if isinstance(self.irc_connection, irclib.ServerConnection) and isinstance(self.xmpp_room, xmpp.muc): try: self.irc_connection.part(self.irc_room, message=message) except irclib.UnknownChannel: pass self.xmpp_room.leave(message=message) else: self.stop() self.init2() return # Rejoin self.irc_connection.join(self.irc_room, callback=self._irc_join_callback) self.xmpp_room.rejoin(callback=self._xmpp_join_callback) def stop(self, message='Stopping bridge', log=True): """Stop the bridge""" if log: self.bot.error(-1, message+' '+str(self), send_to_admins=True) # Close IRC connection if not used by an other bridge, just leave the room otherwise if isinstance(self.irc_connection, irclib.ServerConnection): self.irc_connection.used_by -= 1 if self.irc_connection.used_by < 1: self.irc_connection.close(message) else: try: self.irc_connection.part(self.irc_room, message=message) except irclib.UnknownChannel: pass self.irc_connection = None # Leave the MUC if isinstance(self.xmpp_room, xmpp.muc): self.xmpp_room.leave(message=message) self.xmpp_room.__del__() self.xmpp_room = None # Delete participants objects for p in self.participants: p.leave(message) self.participants = [] def __str__(self): return self.irc_room+'@'+self.irc_server+' <-> '+self.xmpp_room_jid def __del__(self): self.stop(message='Removing bridge')