thelounge/src/models/network.js
Maxime Poulin 96d282e73c
Add WEBIRC support
Fixes #181
2016-05-02 00:45:19 -04:00

83 lines
1.4 KiB
JavaScript

var _ = require("lodash");
var Chan = require("./chan");
module.exports = Network;
var id = 0;
function Network(attr) {
_.merge(this, _.extend({
name: "",
host: "",
port: 6667,
tls: false,
password: "",
commands: [],
username: "",
realname: "",
channels: [],
ip: null,
hostname: null,
id: id++,
irc: null,
serverOptions: {
PREFIX: [],
},
}, attr));
this.name = attr.name || prettify(attr.host);
this.channels.unshift(
new Chan({
name: this.name,
type: Chan.Type.LOBBY
})
);
}
Network.prototype.toJSON = function() {
var json = _.extend(this, {nick: (this.irc && this.irc.user.nick) || ""});
return _.omit(json, "irc", "password");
};
Network.prototype.export = function() {
var network = _.pick(this, [
"name",
"host",
"port",
"tls",
"password",
"username",
"realname",
"commands",
"ip",
"hostname"
]);
network.nick = (this.irc && this.irc.user.nick) || "";
network.join = _.map(
_.filter(this.channels, {type: "channel"}),
"name"
).join(",");
return network;
};
Network.prototype.getChannel = function(name) {
name = name.toLowerCase();
return _.find(this.channels, function(that) {
return that.name.toLowerCase() === name;
});
};
function prettify(host) {
var name = capitalize(host.split(".")[1]);
if (!name) {
name = host;
}
return name;
}
function capitalize(str) {
if (typeof str === "string") {
return str.charAt(0).toUpperCase() + str.slice(1);
}
}