thelounge/src/log.js
2014-10-03 16:33:44 -07:00

47 lines
1.1 KiB
JavaScript

var fs = require("fs");
var mkdirp = require("mkdirp");
var moment = require("moment");
var Helper = require("./helper");
module.exports = {
write: function(user, network, chan, msg) {
var path = Helper.HOME + "/users/" + user + "/logs/" + network;
try {
mkdirp.sync(path);
} catch(e) {
return;
}
var config = Helper.getConfig();
var format = (config.logs || {}).format || "YYYY-MM-DD HH:mm:ss";
var tz = (config.logs || {}).timezone || "UTC+00:00";
var time = moment().zone(tz).format(format);
var line = "[" + time + "] ";
var type = msg.type.trim();
if (type == "message" || type == "highlight") {
// Format:
// [2014-01-01 00:00:00] <Arnold> Put that cookie down.. Now!!
line += "<" + msg.from + "> " + msg.text;
} else {
// Format:
// [2014-01-01 00:00:00] * Arnold quit
line += "* " + msg.from + " " + msg.type;
if (msg.text) {
line += " " + msg.text;
}
}
fs.appendFile(
path + "/" + chan + ".log",
line + "\n",
function(e) {
if (e) {
console.log("Log#write():\n" + e)
}
}
);
}
};