thelounge/src/models/msg.js

32 lines
499 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",
IMAGE: "image",
JOIN: "join",
KICK: "kick",
MESSAGE: "message",
MODE: "mode",
MOTD: "motd",
NICK: "nick",
NOTICE: "notice",
PART: "part",
QUIT: "quit",
TOPIC: "topic",
WHOIS: "whois"
};
module.exports = Msg;
function Msg(attr) {
_.merge(this, _.extend({
from: "",
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));
}