Mercurial > xib
annotate start_bots_from_xml_config.py @ 155:63db565438bd
fixed the halt command
Signed-off-by: Charly COSTE <changaco@changaco.net>
author | Charly COSTE <changaco@changaco.net> |
---|---|
date | Sun, 17 Jan 2010 23:24:00 +0100 |
parents | e0eea72ea493 |
children | c021656e4c54 |
rev | line source |
---|---|
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
1 #!/usr/bin/env python |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
2 # -*- coding: utf-8 -*- |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
3 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
4 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
5 # *** LICENSE *** |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
6 # This program is free software: you can redistribute it and/or modify |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
7 # it under the terms of the GNU General Public License as published by |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
8 # the Free Software Foundation, either version 3 of the License, or |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
9 # (at your option) any later version. |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
10 # |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
11 # This program is distributed in the hope that it will be useful, |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
14 # GNU General Public License for more details. |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
15 # |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
16 # You should have received a copy of the GNU General Public License |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
18 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
19 |
124 | 20 from xml.dom.minidom import parse |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
21 from time import sleep |
13
a9077fa9cac9
Added optional parameter to start_bots_from_xml_config.py
Charly COSTE <changaco@changaco.net>
parents:
0
diff
changeset
|
22 import sys |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
23 import traceback |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
24 |
124 | 25 from bot import Bot |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
26 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
27 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
28 try: |
13
a9077fa9cac9
Added optional parameter to start_bots_from_xml_config.py
Charly COSTE <changaco@changaco.net>
parents:
0
diff
changeset
|
29 if len(sys.argv) > 1: |
a9077fa9cac9
Added optional parameter to start_bots_from_xml_config.py
Charly COSTE <changaco@changaco.net>
parents:
0
diff
changeset
|
30 config = parse(sys.argv[1]) |
a9077fa9cac9
Added optional parameter to start_bots_from_xml_config.py
Charly COSTE <changaco@changaco.net>
parents:
0
diff
changeset
|
31 else: |
a9077fa9cac9
Added optional parameter to start_bots_from_xml_config.py
Charly COSTE <changaco@changaco.net>
parents:
0
diff
changeset
|
32 config = parse('config.xml') |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
33 except IOError: |
19
c1b84196c100
Changed format of non-debug error messages, fixed IRC namreply handling, prevented crash when receiving bad XMPP stanza.
Charly COSTE <changaco@changaco.net>
parents:
17
diff
changeset
|
34 print '[Error] configuration file is missing or cannot be read' |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
35 quit(1) |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
36 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
37 bots_jids = [] |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
38 for bot_el in config.getElementsByTagName('bot'): |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
39 if bot_el.getAttribute('jid') in bots_jids: |
19
c1b84196c100
Changed format of non-debug error messages, fixed IRC namreply handling, prevented crash when receiving bad XMPP stanza.
Charly COSTE <changaco@changaco.net>
parents:
17
diff
changeset
|
40 print '[Error] you cannot have two bots using the same JID' |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
41 quit(2) |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
42 bots_jids.append(bot_el.getAttribute('jid')) |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
43 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
44 |
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
45 try: |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
46 bots = [] |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
47 for bot_el in config.getElementsByTagName('bot'): |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
48 debug = False |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
49 if bot_el.hasAttribute('debug'): |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
50 if bot_el.getAttribute('debug') == 'true': |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
51 debug = True |
86
bfa32b017fc9
First hack at an error notification system
Charly COSTE <changaco@changaco.net>
parents:
21
diff
changeset
|
52 admins_jid = [] |
bfa32b017fc9
First hack at an error notification system
Charly COSTE <changaco@changaco.net>
parents:
21
diff
changeset
|
53 for admin_el in bot_el.getElementsByTagName('admin'): |
bfa32b017fc9
First hack at an error notification system
Charly COSTE <changaco@changaco.net>
parents:
21
diff
changeset
|
54 if admin_el.hasAttribute('jid'): |
bfa32b017fc9
First hack at an error notification system
Charly COSTE <changaco@changaco.net>
parents:
21
diff
changeset
|
55 admins_jid.append(admin_el.getAttribute('jid')) |
124 | 56 bot = Bot(bot_el.getAttribute('jid'), bot_el.getAttribute('password'), bot_el.getAttribute('nickname'), admins_jid=admins_jid, debug=debug) |
57 bots.append(bot) | |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
58 for bridge_el in bot_el.getElementsByTagName('bridge'): |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
59 xmpp_room = bridge_el.getElementsByTagName('xmpp-room')[0] |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
60 irc = bridge_el.getElementsByTagName('irc')[0] |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
61 |
150
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
62 irc_connection_interval = 1 |
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
63 if irc.hasAttribute('connection_interval'): |
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
64 try: |
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
65 irc_connection_interval = float(irc.getAttribute('connection_interval')) |
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
66 except ValueError: |
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
67 print '[Error] the value of connection_interval must be a number' |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
68 |
21
801160b4136f
Introduced a bridge's "say" attribute to offer more flexibility in what the bot says.
Charly COSTE <changaco@changaco.net>
parents:
19
diff
changeset
|
69 if bridge_el.hasAttribute('say_level'): |
801160b4136f
Introduced a bridge's "say" attribute to offer more flexibility in what the bot says.
Charly COSTE <changaco@changaco.net>
parents:
19
diff
changeset
|
70 say_level = bridge_el.getAttribute('say_level') |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
71 else: |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
72 say_level = 'all' |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
73 |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
74 if bridge_el.hasAttribute('mode'): |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
75 mode = bridge_el.getAttribute('mode') |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
76 else: |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
77 mode = 'normal' |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
78 |
150
e0eea72ea493
new bridge attribute "irc_connection_interval" (in seconds)
Charly COSTE <changaco@changaco.net>
parents:
124
diff
changeset
|
79 bot.new_bridge(xmpp_room.getAttribute('jid'), irc.getAttribute('chan'), irc.getAttribute('server'), mode, say_level, irc_connection_interval=irc_connection_interval) |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
80 |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
81 |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
82 if len(bots) == 0: |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
83 print 'No bots in the configuration file, exiting ...' |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
84 exit(0) |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
85 |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
86 while True: |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
87 for bot in bots: |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
88 if len(bot.xmpp_connections) == 0: |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
89 bots.remove(bot) |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
90 if len(bots) == 0: |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
91 raise Exception() |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
92 sleep(10) |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
93 except: |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
94 if len(bots) == 0: |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
95 print 'All bots have been shut down, exiting ...' |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
96 exit(0) |
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
97 |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
98 for bot in bots: |
155
63db565438bd
fixed the halt command
Charly COSTE <changaco@changaco.net>
parents:
150
diff
changeset
|
99 bots.remove(bot) |
17
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
100 del bot |
32a35f7eff70
Rewrote/modified many things, multiple bridges should now work and are preferred over multiple bots.
Charly COSTE <changaco@changaco.net>
parents:
13
diff
changeset
|
101 traceback.print_exc() |
0
4c842d23d4ce
Initial commit, version 0.1
Charly COSTE <changaco@changaco.net>
parents:
diff
changeset
|
102 quit(3) |