thelounge/src/models/msg.js

46 lines
665 B
JavaScript
Raw Normal View History

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