hardlounge/src/userLog.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

"use strict";
2014-09-16 15:47:01 -04:00
var fs = require("fs");
var fsextra = require("fs-extra");
2014-09-16 15:47:01 -04:00
var moment = require("moment");
var Helper = require("./helper");
2014-10-14 15:25:04 -04:00
module.exports.write = function(user, network, chan, msg) {
2016-10-09 04:54:44 -04:00
const path = Helper.getUserLogsPath(user, network);
2014-10-14 15:25:04 -04:00
try {
fsextra.ensureDirSync(path);
2015-09-30 18:39:57 -04:00
} catch (e) {
2017-08-25 11:58:16 -04:00
log.error("Unable to create logs directory", e);
2014-10-14 15:25:04 -04:00
return;
}
2014-09-16 15:47:01 -04:00
var format = Helper.config.logs.format || "YYYY-MM-DD HH:mm:ss";
var tz = Helper.config.logs.timezone || "UTC+00:00";
2014-09-16 15:47:01 -04:00
2017-09-14 03:42:21 -04:00
var time = moment(msg.time).utcOffset(tz).format(format);
var line = `[${time}] `;
2014-09-16 15:47:01 -04:00
2014-10-14 15:25:04 -04:00
var type = msg.type.trim();
2015-09-30 18:39:57 -04:00
if (type === "message" || type === "highlight") {
2014-10-14 15:25:04 -04:00
// Format:
// [2014-01-01 00:00:00] <Arnold> Put that cookie down.. Now!!
2018-01-05 08:41:03 -05:00
line += `<${msg.from.nick}> ${msg.text}`;
2014-10-14 15:25:04 -04:00
} else {
// Format:
// [2014-01-01 00:00:00] * Arnold quit
2018-01-05 08:41:03 -05:00
line += `* ${msg.from.nick} `;
if (msg.hostmask) {
line += `(${msg.hostmask}) `;
}
line += msg.type;
if (msg.new_nick) { // `/nick <new_nick>`
line += ` ${msg.new_nick}`;
} else if (msg.text) {
line += ` ${msg.text}`;
2014-09-16 15:47:01 -04:00
}
2014-10-14 15:25:04 -04:00
}
2014-09-16 15:47:01 -04:00
2014-10-14 15:25:04 -04:00
fs.appendFile(
// Quick fix to escape pre-escape channel names that contain % using %%,
// and / using %. **This does not escape all reserved words**
path + "/" + chan.replace(/%/g, "%%").replace(/\//g, "%") + ".log",
2014-10-14 15:25:04 -04:00
line + "\n",
function(e) {
if (e) {
log.error("Failed to write user log", e);
}
2014-10-14 15:25:04 -04:00
}
);
2014-09-16 15:47:01 -04:00
};