49 lines
1.8 KiB
Python
49 lines
1.8 KiB
Python
#--depends-on config
|
|
#--depends-on format_activity
|
|
|
|
import datetime, os.path
|
|
from src import ModuleManager, utils
|
|
|
|
ROOT_DIRECTORY = os.path.dirname(os.path.realpath(__file__))
|
|
LOGS_DIRECTORY = os.path.join(ROOT_DIRECTORY, "logs")
|
|
|
|
SETTING = utils.BoolSetting("channel-log",
|
|
"Enable/disable channel logging")
|
|
|
|
@utils.export("channelset",utils.BoolSetting("log",
|
|
"Enable/disable channel logging"))
|
|
@utils.export("serverset", SETTING)
|
|
@utils.export("botset", SETTING)
|
|
class Module(ModuleManager.BaseModule):
|
|
def _enabled(self, server, channel):
|
|
return channel.get_setting("log",
|
|
server.get_setting("channel-log",
|
|
self.bot.get_setting("channel-log", False)))
|
|
def _file(self, server_name, channel_name):
|
|
return self.data_directory("%s/%s.log" % (server_name, channel_name))
|
|
def _log(self, server, channel, line):
|
|
if self._enabled(server, channel):
|
|
with open(self._file(str(server), str(channel)), "a") as log:
|
|
timestamp = datetime.datetime.now().strftime("%x %X")
|
|
log.write("%s %s\n" % (timestamp, line))
|
|
|
|
@utils.hook("formatted.message.channel")
|
|
@utils.hook("formatted.notice.channel")
|
|
@utils.hook("formatted.join")
|
|
@utils.hook("formatted.part")
|
|
@utils.hook("formatted.nick")
|
|
@utils.hook("formatted.invite")
|
|
@utils.hook("formatted.mode.channel")
|
|
@utils.hook("formatted.topic")
|
|
@utils.hook("formatted.topic-timestamp")
|
|
@utils.hook("formatted.kick")
|
|
@utils.hook("formatted.quit")
|
|
@utils.hook("formatted.rename")
|
|
@utils.hook("formatted.chghost")
|
|
def on_formatted(self, event):
|
|
if event["channel"]:
|
|
self._log(event["server"], event["channel"], event["line"])
|
|
elif event["user"]:
|
|
for channel in event["user"].channels:
|
|
self._log(event["server"], channel, event["line"])
|
|
|