thelounge/src/models/msg.js
2016-04-07 16:04:41 -04:00

41 lines
598 B
JavaScript

var _ = require("lodash");
Msg.Type = {
ACTION: "action",
ERROR: "error",
INVITE: "invite",
JOIN: "join",
KICK: "kick",
MESSAGE: "message",
MODE: "mode",
MOTD: "motd",
NICK: "nick",
NOTICE: "notice",
PART: "part",
QUIT: "quit",
TOGGLE: "toggle",
TOPIC: "topic",
TOPIC_SET_BY: "topic_set_by",
WHOIS: "whois"
};
module.exports = Msg;
var id = 0;
function Msg(attr) {
_.merge(this, _.extend({
from: "",
id: id++,
text: "",
type: Msg.Type.MESSAGE,
self: false
}, attr));
if (attr.time > 0) {
attr.time = new Date(attr.time);
} else {
attr.time = new Date();
}
}