From d537d4b69b4547814f2d01bc18ce2c472b978647 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 2 May 2010 21:18:09 +0200 Subject: Added log module --- modules/log.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 modules/log.py (limited to 'modules/log.py') diff --git a/modules/log.py b/modules/log.py new file mode 100644 index 0000000..3280d27 --- /dev/null +++ b/modules/log.py @@ -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)) -- cgit v1.2.3