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