Added log module
This commit is contained in:
parent
0277a779c9
commit
d537d4b69b
6 changed files with 38 additions and 7 deletions
|
@ -12,7 +12,7 @@ class Module(ModuleBase):
|
|||
if not re.match(r'!help(?:\W|\Z)', message_body):
|
||||
return
|
||||
|
||||
commands = reduce(lambda l, mod: l + mod.commands(), self.manager.modules, [])
|
||||
commands = reduce(lambda l, mod: l + mod.commands(), self.manager.modules.itervalues(), [])
|
||||
helpstring = reduce(lambda s, (c, h): s + c + ': ' + h + '\n', commands, '')
|
||||
|
||||
reply('Befehle:\n\n' + helpstring)
|
||||
|
|
10
modules/log.py
Normal file
10
modules/log.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from base import ModuleBase
|
||||
|
||||
class Module(ModuleBase):
|
||||
def __init__(self, manager):
|
||||
ModuleBase.__init__(self, manager)
|
||||
self.db = manager.get('mysql').db
|
||||
|
||||
def groupchat(self, room, message_from, message_body, reply):
|
||||
cursor = self.db.cursor()
|
||||
cursor.execute('INSERT INTO log (time, room, nick, text) VALUES (NOW(), %s, %s, %s)', (room, message_from, message_body))
|
10
modules/mysql.py
Normal file
10
modules/mysql.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from base import ModuleBase
|
||||
import MySQLdb
|
||||
|
||||
class Module(ModuleBase):
|
||||
def __init__(self, manager):
|
||||
ModuleBase.__init__(self, manager)
|
||||
|
||||
conf = manager.config['mysql']
|
||||
|
||||
self.db = MySQLdb.connect(host = conf['host'], user = conf['user'], passwd = conf['passwd'], db = conf['db'])
|
Reference in a new issue