thelounge/src/models/msg.js

35 lines
526 B
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
var _ = require("lodash");
var moment = require("moment");
Msg.Type = {
ACTION: "action",
ERROR: "error",
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",
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: "",
time: moment().utc().format("HH:mm:ss"),
type: Msg.Type.MESSAGE,
2014-09-14 20:49:42 +02:00
self: false
2014-09-13 23:29:45 +02:00
}, attr));
}