Mercurial > xib
view start_bots_from_xml_config.py @ 93:c95fe0b319d9
XMPP kick and ban handling
Signed-off-by: Charly COSTE <changaco@changaco.net>
author | Charly COSTE <changaco@changaco.net> |
---|---|
date | Tue, 22 Sep 2009 23:22:46 +0200 |
parents | bfa32b017fc9 |
children | 99f3dee1fad7 |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- # *** LICENSE *** # 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/>. from bot import bot from time import sleep from xml.dom.minidom import parse import sys import traceback try: if len(sys.argv) > 1: config = parse(sys.argv[1]) else: config = parse('config.xml') except IOError: print '[Error] configuration file is missing or cannot be read' quit(1) bots_jids = [] for bot_el in config.getElementsByTagName('bot'): if bot_el.getAttribute('jid') in bots_jids: print '[Error] you cannot have two bots using the same JID' quit(2) bots_jids.append(bot_el.getAttribute('jid')) try: bots = [] for bot_el in config.getElementsByTagName('bot'): debug = False if bot_el.hasAttribute('debug'): if bot_el.getAttribute('debug') == 'true': debug = True admins_jid = [] for admin_el in bot_el.getElementsByTagName('admin'): if admin_el.hasAttribute('jid'): admins_jid.append(admin_el.getAttribute('jid')) bot_ = bot(bot_el.getAttribute('jid'), bot_el.getAttribute('password'), bot_el.getAttribute('nickname'), admins_jid=admins_jid, debug=debug) bots.append(bot_) for bridge_el in bot_el.getElementsByTagName('bridge'): xmpp_room = bridge_el.getElementsByTagName('xmpp-room')[0] irc = bridge_el.getElementsByTagName('irc')[0] say_level = 'all' if bridge_el.hasAttribute('say_level'): say_level = bridge_el.getAttribute('say_level') if bridge_el.hasAttribute('mode'): mode = bridge_el.getAttribute('mode') else: mode = 'normal' bridge_ = bot_.new_bridge(xmpp_room.getAttribute('jid'), irc.getAttribute('chan'), irc.getAttribute('server'), mode, say_level) while True: sleep(1) except: for bot in bots: del bot traceback.print_exc() quit(3)