This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
curunir/modules/log.py

30 lines
1.3 KiB
Python
Raw Normal View History

from . import ModuleBase
2010-05-02 21:18:09 +02:00
class Module(ModuleBase):
def __init__(self, manager):
ModuleBase.__init__(self, manager)
self.mysql = manager.get('mysql')
2010-05-02 21:18:09 +02:00
2010-05-02 23:40:21 +02:00
def helptexts(self):
return ['Chatlogs werden auch erstellt.']
def groupchat(self, room, nick, text, handler):
cursor = self.mysql.cursor()
2010-05-02 23:40:21 +02:00
cursor.execute('INSERT INTO log (`type`, `time`, `room`, `nick`, `text`) VALUES ("message", NOW(), %s, %s, %s)', (room, nick, text))
cursor.close()
def join(self, room, nick, show, status, handler):
cursor = self.mysql.cursor()
2010-05-02 23:40:21 +02:00
cursor.execute('INSERT INTO log (`type`, `time`, `room`, `nick`, `show`, `text`) VALUES ("join", NOW(), %s, %s, %s, %s)', (room, nick, show, status))
cursor.close()
def leave(self, room, nick, show, status, handler):
cursor = self.mysql.cursor()
2010-05-02 23:40:21 +02:00
cursor.execute('INSERT INTO log (`type`, `time`, `room`, `nick`, `show`, `text`) VALUES ("leave", NOW(), %s, %s, %s, %s)', (room, nick, show, status))
cursor.close()
def topic(self, room, nick, text, handler):
cursor = self.mysql.cursor()
2010-05-02 23:40:21 +02:00
cursor.execute('INSERT INTO log (`type`, `time`, `room`, `nick`, `text`) VALUES ("topic", NOW(), %s, %s, %s)', (room, nick, text))
2010-05-02 21:51:15 +02:00
cursor.close()