]> jfr.im git - erebus.git/blame - erebus.py
TODO
[erebus.git] / erebus.py
CommitLineData
b25d4368 1#!/usr/bin/python
4477123d 2# vim: fileencoding=utf-8
b25d4368 3
931c88a4 4# Erebus IRC bot - Author: John Runyon
5# main startup code
6
a28e2ae9 7from __future__ import print_function
8
2ffef3ff 9import os, sys, select, MySQLdb, MySQLdb.cursors, time, random, gc
db50981b 10import bot, config, ctlmod
b25d4368 11
a8553c45 12class Erebus(object): #singleton to pass around
134c1193 13 APIVERSION = 0
a76c4bd8 14 RELEASE = 0
15
49a455aa 16 bots = {}
17 fds = {}
e4a4c762 18 numhandlers = {}
49a455aa 19 msghandlers = {}
9557ee54 20 chanhandlers = {}
b2a896c8 21 users = {}
22 chans = {}
49a455aa 23
24 class User(object):
49a455aa 25 def __init__(self, nick, auth=None):
26 self.nick = nick
b2a896c8 27 self.auth = auth
676b2a85 28 self.checklevel()
a4eacae2 29
5477b368 30 self.chans = []
31
e80bf7de 32 def msg(self, *args, **kwargs):
e64ac4a0 33 main.randbot().msg(self, *args, **kwargs)
2bb267e0 34 def slowmsg(self, *args, **kwargs):
35 main.randbot().slowmsg(self, *args, **kwargs)
e64ac4a0 36 def fastmsg(self, *args, **kwargs):
37 main.randbot().fastmsg(self, *args, **kwargs)
e80bf7de 38
b2a896c8 39 def isauthed(self):
40 return self.auth is not None
41
49a455aa 42 def authed(self, auth):
de89db13 43 if auth == '0': self.auth = None
44 else: self.auth = auth.lower()
49a455aa 45 self.checklevel()
a4eacae2 46
676b2a85 47 def checklevel(self):
48 if self.auth is None:
839d2b35 49 self.glevel = -1
676b2a85 50 else:
2729abc8 51 c = main.query("SELECT level FROM users WHERE auth = %s", (self.auth,))
52 if c:
4fa1118b 53 row = c.fetchone()
54 if row is not None:
55 self.glevel = row['level']
56 else:
57 self.glevel = 0
676b2a85 58 else:
839d2b35 59 self.glevel = 0
60 return self.glevel
43b98e4e 61
5477b368 62 def join(self, chan):
84b7c247 63 if chan not in self.chans: self.chans.append(chan)
5477b368 64 def part(self, chan):
3d724d3a 65 try:
66 self.chans.remove(chan)
67 except: pass
d53d073b 68 return len(self.chans) == 0
c695f740 69 def quit(self):
d53d073b 70 pass
124f114c 71 def nickchange(self, newnick):
e80bf7de 72 self.nick = newnick
5477b368 73
49a455aa 74 def __str__(self): return self.nick
71ef8273 75 def __repr__(self): return "<User %r (%d)>" % (self.nick, self.glevel)
43b98e4e 76
49a455aa 77 class Channel(object):
586997a7 78 def __init__(self, name, bot):
49a455aa 79 self.name = name
5477b368 80 self.bot = bot
586997a7 81 self.levels = {}
5477b368 82
83 self.users = []
84 self.voices = []
85 self.ops = []
a4eacae2 86
2729abc8 87 c = main.query("SELECT user, level FROM chusers WHERE chan = %s", (self.name,))
88 if c:
586997a7 89 row = c.fetchone()
4fa1118b 90 while row is not None:
91 self.levels[row['user']] = row['level']
92 row = c.fetchone()
586997a7 93
94
fd52fb16 95 def msg(self, *args, **kwargs):
e64ac4a0 96 self.bot.msg(self, *args, **kwargs)
2bb267e0 97 def slowmsg(self, *args, **kwargs):
98 self.bot.slowmsg(self, *args, **kwargs)
e64ac4a0 99 def fastmsg(self, *args, **kwargs):
100 self.bot.fastmsg(self, *args, **kwargs)
fd52fb16 101
586997a7 102 def levelof(self, auth):
a9ce8d6a 103 if auth is None:
104 return 0
586997a7 105 auth = auth.lower()
106 if auth in self.levels:
107 return self.levels[auth]
108 else:
109 return 0
110
111 def setlevel(self, auth, level, savetodb=True):
112 auth = auth.lower()
113 if savetodb:
2729abc8 114 c = main.query("REPLACE INTO chusers (chan, user, level) VALUES (%s, %s, %s)", (self.name, auth, level))
115 if c:
4fa1118b 116 self.levels[auth] = level
117 return True
118 else:
119 return False
586997a7 120
49a455aa 121 def userjoin(self, user, level=None):
122 if user not in self.users: self.users.append(user)
123 if level == 'op' and user not in self.ops: self.ops.append(user)
124 if level == 'voice' and user not in self.voices: self.voices.append(user)
125 def userpart(self, user):
126 if user in self.ops: self.ops.remove(user)
127 if user in self.voices: self.voices.remove(user)
128 if user in self.users: self.users.remove(user)
a4eacae2 129
49a455aa 130 def userop(self, user):
131 if user in self.users and user not in self.ops: self.ops.append(user)
132 def uservoice(self, user):
133 if user in self.users and user not in self.voices: self.voices.append(user)
134 def userdeop(self, user):
135 if user in self.ops: self.ops.remove(user)
136 def userdevoice(self, user):
137 if user in self.voices: self.voices.remove(user)
138
139 def __str__(self): return self.name
140 def __repr__(self): return "<Channel %r>" % (self.name)
141
c0eee1b4 142 def __init__(self, cfg):
2a44c0cd 143 self.mustquit = None
fc16e064 144 self.starttime = time.time()
c0eee1b4 145 self.cfg = cfg
146 self.trigger = cfg.trigger
fd96a423 147 if os.name == "posix":
148 self.potype = "poll"
149 self.po = select.poll()
150 else: # f.e. os.name == "nt" (Windows)
151 self.potype = "select"
152 self.fdlist = []
49a455aa 153
2729abc8 154 def query(self, *args, **kwargs):
c728e51c 155 if 'noretry' in kwargs:
156 noretry = kwargs['noretry']
157 del kwargs['noretry']
2729abc8 158 else:
c728e51c 159 noretry = False
2729abc8 160
161 self.log("[SQL]", "?", "query(%s, %s)" % (', '.join([repr(i) for i in args]), ', '.join([str(key)+"="+repr(kwargs[key]) for key in kwargs])))
162 try:
163 curs = self.db.cursor()
164 res = curs.execute(*args, **kwargs)
165 if res:
166 return curs
167 else:
168 return res
169 except MySQLdb.MySQLError as e:
170 self.log("[SQL]", "!", "MySQL error! %r" % (e))
c728e51c 171 if not noretry:
2729abc8 172 dbsetup()
c728e51c 173 return self.query(*args, noretry=True, **kwargs)
2729abc8 174 else:
175 raise e
176
c728e51c 177 def querycb(self, cb, *args, **kwargs):
178 def run_query():
179 cb(self.query(*args, **kwargs))
180 threading.Thread(target=run_query).start()
181
0af282c6 182 def newbot(self, nick, user, bind, authname, authpass, server, port, realname):
49a455aa 183 if bind is None: bind = ''
0af282c6 184 obj = bot.Bot(self, nick, user, bind, authname, authpass, server, port, realname)
49a455aa 185 self.bots[nick.lower()] = obj
a4eacae2 186
49a455aa 187 def newfd(self, obj, fileno):
49a455aa 188 self.fds[fileno] = obj
fd96a423 189 if self.potype == "poll":
190 self.po.register(fileno, select.POLLIN)
191 elif self.potype == "select":
192 self.fdlist.append(fileno)
a4eacae2 193
43b98e4e 194 def bot(self, name): #get Bot() by name (nick)
49a455aa 195 return self.bots[name.lower()]
43b98e4e 196 def fd(self, fileno): #get Bot() by fd/fileno
49a455aa 197 return self.fds[fileno]
8af0407d 198 def randbot(self): #get Bot() randomly
71ef8273 199 return self.bots[random.choice(list(self.bots.keys()))]
49a455aa 200
3d724d3a 201 def user(self, _nick, justjoined=False, create=True):
c695f740 202 nick = _nick.lower()
b2a896c8 203 if nick in self.users:
204 return self.users[nick]
3d724d3a 205 elif create:
c695f740 206 user = self.User(_nick)
b2a896c8 207 self.users[nick] = user
8af0407d 208
209 if justjoined:
d53d073b 210 self.randbot().conn.send("WHO %s n%%ant,1" % (nick))
8af0407d 211
b2a896c8 212 return user
3d724d3a 213 else:
214 return None
5477b368 215 def channel(self, name): #get Channel() by name
216 if name.lower() in self.chans:
217 return self.chans[name.lower()]
218 else:
219 return None
220
586997a7 221 def newchannel(self, bot, name):
222 chan = self.Channel(name.lower(), bot)
5477b368 223 self.chans[name.lower()] = chan
224 return chan
49a455aa 225
226 def poll(self):
2a44c0cd 227 timeout_seconds = 30
fd96a423 228 if self.potype == "poll":
2a44c0cd
JR
229 pollres = self.po.poll(timeout_seconds * 1000)
230 return [fd for (fd, ev) in pollres]
fd96a423 231 elif self.potype == "select":
2a44c0cd 232 return select.select(self.fdlist, [], [], timeout_seconds)[0]
49a455aa 233
234 def connectall(self):
a28e2ae9 235 for bot in self.bots.values():
49a455aa 236 if bot.conn.state == 0:
237 bot.connect()
238
fadbf980 239 def module(self, name):
240 return ctlmod.modules[name]
241
a8553c45 242 def log(self, source, level, message):
a28e2ae9 243 print("%09.3f %s [%s] %s" % (time.time() % 100000, source, level, message))
a8553c45 244
f560eb44 245 def getuserbyauth(self, auth):
a28e2ae9 246 return [u for u in self.users.values() if u.auth == auth.lower()]
f560eb44 247
bffe0139 248 def getdb(self):
249 """Get a DB object. The object must be returned to the pool after us, using returndb()."""
250 return self.dbs.pop()
251
252 def returndb(self, db):
253 self.dbs.append(db)
254
49a455aa 255 #bind functions
db50981b 256 def hook(self, word, handler):
e4a4c762 257 try:
258 self.msghandlers[word].append(handler)
259 except:
260 self.msghandlers[word] = [handler]
261 def unhook(self, word, handler):
262 if word in self.msghandlers and handler in self.msghandlers[word]:
263 self.msghandlers[word].remove(handler)
db50981b 264 def hashook(self, word):
e4a4c762 265 return word in self.msghandlers and len(self.msghandlers[word]) != 0
db50981b 266 def gethook(self, word):
267 return self.msghandlers[word]
b25d4368 268
e4a4c762 269 def hooknum(self, word, handler):
270 try:
271 self.numhandlers[word].append(handler)
272 except:
273 self.numhandlers[word] = [handler]
274 def unhooknum(self, word, handler):
275 if word in self.numhandlers and handler in self.numhandlers[word]:
276 self.numhandlers[word].remove(handler)
277 def hasnumhook(self, word):
278 return word in self.numhandlers and len(self.numhandlers[word]) != 0
279 def getnumhook(self, word):
280 return self.numhandlers[word]
281
2a1a69a6 282 def hookchan(self, chan, handler):
283 try:
9557ee54 284 self.chanhandlers[chan].append(handler)
2a1a69a6 285 except:
9557ee54 286 self.chanhandlers[chan] = [handler]
2a1a69a6 287 def unhookchan(self, chan, handler):
288 if chan in self.chanhandlers and handler in self.chanhandlers[chan]:
289 self.chanhandlers[chan].remove(handler)
290 def haschanhook(self, chan):
291 return chan in self.chanhandlers and len(self.chanhandlers[chan]) != 0
292 def getchanhook(self, chan):
293 return self.chanhandlers[chan]
586997a7 294
295
de89db13 296def dbsetup():
4fa1118b 297 main.db = None
bffe0139 298 main.dbs = []
299 for i in range(cfg.get('erebus', 'num_db_connections', 2)-1):
300 main.dbs.append(MySQLdb.connect(host=cfg.dbhost, user=cfg.dbuser, passwd=cfg.dbpass, db=cfg.dbname, cursorclass=MySQLdb.cursors.DictCursor))
2729abc8 301 main.db = MySQLdb.connect(host=cfg.dbhost, user=cfg.dbuser, passwd=cfg.dbpass, db=cfg.dbname, cursorclass=MySQLdb.cursors.DictCursor)
586997a7 302
b25d4368 303def setup():
db50981b 304 global cfg, main
305
48479459 306 cfg = config.Config('bot.config')
e64ac4a0 307
dcc5bde3 308 if cfg.getboolean('debug', 'gc'):
2ffef3ff 309 gc.set_debug(gc.DEBUG_LEAK)
310
e64ac4a0 311 pidfile = open(cfg.pidfile, 'w')
312 pidfile.write(str(os.getpid()))
313 pidfile.close()
314
c0eee1b4 315 main = Erebus(cfg)
bffe0139 316 dbsetup()
db50981b 317
318 autoloads = [mod for mod, yes in cfg.items('autoloads') if int(yes) == 1]
319 for mod in autoloads:
b9c6eb1d 320 ctlmod.load(main, mod)
db50981b 321
2729abc8 322 c = main.query("SELECT nick, user, bind, authname, authpass FROM bots WHERE active = 1")
323 if c:
4fa1118b 324 rows = c.fetchall()
325 c.close()
326 for row in rows:
0af282c6 327 main.newbot(row['nick'], row['user'], row['bind'], row['authname'], row['authpass'], cfg.host, cfg.port, cfg.realname)
a12f7519 328 main.connectall()
b25d4368 329
330def loop():
49a455aa 331 poready = main.poll()
fd96a423 332 for fileno in poready:
d1ea2946 333 for line in main.fd(fileno).getdata():
334 main.fd(fileno).parse(line)
2a44c0cd 335 if main.mustquit is not None:
dc0f891b 336 main.log('*', '!', 'Core exiting due to: %s' % (main.mustquit))
2a44c0cd 337 raise main.mustquit
b25d4368 338
339if __name__ == '__main__':
963f2522 340 try: os.rename('logfile', 'oldlogs/%s' % (time.time()))
24b74bb3 341 except: pass
3d724d3a 342 sys.stdout = open('logfile', 'w', 1)
24b74bb3 343 sys.stderr = sys.stdout
b25d4368 344 setup()
49a455aa 345 while True: loop()