thelounge/src/models/user.js
2020-03-21 22:55:36 +02:00

33 lines
601 B
JavaScript

"use strict";
const _ = require("lodash");
module.exports = User;
function User(attr, prefixLookup) {
_.defaults(this, attr, {
modes: [],
away: "",
mode: "",
nick: "",
lastMessage: 0,
});
this.setModes(this.modes, prefixLookup);
}
User.prototype.setModes = function (modes, prefixLookup) {
// irc-framework sets character mode, but The Lounge works with symbols
this.modes = modes.map((mode) => prefixLookup[mode]);
this.mode = this.modes[0] || "";
};
User.prototype.toJSON = function () {
return {
nick: this.nick,
mode: this.mode,
lastMessage: this.lastMessage,
};
};