]> jfr.im git - erebus.git/blame - erebus.py
remove weather module - RIP wunderground API
[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):
143 self.cfg = cfg
144 self.trigger = cfg.trigger
fd96a423 145 if os.name == "posix":
146 self.potype = "poll"
147 self.po = select.poll()
148 else: # f.e. os.name == "nt" (Windows)
149 self.potype = "select"
150 self.fdlist = []
49a455aa 151
2729abc8 152 def query(self, *args, **kwargs):
153 if 'norecurse' in kwargs:
154 norecurse = kwargs['norecurse']
155 del kwargs['norecurse']
156 else:
157 norecurse = False
158
159 self.log("[SQL]", "?", "query(%s, %s)" % (', '.join([repr(i) for i in args]), ', '.join([str(key)+"="+repr(kwargs[key]) for key in kwargs])))
160 try:
161 curs = self.db.cursor()
162 res = curs.execute(*args, **kwargs)
163 if res:
164 return curs
165 else:
166 return res
167 except MySQLdb.MySQLError as e:
168 self.log("[SQL]", "!", "MySQL error! %r" % (e))
169 if not norecurse:
170 dbsetup()
171 return self.query(*args, norecurse=True, **kwargs)
172 else:
173 raise e
174
0af282c6 175 def newbot(self, nick, user, bind, authname, authpass, server, port, realname):
49a455aa 176 if bind is None: bind = ''
0af282c6 177 obj = bot.Bot(self, nick, user, bind, authname, authpass, server, port, realname)
49a455aa 178 self.bots[nick.lower()] = obj
a4eacae2 179
49a455aa 180 def newfd(self, obj, fileno):
49a455aa 181 self.fds[fileno] = obj
fd96a423 182 if self.potype == "poll":
183 self.po.register(fileno, select.POLLIN)
184 elif self.potype == "select":
185 self.fdlist.append(fileno)
a4eacae2 186
43b98e4e 187 def bot(self, name): #get Bot() by name (nick)
49a455aa 188 return self.bots[name.lower()]
43b98e4e 189 def fd(self, fileno): #get Bot() by fd/fileno
49a455aa 190 return self.fds[fileno]
8af0407d 191 def randbot(self): #get Bot() randomly
71ef8273 192 return self.bots[random.choice(list(self.bots.keys()))]
49a455aa 193
3d724d3a 194 def user(self, _nick, justjoined=False, create=True):
c695f740 195 nick = _nick.lower()
b2a896c8 196 if nick in self.users:
197 return self.users[nick]
3d724d3a 198 elif create:
c695f740 199 user = self.User(_nick)
b2a896c8 200 self.users[nick] = user
8af0407d 201
202 if justjoined:
d53d073b 203 self.randbot().conn.send("WHO %s n%%ant,1" % (nick))
8af0407d 204
b2a896c8 205 return user
3d724d3a 206 else:
207 return None
5477b368 208 def channel(self, name): #get Channel() by name
209 if name.lower() in self.chans:
210 return self.chans[name.lower()]
211 else:
212 return None
213
586997a7 214 def newchannel(self, bot, name):
215 chan = self.Channel(name.lower(), bot)
5477b368 216 self.chans[name.lower()] = chan
217 return chan
49a455aa 218
219 def poll(self):
fd96a423 220 if self.potype == "poll":
221 return [fd for (fd, ev) in self.po.poll()]
222 elif self.potype == "select":
223 return select.select(self.fdlist, [], [])[0]
49a455aa 224
225 def connectall(self):
a28e2ae9 226 for bot in self.bots.values():
49a455aa 227 if bot.conn.state == 0:
228 bot.connect()
229
fadbf980 230 def module(self, name):
231 return ctlmod.modules[name]
232
a8553c45 233 def log(self, source, level, message):
a28e2ae9 234 print("%09.3f %s [%s] %s" % (time.time() % 100000, source, level, message))
a8553c45 235
f560eb44 236 def getuserbyauth(self, auth):
a28e2ae9 237 return [u for u in self.users.values() if u.auth == auth.lower()]
f560eb44 238
49a455aa 239 #bind functions
db50981b 240 def hook(self, word, handler):
e4a4c762 241 try:
242 self.msghandlers[word].append(handler)
243 except:
244 self.msghandlers[word] = [handler]
245 def unhook(self, word, handler):
246 if word in self.msghandlers and handler in self.msghandlers[word]:
247 self.msghandlers[word].remove(handler)
db50981b 248 def hashook(self, word):
e4a4c762 249 return word in self.msghandlers and len(self.msghandlers[word]) != 0
db50981b 250 def gethook(self, word):
251 return self.msghandlers[word]
b25d4368 252
e4a4c762 253 def hooknum(self, word, handler):
254 try:
255 self.numhandlers[word].append(handler)
256 except:
257 self.numhandlers[word] = [handler]
258 def unhooknum(self, word, handler):
259 if word in self.numhandlers and handler in self.numhandlers[word]:
260 self.numhandlers[word].remove(handler)
261 def hasnumhook(self, word):
262 return word in self.numhandlers and len(self.numhandlers[word]) != 0
263 def getnumhook(self, word):
264 return self.numhandlers[word]
265
2a1a69a6 266 def hookchan(self, chan, handler):
267 try:
9557ee54 268 self.chanhandlers[chan].append(handler)
2a1a69a6 269 except:
9557ee54 270 self.chanhandlers[chan] = [handler]
2a1a69a6 271 def unhookchan(self, chan, handler):
272 if chan in self.chanhandlers and handler in self.chanhandlers[chan]:
273 self.chanhandlers[chan].remove(handler)
274 def haschanhook(self, chan):
275 return chan in self.chanhandlers and len(self.chanhandlers[chan]) != 0
276 def getchanhook(self, chan):
277 return self.chanhandlers[chan]
586997a7 278
279
de89db13 280def dbsetup():
4fa1118b 281 main.db = None
2729abc8 282 main.db = MySQLdb.connect(host=cfg.dbhost, user=cfg.dbuser, passwd=cfg.dbpass, db=cfg.dbname, cursorclass=MySQLdb.cursors.DictCursor)
586997a7 283
b25d4368 284def setup():
db50981b 285 global cfg, main
286
48479459 287 cfg = config.Config('bot.config')
e64ac4a0 288
dcc5bde3 289 if cfg.getboolean('debug', 'gc'):
2ffef3ff 290 gc.set_debug(gc.DEBUG_LEAK)
291
e64ac4a0 292 pidfile = open(cfg.pidfile, 'w')
293 pidfile.write(str(os.getpid()))
294 pidfile.close()
295
c0eee1b4 296 main = Erebus(cfg)
db50981b 297
298 autoloads = [mod for mod, yes in cfg.items('autoloads') if int(yes) == 1]
299 for mod in autoloads:
b9c6eb1d 300 ctlmod.load(main, mod)
db50981b 301
de89db13 302 dbsetup()
2729abc8 303 c = main.query("SELECT nick, user, bind, authname, authpass FROM bots WHERE active = 1")
304 if c:
4fa1118b 305 rows = c.fetchall()
306 c.close()
307 for row in rows:
0af282c6 308 main.newbot(row['nick'], row['user'], row['bind'], row['authname'], row['authpass'], cfg.host, cfg.port, cfg.realname)
a12f7519 309 main.connectall()
b25d4368 310
311def loop():
49a455aa 312 poready = main.poll()
fd96a423 313 for fileno in poready:
d1ea2946 314 for line in main.fd(fileno).getdata():
315 main.fd(fileno).parse(line)
b25d4368 316
317if __name__ == '__main__':
963f2522 318 try: os.rename('logfile', 'oldlogs/%s' % (time.time()))
24b74bb3 319 except: pass
3d724d3a 320 sys.stdout = open('logfile', 'w', 1)
24b74bb3 321 sys.stderr = sys.stdout
b25d4368 322 setup()
49a455aa 323 while True: loop()