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