thelounge/src/models/network.js

83 lines
1.4 KiB
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
var _ = require("lodash");
var Chan = require("./chan");
module.exports = Network;
var id = 0;
function Network(attr) {
_.merge(this, _.extend({
2014-10-11 22:44:56 +02:00
name: "",
host: "",
port: 6667,
tls: false,
password: "",
2014-11-09 17:01:22 +01:00
commands: [],
2014-10-11 22:44:56 +02:00
username: "",
realname: "",
2014-09-13 23:29:45 +02:00
channels: [],
2016-04-03 07:12:49 +02:00
ip: null,
hostname: null,
2014-09-13 23:29:45 +02:00
id: id++,
irc: null,
serverOptions: {
PREFIX: [],
},
2014-09-13 23:29:45 +02:00
}, attr));
this.name = attr.name || prettify(attr.host);
this.channels.unshift(
2014-10-12 00:47:24 +02:00
new Chan({
name: this.name,
type: Chan.Type.LOBBY
})
2014-09-13 23:29:45 +02:00
);
}
Network.prototype.toJSON = function() {
var json = _.extend(this, {nick: (this.irc && this.irc.user.nick) || ""});
2014-10-11 22:44:56 +02:00
return _.omit(json, "irc", "password");
};
Network.prototype.export = function() {
2014-10-12 00:47:24 +02:00
var network = _.pick(this, [
"name",
"host",
"port",
"tls",
"password",
"username",
2014-11-09 17:01:22 +01:00
"realname",
2016-04-03 07:12:49 +02:00
"commands",
"ip",
"hostname"
2014-10-12 00:47:24 +02:00
]);
network.nick = (this.irc && this.irc.user.nick) || "";
2016-02-14 18:09:51 +01:00
network.join = _.map(
_.filter(this.channels, {type: "channel"}),
2014-10-11 22:44:56 +02:00
"name"
2014-10-12 00:47:24 +02:00
).join(",");
2014-10-11 22:44:56 +02:00
return network;
2014-09-13 23:29:45 +02:00
};
2016-03-20 15:28:47 +01:00
Network.prototype.getChannel = function(name) {
name = name.toLowerCase();
return _.find(this.channels, function(that) {
return that.name.toLowerCase() === name;
});
};
2014-09-13 23:29:45 +02:00
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);
}
}