thelounge/src/models/msg.js

41 lines
598 B
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
var _ = require("lodash");
Msg.Type = {
ACTION: "action",
ERROR: "error",
2016-02-12 12:24:13 +01:00
INVITE: "invite",
2014-09-13 23:29:45 +02:00
JOIN: "join",
KICK: "kick",
MESSAGE: "message",
MODE: "mode",
MOTD: "motd",
NICK: "nick",
NOTICE: "notice",
PART: "part",
QUIT: "quit",
2014-09-27 21:17:05 +02:00
TOGGLE: "toggle",
2014-09-13 23:29:45 +02:00
TOPIC: "topic",
TOPIC_SET_BY: "topic_set_by",
2014-09-13 23:29:45 +02:00
WHOIS: "whois"
};
module.exports = Msg;
2014-09-27 21:17:05 +02:00
var id = 0;
2014-09-13 23:29:45 +02:00
function Msg(attr) {
_.merge(this, _.extend({
from: "",
2014-09-27 21:17:05 +02:00
id: id++,
2014-09-13 23:29:45 +02:00
text: "",
type: Msg.Type.MESSAGE,
2014-09-14 20:49:42 +02:00
self: false
2014-09-13 23:29:45 +02:00
}, attr));
2016-03-12 10:36:55 +01:00
if (attr.time > 0) {
attr.time = new Date(attr.time);
} else {
attr.time = new Date();
}
2014-09-13 23:29:45 +02:00
}