]> jfr.im git - erebus.git/blame - erebus.py
trivia bugfixes
[erebus.git] / erebus.py
CommitLineData
b25d4368 1#!/usr/bin/python
2
931c88a4 3# Erebus IRC bot - Author: John Runyon
4# main startup code
5
b25d4368 6#TODO: tons
7
4fa1118b 8import os, sys, select, MySQLdb, MySQLdb.cursors, time
db50981b 9import bot, config, ctlmod
b25d4368 10
11class Erebus(object):
49a455aa 12 bots = {}
13 fds = {}
e4a4c762 14 numhandlers = {}
49a455aa 15 msghandlers = {}
9557ee54 16 chanhandlers = {}
b2a896c8 17 users = {}
18 chans = {}
49a455aa 19
20 class User(object):
49a455aa 21 def __init__(self, nick, auth=None):
22 self.nick = nick
b2a896c8 23 self.auth = auth
676b2a85 24 self.checklevel()
a4eacae2 25
5477b368 26 self.chans = []
27
b2a896c8 28 def isauthed(self):
29 return self.auth is not None
30
49a455aa 31 def authed(self, auth):
de89db13 32 if auth == '0': self.auth = None
33 else: self.auth = auth.lower()
49a455aa 34 self.checklevel()
a4eacae2 35
676b2a85 36 def checklevel(self):
37 if self.auth is None:
839d2b35 38 self.glevel = -1
676b2a85 39 else:
40 c = main.db.cursor()
4fa1118b 41 if c.execute("SELECT level FROM users WHERE auth = %s", (self.auth,)):
42 row = c.fetchone()
43 if row is not None:
44 self.glevel = row['level']
45 else:
46 self.glevel = 0
676b2a85 47 else:
839d2b35 48 self.glevel = 0
49 return self.glevel
43b98e4e 50
5477b368 51 def join(self, chan):
52 self.chans.append(chan)
53 def part(self, chan):
54 self.chans.remove(chan)
c695f740 55 def quit(self):
56 for chan in self.chans:
57 self.chans.remove(chan)
5477b368 58
49a455aa 59 def __str__(self): return self.nick
839d2b35 60 def __repr__(self): return "<User %r (%d)>" % (self.nick,self.glevel)
43b98e4e 61
49a455aa 62 class Channel(object):
586997a7 63 def __init__(self, name, bot):
49a455aa 64 self.name = name
5477b368 65 self.bot = bot
586997a7 66 self.levels = {}
5477b368 67
68 self.users = []
69 self.voices = []
70 self.ops = []
a4eacae2 71
586997a7 72 c = main.db.cursor()
4fa1118b 73 if c.execute("SELECT user, level FROM chusers WHERE chan = %s", (self.name,)):
586997a7 74 row = c.fetchone()
4fa1118b 75 while row is not None:
76 self.levels[row['user']] = row['level']
77 row = c.fetchone()
586997a7 78
79
80 def levelof(self, auth):
81 auth = auth.lower()
82 if auth in self.levels:
83 return self.levels[auth]
84 else:
85 return 0
86
87 def setlevel(self, auth, level, savetodb=True):
88 auth = auth.lower()
89 if savetodb:
90 c = main.db.cursor()
4fa1118b 91 if c.execute("REPLACE INTO chusers (chan, user, level) VALUES (%s, %s, %s)", (self.name, auth, level)):
92 self.levels[auth] = level
93 return True
94 else:
95 return False
586997a7 96
49a455aa 97 def userjoin(self, user, level=None):
98 if user not in self.users: self.users.append(user)
99 if level == 'op' and user not in self.ops: self.ops.append(user)
100 if level == 'voice' and user not in self.voices: self.voices.append(user)
101 def userpart(self, user):
102 if user in self.ops: self.ops.remove(user)
103 if user in self.voices: self.voices.remove(user)
104 if user in self.users: self.users.remove(user)
a4eacae2 105
49a455aa 106 def userop(self, user):
107 if user in self.users and user not in self.ops: self.ops.append(user)
108 def uservoice(self, user):
109 if user in self.users and user not in self.voices: self.voices.append(user)
110 def userdeop(self, user):
111 if user in self.ops: self.ops.remove(user)
112 def userdevoice(self, user):
113 if user in self.voices: self.voices.remove(user)
114
115 def __str__(self): return self.name
116 def __repr__(self): return "<Channel %r>" % (self.name)
117
b2a896c8 118 def __init__(self, trigger):
119 self.trigger = trigger
fd96a423 120 if os.name == "posix":
121 self.potype = "poll"
122 self.po = select.poll()
123 else: # f.e. os.name == "nt" (Windows)
124 self.potype = "select"
125 self.fdlist = []
49a455aa 126
5477b368 127 def newbot(self, nick, user, bind, server, port, realname):
49a455aa 128 if bind is None: bind = ''
5477b368 129 obj = bot.Bot(self, nick, user, bind, server, port, realname)
49a455aa 130 self.bots[nick.lower()] = obj
a4eacae2 131
49a455aa 132 def newfd(self, obj, fileno):
49a455aa 133 self.fds[fileno] = obj
fd96a423 134 if self.potype == "poll":
135 self.po.register(fileno, select.POLLIN)
136 elif self.potype == "select":
137 self.fdlist.append(fileno)
a4eacae2 138
43b98e4e 139 def bot(self, name): #get Bot() by name (nick)
49a455aa 140 return self.bots[name.lower()]
43b98e4e 141 def fd(self, fileno): #get Bot() by fd/fileno
49a455aa 142 return self.fds[fileno]
8af0407d 143 def randbot(self): #get Bot() randomly
144 for b in self.bots.itervalues(): return b #TODO
49a455aa 145
c695f740 146 def user(self, _nick, justjoined=False):
147 nick = _nick.lower()
b2a896c8 148 if nick in self.users:
149 return self.users[nick]
150 else:
c695f740 151 user = self.User(_nick)
b2a896c8 152 self.users[nick] = user
8af0407d 153
154 if justjoined:
fadbf980 155 self.randbot().conn.send("WHO %s n%%ant,2" % (nick))
8af0407d 156
b2a896c8 157 return user
5477b368 158 def channel(self, name): #get Channel() by name
159 if name.lower() in self.chans:
160 return self.chans[name.lower()]
161 else:
162 return None
163
586997a7 164 def newchannel(self, bot, name):
165 chan = self.Channel(name.lower(), bot)
5477b368 166 self.chans[name.lower()] = chan
167 return chan
49a455aa 168
169 def poll(self):
fd96a423 170 if self.potype == "poll":
171 return [fd for (fd, ev) in self.po.poll()]
172 elif self.potype == "select":
173 return select.select(self.fdlist, [], [])[0]
49a455aa 174
175 def connectall(self):
176 for bot in self.bots.itervalues():
177 if bot.conn.state == 0:
178 bot.connect()
179
fadbf980 180 def module(self, name):
181 return ctlmod.modules[name]
182
49a455aa 183 #bind functions
db50981b 184 def hook(self, word, handler):
e4a4c762 185 try:
186 self.msghandlers[word].append(handler)
187 except:
188 self.msghandlers[word] = [handler]
189 def unhook(self, word, handler):
190 if word in self.msghandlers and handler in self.msghandlers[word]:
191 self.msghandlers[word].remove(handler)
db50981b 192 def hashook(self, word):
e4a4c762 193 return word in self.msghandlers and len(self.msghandlers[word]) != 0
db50981b 194 def gethook(self, word):
195 return self.msghandlers[word]
b25d4368 196
e4a4c762 197 def hooknum(self, word, handler):
198 try:
199 self.numhandlers[word].append(handler)
200 except:
201 self.numhandlers[word] = [handler]
202 def unhooknum(self, word, handler):
203 if word in self.numhandlers and handler in self.numhandlers[word]:
204 self.numhandlers[word].remove(handler)
205 def hasnumhook(self, word):
206 return word in self.numhandlers and len(self.numhandlers[word]) != 0
207 def getnumhook(self, word):
208 return self.numhandlers[word]
209
2a1a69a6 210 def hookchan(self, chan, handler):
211 try:
9557ee54 212 self.chanhandlers[chan].append(handler)
2a1a69a6 213 except:
9557ee54 214 self.chanhandlers[chan] = [handler]
2a1a69a6 215 def unhookchan(self, chan, handler):
216 if chan in self.chanhandlers and handler in self.chanhandlers[chan]:
217 self.chanhandlers[chan].remove(handler)
218 def haschanhook(self, chan):
219 return chan in self.chanhandlers and len(self.chanhandlers[chan]) != 0
220 def getchanhook(self, chan):
221 return self.chanhandlers[chan]
586997a7 222
223
de89db13 224class MyCursor(MySQLdb.cursors.DictCursor):
225 def execute(self, *args, **kwargs):
226 print "[SQL] [#] MyCursor.execute(self, %s, %s)" % (', '.join([repr(i) for i in args]), ', '.join([str(key)+"="+repr(kwargs[key]) for key in kwargs]))
227 try:
228 super(self.__class__, self).execute(*args, **kwargs)
229 except MySQLdb.MySQLError as e:
230 print "[SQL] [!] MySQL error! %r" % (e)
4fa1118b 231 dbsetup()
232 return False
233 return True
de89db13 234
235
236def dbsetup():
4fa1118b 237 main.db = None
de89db13 238 main.db = MySQLdb.connect(host=cfg.dbhost, user=cfg.dbuser, passwd=cfg.dbpass, db=cfg.dbname, cursorclass=MyCursor)
586997a7 239
b25d4368 240def setup():
db50981b 241 global cfg, main
242
243 cfg = config.Config('bot.config')
b2a896c8 244 main = Erebus(cfg.trigger)
db50981b 245
246 autoloads = [mod for mod, yes in cfg.items('autoloads') if int(yes) == 1]
247 for mod in autoloads:
d431e543 248 print "Loading %s" % (mod)
db50981b 249 ctlmod.load(main, mod)
250
de89db13 251 dbsetup()
a12f7519 252 c = main.db.cursor()
4fa1118b 253 if c.execute("SELECT nick, user, bind FROM bots WHERE active = 1"):
254 rows = c.fetchall()
255 c.close()
256 for row in rows:
257 main.newbot(row['nick'], row['user'], row['bind'], cfg.host, cfg.port, cfg.realname)
a12f7519 258 main.connectall()
b25d4368 259
260def loop():
49a455aa 261 poready = main.poll()
fd96a423 262 for fileno in poready:
d1ea2946 263 for line in main.fd(fileno).getdata():
264 main.fd(fileno).parse(line)
b25d4368 265
266if __name__ == '__main__':
267 setup()
49a455aa 268 while True: loop()