hardlounge/src/models/msg.js

45 lines
649 B
JavaScript
Raw Normal View History

"use strict";
2014-09-13 21:29:45 +00:00
var _ = require("lodash");
Msg.Type = {
UNHANDLED: "unhandled",
2014-09-13 21:29:45 +00:00
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",
CTCP: "ctcp",
2014-09-13 21:29:45 +00:00
TOPIC: "topic",
TOPIC_SET_BY: "topic_set_by",
2017-04-22 12:51:21 +00:00
WHOIS: "whois",
BANLIST: "ban_list"
2014-09-13 21:29:45 +00:00
};
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) {
_.defaults(this, attr, {
2014-09-13 21:29:45 +00:00
from: "",
2014-09-27 19:17:05 +00:00
id: id++,
2014-09-13 21:29:45 +00:00
text: "",
type: Msg.Type.MESSAGE,
2014-09-14 18:49:42 +00:00
self: false
});
2016-03-12 09:36:55 +00:00
if (this.time > 0) {
this.time = new Date(this.time);
2016-03-12 09:36:55 +00:00
} else {
this.time = new Date();
2016-03-12 09:36:55 +00:00
}
2014-09-13 21:29:45 +00:00
}