2019-05-25 20:40:06 +00:00
|
|
|
#--depends-on config
|
|
|
|
#--depends-on format_activity
|
|
|
|
|
2019-03-06 13:36:46 +00:00
|
|
|
import datetime, os.path
|
|
|
|
from src import ModuleManager, utils
|
|
|
|
|
2020-01-27 23:51:30 +00:00
|
|
|
SETTING = utils.BoolSetting("channel-log",
|
|
|
|
"Enable/disable channel logging")
|
|
|
|
|
|
|
|
@utils.export("channelset",utils.BoolSetting("log",
|
2019-06-28 22:16:05 +00:00
|
|
|
"Enable/disable channel logging"))
|
2020-01-27 23:51:30 +00:00
|
|
|
@utils.export("serverset", SETTING)
|
|
|
|
@utils.export("botset", SETTING)
|
2019-03-06 13:36:46 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
2020-01-27 23:51:30 +00:00
|
|
|
def _enabled(self, server, channel):
|
|
|
|
return channel.get_setting("log",
|
|
|
|
server.get_setting("channel-log",
|
|
|
|
self.bot.get_setting("channel-log", False)))
|
2020-01-27 23:23:20 +00:00
|
|
|
def _file(self, server_name, channel_name):
|
2020-01-30 17:12:57 +00:00
|
|
|
# if a channel name has os.path.sep (e.g. "/") in it, the channel's log
|
|
|
|
# file will create a subdirectory.
|
|
|
|
#
|
|
|
|
# to avoid this, we'll replace os.path.sep with "," (0x2C) as it is
|
|
|
|
# forbidden in channel names.
|
|
|
|
sanitised_name = channel_name.replace(os.path.sep, ",")
|
|
|
|
return self.data_directory("%s/%s.log" % (server_name, sanitised_name))
|
2020-01-27 23:51:30 +00:00
|
|
|
def _log(self, server, channel, line):
|
|
|
|
if self._enabled(server, channel):
|
|
|
|
with open(self._file(str(server), str(channel)), "a") as log:
|
2020-01-30 21:12:31 +00:00
|
|
|
timestamp = utils.datetime.format.datetime_human(
|
2020-01-29 15:52:06 +00:00
|
|
|
datetime.datetime.now())
|
2020-01-27 23:51:30 +00:00
|
|
|
log.write("%s %s\n" % (timestamp, line))
|
2019-03-06 13:36:46 +00:00
|
|
|
|
|
|
|
@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")
|
2019-10-31 15:36:22 +00:00
|
|
|
@utils.hook("formatted.chghost")
|
2019-03-06 13:36:46 +00:00
|
|
|
def on_formatted(self, event):
|
|
|
|
if event["channel"]:
|
2020-01-27 23:51:30 +00:00
|
|
|
self._log(event["server"], event["channel"], event["line"])
|
2019-03-06 13:36:46 +00:00
|
|
|
elif event["user"]:
|
|
|
|
for channel in event["user"].channels:
|
2020-01-27 23:51:30 +00:00
|
|
|
self._log(event["server"], channel, event["line"])
|
|
|
|
|