thelounge/src/server.js

327 lines
7.7 KiB
JavaScript
Raw Normal View History

"use strict";
var _ = require("lodash");
var pkg = require("../package.json");
2014-10-03 11:57:35 +02:00
var bcrypt = require("bcrypt-nodejs");
var Client = require("./client");
var ClientManager = require("./clientManager");
2014-09-27 00:12:53 +02:00
var express = require("express");
var fs = require("fs");
var io = require("socket.io");
2016-04-03 07:12:49 +02:00
var dns = require("dns");
var Helper = require("./helper");
2016-07-30 03:20:38 +02:00
var ldap = require("ldapjs");
2016-04-26 22:41:08 +02:00
var manager = null;
2016-07-30 03:20:38 +02:00
var ldapclient = null;
var authFunction = localAuth;
module.exports = function() {
2016-04-26 22:41:08 +02:00
manager = new ClientManager();
2014-09-27 00:12:53 +02:00
var app = express()
.use(allRequests)
.use(index)
2014-10-04 01:33:44 +02:00
.use(express.static("client"));
var config = Helper.config;
2014-09-27 01:26:21 +02:00
var server = null;
2016-07-30 03:20:38 +02:00
if (config.public && (config.ldap || {}).enable) {
log.warn("Server is public and set to use LDAP. Set to private mode if trying to use LDAP authentication.");
2016-07-30 03:20:38 +02:00
}
if (!config.https.enable) {
2014-09-27 01:26:21 +02:00
server = require("http");
server = server.createServer(app).listen(config.port, config.host);
2014-09-27 01:26:21 +02:00
} else {
2016-03-09 13:04:05 +01:00
server = require("spdy");
2014-09-27 01:26:21 +02:00
server = server.createServer({
key: fs.readFileSync(Helper.expandHome(config.https.key)),
cert: fs.readFileSync(Helper.expandHome(config.https.certificate))
}, app).listen(config.port, config.host);
2014-09-27 01:26:21 +02:00
}
if (config.identd.enable) {
if (manager.identHandler) {
log.warn("Using both identd and oidentd at the same time!");
}
2014-10-11 19:33:28 +02:00
require("./identd").start(config.identd.port);
}
if (!config.public && (config.ldap || {}).enable) {
2016-07-30 03:20:38 +02:00
ldapclient = ldap.createClient({
url: config.ldap.url
});
authFunction = ldapAuth;
}
var sockets = io(server, {
transports: config.transports
});
sockets.on("connect", function(socket) {
if (config.public) {
auth.call(socket);
} else {
init(socket);
}
});
2014-09-25 00:23:54 +02:00
manager.sockets = sockets;
var protocol = config.https.enable ? "https" : "http";
log.info("The Lounge v" + pkg.version + " is now running on", protocol + "://" + (config.host || "*") + ":" + config.port + "/", (config.public ? "in public mode" : "in private mode"));
2016-04-26 12:51:11 +02:00
log.info("Press ctrl-c to stop\n");
if (!config.public) {
2014-09-25 00:23:54 +02:00
manager.loadUsers();
if (config.autoload) {
manager.autoload();
}
}
};
2016-04-03 07:12:49 +02:00
function getClientIp(req) {
2016-07-31 02:54:09 +02:00
var ip;
if (!Helper.config.reverseProxy) {
2016-07-31 02:54:09 +02:00
ip = req.connection.remoteAddress;
2016-04-03 07:12:49 +02:00
} else {
2016-07-31 02:54:09 +02:00
ip = req.headers["x-forwarded-for"] || req.connection.remoteAddress;
2016-04-03 07:12:49 +02:00
}
2016-07-31 02:54:09 +02:00
return ip.replace(/^::ffff:/, "");
2016-04-03 07:12:49 +02:00
}
function allRequests(req, res, next) {
res.setHeader("X-Content-Type-Options", "nosniff");
return next();
}
// Information to populate the About section in UI, either from npm or from git
var gitCommit = null;
try {
gitCommit = require("child_process")
.execSync("git rev-parse --short HEAD 2> /dev/null") // Returns hash of current commit
.toString()
.trim();
} catch (e) {
// Not a git repository or git is not installed: treat it as npm release
}
function index(req, res, next) {
if (req.url.split("?")[0] !== "/") {
return next();
}
return fs.readFile("client/index.html", "utf-8", function(err, file) {
var data = _.merge(
pkg,
Helper.config
);
data.gitCommit = gitCommit;
data.themes = fs.readdirSync("client/themes/").filter(function(file) {
return file.endsWith(".css");
}).map(function(css) {
return css.slice(0, -4);
});
2016-02-14 18:09:51 +01:00
var template = _.template(file);
res.setHeader("Content-Security-Policy", "default-src *; connect-src 'self' ws: wss:; style-src * 'unsafe-inline'; script-src 'self'; child-src 'none'; object-src 'none'; form-action 'none'; referrer no-referrer;");
res.setHeader("Content-Type", "text/html");
res.writeHead(200);
2016-02-14 18:09:51 +01:00
res.end(template(data));
});
}
2016-05-31 23:28:31 +02:00
function init(socket, client) {
if (!client) {
socket.emit("auth", {success: true});
socket.on("auth", auth);
} else {
2016-09-25 08:52:16 +02:00
socket.emit("authorized");
socket.on(
"input",
function(data) {
2014-09-09 21:31:23 +02:00
client.input(data);
}
);
socket.on(
2014-09-10 21:23:56 +02:00
"more",
function(data) {
2014-09-10 21:23:56 +02:00
client.more(data);
}
);
socket.on(
"conn",
function(data) {
2016-04-03 07:12:49 +02:00
// prevent people from overriding webirc settings
data.ip = null;
data.hostname = null;
client.connect(data);
}
);
2016-07-30 03:20:38 +02:00
if (!Helper.config.public && !Helper.config.ldap.enable) {
socket.on(
"change-password",
function(data) {
var old = data.old_password;
var p1 = data.new_password;
var p2 = data.verify_password;
if (typeof p1 === "undefined" || p1 === "") {
socket.emit("change-password", {
error: "Please enter a new password"
});
return;
}
if (p1 !== p2) {
socket.emit("change-password", {
error: "Both new password fields must match"
});
return;
}
if (!bcrypt.compareSync(old || "", client.config.password)) {
socket.emit("change-password", {
error: "The current password field does not match your account password"
});
return;
}
2016-05-31 23:28:31 +02:00
var salt = bcrypt.genSaltSync(8);
var hash = bcrypt.hashSync(p1, salt);
2016-05-31 23:28:31 +02:00
client.setPassword(hash, function(success) {
var obj = {};
if (success) {
obj.success = "Successfully updated your password, all your other sessions were logged out";
obj.token = client.config.token;
} else {
obj.error = "Failed to update your password";
}
socket.emit("change-password", obj);
});
}
);
}
socket.on(
"open",
function(data) {
client.open(data);
}
2014-09-24 21:42:36 +02:00
);
socket.on(
"sort",
function(data) {
client.sort(data);
}
);
socket.on(
"names",
function(data) {
client.names(data);
}
);
socket.join(client.id);
socket.emit("init", {
active: client.activeChannel,
2014-09-15 23:13:03 +02:00
networks: client.networks,
token: client.config.token || null
});
}
}
2016-05-31 23:28:31 +02:00
function reverseDnsLookup(socket, client) {
2016-04-03 07:12:49 +02:00
client.ip = getClientIp(socket.request);
dns.reverse(client.ip, function(err, host) {
if (!err && host.length) {
client.hostname = host[0];
} else {
client.hostname = client.ip;
}
2016-05-31 23:28:31 +02:00
init(socket, client);
2016-04-03 07:12:49 +02:00
});
}
2016-07-30 03:20:38 +02:00
function localAuth(client, user, password, callback) {
var result = false;
try {
result = bcrypt.compareSync(password || "", client.config.password);
} catch (error) {
if (error === "Not a valid BCrypt hash.") {
log.error("User (" + user + ") with no local password set tried to sign in. (Probably a LDAP user)");
2016-07-30 03:20:38 +02:00
}
result = false;
} finally {
callback(result);
}
}
function ldapAuth(client, user, password, callback) {
var userDN = user.replace(/([,\\\/#+<>;"= ])/g, "\\$1");
var bindDN = Helper.config.ldap.primaryKey + "=" + userDN + "," + Helper.config.ldap.baseDN;
ldapclient.bind(bindDN, password, function(err) {
if (!err && !client) {
if (!manager.addUser(user, null)) {
log.error("Unable to create new user", user);
2016-07-30 03:20:38 +02:00
}
}
callback(!err);
});
}
function auth(data) {
var socket = this;
2016-07-30 03:20:38 +02:00
var client;
if (Helper.config.public) {
2016-07-30 03:20:38 +02:00
client = new Client(manager);
manager.clients.push(client);
socket.on("disconnect", function() {
manager.clients = _.without(manager.clients, client);
client.quit();
});
if (Helper.config.webirc) {
2016-04-03 07:12:49 +02:00
reverseDnsLookup(socket, client);
} else {
init(socket, client);
}
} else {
2016-07-30 03:20:38 +02:00
client = manager.findClient(data.user, data.token);
var signedIn = data.token && client && data.token === client.config.token;
2016-07-30 03:20:38 +02:00
var token;
if (client && (data.remember || data.token)) {
token = client.config.token;
2016-07-30 03:20:38 +02:00
}
var authCallback = function(success) {
2014-09-15 23:13:03 +02:00
if (success) {
2016-07-30 03:20:38 +02:00
if (!client) {
// LDAP just created a user
manager.loadUser(data.user);
client = manager.findClient(data.user);
}
if (Helper.config.webirc !== null && !client.config["ip"]) {
2016-05-31 23:28:31 +02:00
reverseDnsLookup(socket, client);
2016-04-03 07:12:49 +02:00
} else {
2016-07-30 03:20:38 +02:00
init(socket, client, token);
2016-04-03 07:12:49 +02:00
}
2016-07-30 03:20:38 +02:00
} else {
socket.emit("auth", {success: success});
2014-09-15 23:13:03 +02:00
}
2016-07-30 03:20:38 +02:00
};
if (signedIn) {
authCallback(true);
} else {
authFunction(client, data.user, data.password, authCallback);
}
}
}