]> jfr.im git - erebus.git/blame - erebus.py
Merge branch 'master' of github.com:zonidjan/erebus
[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):
a9ce8d6a 81 if auth is None:
82 return 0
586997a7 83 auth = auth.lower()
84 if auth in self.levels:
85 return self.levels[auth]
86 else:
87 return 0
88
89 def setlevel(self, auth, level, savetodb=True):
90 auth = auth.lower()
91 if savetodb:
92 c = main.db.cursor()
4fa1118b 93 if c.execute("REPLACE INTO chusers (chan, user, level) VALUES (%s, %s, %s)", (self.name, auth, level)):
94 self.levels[auth] = level
95 return True
96 else:
97 return False
586997a7 98
49a455aa 99 def userjoin(self, user, level=None):
100 if user not in self.users: self.users.append(user)
101 if level == 'op' and user not in self.ops: self.ops.append(user)
102 if level == 'voice' and user not in self.voices: self.voices.append(user)
103 def userpart(self, user):
104 if user in self.ops: self.ops.remove(user)
105 if user in self.voices: self.voices.remove(user)
106 if user in self.users: self.users.remove(user)
a4eacae2 107
49a455aa 108 def userop(self, user):
109 if user in self.users and user not in self.ops: self.ops.append(user)
110 def uservoice(self, user):
111 if user in self.users and user not in self.voices: self.voices.append(user)
112 def userdeop(self, user):
113 if user in self.ops: self.ops.remove(user)
114 def userdevoice(self, user):
115 if user in self.voices: self.voices.remove(user)
116
117 def __str__(self): return self.name
118 def __repr__(self): return "<Channel %r>" % (self.name)
119
b2a896c8 120 def __init__(self, trigger):
121 self.trigger = trigger
fd96a423 122 if os.name == "posix":
123 self.potype = "poll"
124 self.po = select.poll()
125 else: # f.e. os.name == "nt" (Windows)
126 self.potype = "select"
127 self.fdlist = []
49a455aa 128
5477b368 129 def newbot(self, nick, user, bind, server, port, realname):
49a455aa 130 if bind is None: bind = ''
5477b368 131 obj = bot.Bot(self, nick, user, bind, server, port, realname)
49a455aa 132 self.bots[nick.lower()] = obj
a4eacae2 133
49a455aa 134 def newfd(self, obj, fileno):
49a455aa 135 self.fds[fileno] = obj
fd96a423 136 if self.potype == "poll":
137 self.po.register(fileno, select.POLLIN)
138 elif self.potype == "select":
139 self.fdlist.append(fileno)
a4eacae2 140
43b98e4e 141 def bot(self, name): #get Bot() by name (nick)
49a455aa 142 return self.bots[name.lower()]
43b98e4e 143 def fd(self, fileno): #get Bot() by fd/fileno
49a455aa 144 return self.fds[fileno]
8af0407d 145 def randbot(self): #get Bot() randomly
146 for b in self.bots.itervalues(): return b #TODO
49a455aa 147
c695f740 148 def user(self, _nick, justjoined=False):
149 nick = _nick.lower()
b2a896c8 150 if nick in self.users:
151 return self.users[nick]
152 else:
c695f740 153 user = self.User(_nick)
b2a896c8 154 self.users[nick] = user
8af0407d 155
156 if justjoined:
fadbf980 157 self.randbot().conn.send("WHO %s n%%ant,2" % (nick))
8af0407d 158
b2a896c8 159 return user
5477b368 160 def channel(self, name): #get Channel() by name
161 if name.lower() in self.chans:
162 return self.chans[name.lower()]
163 else:
164 return None
165
586997a7 166 def newchannel(self, bot, name):
167 chan = self.Channel(name.lower(), bot)
5477b368 168 self.chans[name.lower()] = chan
169 return chan
49a455aa 170
171 def poll(self):
fd96a423 172 if self.potype == "poll":
173 return [fd for (fd, ev) in self.po.poll()]
174 elif self.potype == "select":
175 return select.select(self.fdlist, [], [])[0]
49a455aa 176
177 def connectall(self):
178 for bot in self.bots.itervalues():
179 if bot.conn.state == 0:
180 bot.connect()
181
fadbf980 182 def module(self, name):
183 return ctlmod.modules[name]
184
49a455aa 185 #bind functions
db50981b 186 def hook(self, word, handler):
e4a4c762 187 try:
188 self.msghandlers[word].append(handler)
189 except:
190 self.msghandlers[word] = [handler]
191 def unhook(self, word, handler):
192 if word in self.msghandlers and handler in self.msghandlers[word]:
193 self.msghandlers[word].remove(handler)
db50981b 194 def hashook(self, word):
e4a4c762 195 return word in self.msghandlers and len(self.msghandlers[word]) != 0
db50981b 196 def gethook(self, word):
197 return self.msghandlers[word]
b25d4368 198
e4a4c762 199 def hooknum(self, word, handler):
200 try:
201 self.numhandlers[word].append(handler)
202 except:
203 self.numhandlers[word] = [handler]
204 def unhooknum(self, word, handler):
205 if word in self.numhandlers and handler in self.numhandlers[word]:
206 self.numhandlers[word].remove(handler)
207 def hasnumhook(self, word):
208 return word in self.numhandlers and len(self.numhandlers[word]) != 0
209 def getnumhook(self, word):
210 return self.numhandlers[word]
211
2a1a69a6 212 def hookchan(self, chan, handler):
213 try:
9557ee54 214 self.chanhandlers[chan].append(handler)
2a1a69a6 215 except:
9557ee54 216 self.chanhandlers[chan] = [handler]
2a1a69a6 217 def unhookchan(self, chan, handler):
218 if chan in self.chanhandlers and handler in self.chanhandlers[chan]:
219 self.chanhandlers[chan].remove(handler)
220 def haschanhook(self, chan):
221 return chan in self.chanhandlers and len(self.chanhandlers[chan]) != 0
222 def getchanhook(self, chan):
223 return self.chanhandlers[chan]
586997a7 224
225
de89db13 226class MyCursor(MySQLdb.cursors.DictCursor):
227 def execute(self, *args, **kwargs):
228 print "[SQL] [#] MyCursor.execute(self, %s, %s)" % (', '.join([repr(i) for i in args]), ', '.join([str(key)+"="+repr(kwargs[key]) for key in kwargs]))
229 try:
230 super(self.__class__, self).execute(*args, **kwargs)
231 except MySQLdb.MySQLError as e:
232 print "[SQL] [!] MySQL error! %r" % (e)
4fa1118b 233 dbsetup()
234 return False
235 return True
de89db13 236
237
238def dbsetup():
4fa1118b 239 main.db = None
de89db13 240 main.db = MySQLdb.connect(host=cfg.dbhost, user=cfg.dbuser, passwd=cfg.dbpass, db=cfg.dbname, cursorclass=MyCursor)
586997a7 241
b25d4368 242def setup():
db50981b 243 global cfg, main
244
245 cfg = config.Config('bot.config')
b2a896c8 246 main = Erebus(cfg.trigger)
db50981b 247
248 autoloads = [mod for mod, yes in cfg.items('autoloads') if int(yes) == 1]
249 for mod in autoloads:
d431e543 250 print "Loading %s" % (mod)
db50981b 251 ctlmod.load(main, mod)
252
de89db13 253 dbsetup()
a12f7519 254 c = main.db.cursor()
4fa1118b 255 if c.execute("SELECT nick, user, bind FROM bots WHERE active = 1"):
256 rows = c.fetchall()
257 c.close()
258 for row in rows:
259 main.newbot(row['nick'], row['user'], row['bind'], cfg.host, cfg.port, cfg.realname)
a12f7519 260 main.connectall()
b25d4368 261
262def loop():
49a455aa 263 poready = main.poll()
fd96a423 264 for fileno in poready:
d1ea2946 265 for line in main.fd(fileno).getdata():
266 main.fd(fileno).parse(line)
b25d4368 267
268if __name__ == '__main__':
269 setup()
49a455aa 270 while True: loop()