2016-07-19 01:35:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
const _ = require("lodash");
|
2018-06-15 20:31:06 +00:00
|
|
|
const log = require("./log");
|
2018-01-11 11:33:36 +00:00
|
|
|
const pkg = require("../package.json");
|
|
|
|
const Client = require("./client");
|
|
|
|
const ClientManager = require("./clientManager");
|
|
|
|
const express = require("express");
|
|
|
|
const fs = require("fs");
|
|
|
|
const path = require("path");
|
|
|
|
const io = require("socket.io");
|
|
|
|
const dns = require("dns");
|
2018-09-03 07:30:05 +00:00
|
|
|
const Uploader = require("./plugins/uploader");
|
2018-01-11 11:33:36 +00:00
|
|
|
const Helper = require("./helper");
|
2018-03-02 18:28:54 +00:00
|
|
|
const colors = require("chalk");
|
2017-06-11 19:33:04 +00:00
|
|
|
const net = require("net");
|
2016-12-17 09:51:33 +00:00
|
|
|
const Identification = require("./identification");
|
2017-07-13 18:32:18 +00:00
|
|
|
const changelog = require("./plugins/changelog");
|
2019-07-02 16:02:02 +00:00
|
|
|
const inputs = require("./plugins/inputs");
|
2014-08-14 16:35:37 +00:00
|
|
|
|
2018-01-05 17:40:34 +00:00
|
|
|
const themes = require("./plugins/packages/themes");
|
|
|
|
themes.loadLocalThemes();
|
|
|
|
|
|
|
|
const packages = require("./plugins/packages/index");
|
|
|
|
|
2017-09-01 09:44:53 +00:00
|
|
|
// The order defined the priority: the first available plugin is used
|
|
|
|
// ALways keep local auth in the end, which should always be enabled.
|
2019-07-17 09:33:59 +00:00
|
|
|
const authPlugins = [require("./plugins/auth/ldap"), require("./plugins/auth/local")];
|
2017-09-01 09:44:53 +00:00
|
|
|
|
2017-08-28 09:18:31 +00:00
|
|
|
// A random number that will force clients to reload the page if it differs
|
|
|
|
const serverHash = Math.floor(Date.now() * Math.random());
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
let manager = null;
|
2014-08-14 16:35:37 +00:00
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
module.exports = function (options = {}) {
|
2016-12-17 09:51:33 +00:00
|
|
|
log.info(`The Lounge ${colors.green(Helper.getVersion())} \
|
2019-07-17 09:33:59 +00:00
|
|
|
(Node.js ${colors.green(process.versions.node)} on ${colors.green(process.platform)} ${
|
|
|
|
process.arch
|
|
|
|
})`);
|
2017-12-07 03:54:54 +00:00
|
|
|
log.info(`Configuration file: ${colors.green(Helper.getConfigPath())}`);
|
2014-08-14 16:35:37 +00:00
|
|
|
|
2018-06-06 09:19:51 +00:00
|
|
|
const staticOptions = {
|
|
|
|
redirect: false,
|
|
|
|
maxAge: 86400 * 1000,
|
|
|
|
};
|
|
|
|
|
2019-11-07 20:19:54 +00:00
|
|
|
const app = express();
|
|
|
|
|
|
|
|
if (options.dev) {
|
|
|
|
require("./plugins/dev-server.js")(app);
|
|
|
|
}
|
|
|
|
|
|
|
|
app.set("env", "production")
|
2017-11-12 18:24:21 +00:00
|
|
|
.disable("x-powered-by")
|
2016-05-01 17:27:10 +00:00
|
|
|
.use(allRequests)
|
2019-03-21 09:43:13 +00:00
|
|
|
.get("/", indexRequest)
|
|
|
|
.get("/service-worker.js", forceNoCacheRequest)
|
|
|
|
.get("/js/bundle.js.map", forceNoCacheRequest)
|
|
|
|
.get("/css/style.css.map", forceNoCacheRequest)
|
2018-06-06 09:19:51 +00:00
|
|
|
.use(express.static(path.join(__dirname, "..", "public"), staticOptions))
|
|
|
|
.use("/storage/", express.static(Helper.getStoragePath(), staticOptions));
|
2014-11-01 20:06:01 +00:00
|
|
|
|
2018-09-03 07:30:05 +00:00
|
|
|
if (Helper.config.fileUpload.enable) {
|
|
|
|
Uploader.router(app);
|
|
|
|
}
|
|
|
|
|
2018-01-12 05:46:55 +00:00
|
|
|
// This route serves *installed themes only*. Local themes are served directly
|
|
|
|
// from the `public/themes/` folder as static assets, without entering this
|
2018-09-03 07:30:05 +00:00
|
|
|
// handler. Remember this if you make changes to this function, serving of
|
2018-01-12 05:46:55 +00:00
|
|
|
// local themes will not get those changes.
|
2017-06-22 21:09:55 +00:00
|
|
|
app.get("/themes/:theme.css", (req, res) => {
|
|
|
|
const themeName = req.params.theme;
|
2019-07-22 16:50:04 +00:00
|
|
|
const theme = themes.getByName(themeName);
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2017-06-22 21:09:55 +00:00
|
|
|
if (theme === undefined) {
|
|
|
|
return res.status(404).send("Not found");
|
|
|
|
}
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2019-07-22 16:50:04 +00:00
|
|
|
return res.sendFile(theme.filename);
|
2017-06-22 21:09:55 +00:00
|
|
|
});
|
|
|
|
|
2018-01-05 17:40:34 +00:00
|
|
|
app.get("/packages/:package/:filename", (req, res) => {
|
|
|
|
const packageName = req.params.package;
|
|
|
|
const fileName = req.params.filename;
|
|
|
|
const packageFile = packages.getPackage(packageName);
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2019-10-02 09:28:08 +00:00
|
|
|
if (!packageFile || !packages.getFiles().includes(`${packageName}/${fileName}`)) {
|
2018-01-05 17:40:34 +00:00
|
|
|
return res.status(404).send("Not found");
|
|
|
|
}
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2018-01-05 17:40:34 +00:00
|
|
|
const packagePath = Helper.getPackageModulePath(packageName);
|
|
|
|
return res.sendFile(path.join(packagePath, fileName));
|
|
|
|
});
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
let server = null;
|
2014-09-26 23:26:21 +00:00
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
if (Helper.config.public && (Helper.config.ldap || {}).enable) {
|
2019-07-17 09:33:59 +00:00
|
|
|
log.warn(
|
|
|
|
"Server is public and set to use LDAP. Set to private mode if trying to use LDAP authentication."
|
|
|
|
);
|
2016-07-30 01:20:38 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
if (!Helper.config.https.enable) {
|
2014-09-26 23:26:21 +00:00
|
|
|
server = require("http");
|
2016-12-17 09:51:33 +00:00
|
|
|
server = server.createServer(app);
|
2014-09-26 23:26:21 +00:00
|
|
|
} else {
|
2018-01-11 11:33:36 +00:00
|
|
|
const keyPath = Helper.expandHome(Helper.config.https.key);
|
|
|
|
const certPath = Helper.expandHome(Helper.config.https.certificate);
|
|
|
|
const caPath = Helper.expandHome(Helper.config.https.ca);
|
2017-04-13 21:05:28 +00:00
|
|
|
|
|
|
|
if (!keyPath.length || !fs.existsSync(keyPath)) {
|
2016-10-04 22:35:04 +00:00
|
|
|
log.error("Path to SSL key is invalid. Stopping server...");
|
|
|
|
process.exit();
|
|
|
|
}
|
2017-04-13 21:05:28 +00:00
|
|
|
|
|
|
|
if (!certPath.length || !fs.existsSync(certPath)) {
|
2016-10-04 22:35:04 +00:00
|
|
|
log.error("Path to SSL certificate is invalid. Stopping server...");
|
|
|
|
process.exit();
|
|
|
|
}
|
2017-04-13 21:05:28 +00:00
|
|
|
|
2017-04-10 18:49:58 +00:00
|
|
|
if (caPath.length && !fs.existsSync(caPath)) {
|
|
|
|
log.error("Path to SSL ca bundle is invalid. Stopping server...");
|
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
|
2018-08-29 12:35:06 +00:00
|
|
|
server = require("https");
|
2019-07-17 09:33:59 +00:00
|
|
|
server = server.createServer(
|
|
|
|
{
|
|
|
|
key: fs.readFileSync(keyPath),
|
|
|
|
cert: fs.readFileSync(certPath),
|
|
|
|
ca: caPath ? fs.readFileSync(caPath) : undefined,
|
|
|
|
},
|
|
|
|
app
|
|
|
|
);
|
2014-09-26 23:26:21 +00:00
|
|
|
}
|
|
|
|
|
2017-08-31 18:56:20 +00:00
|
|
|
let listenParams;
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
if (typeof Helper.config.host === "string" && Helper.config.host.startsWith("unix:")) {
|
|
|
|
listenParams = Helper.config.host.replace(/^unix:/, "");
|
2017-08-31 18:56:20 +00:00
|
|
|
} else {
|
|
|
|
listenParams = {
|
2018-01-11 11:33:36 +00:00
|
|
|
port: Helper.config.port,
|
|
|
|
host: Helper.config.host,
|
2017-08-31 18:56:20 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-09-03 12:13:56 +00:00
|
|
|
server.on("error", (err) => log.error(`${err}`));
|
|
|
|
|
2017-08-31 18:56:20 +00:00
|
|
|
server.listen(listenParams, () => {
|
|
|
|
if (typeof listenParams === "string") {
|
|
|
|
log.info("Available on socket " + colors.green(listenParams));
|
|
|
|
} else {
|
2018-01-11 11:33:36 +00:00
|
|
|
const protocol = Helper.config.https.enable ? "https" : "http";
|
2017-08-31 18:56:20 +00:00
|
|
|
const address = server.address();
|
|
|
|
|
2019-12-16 17:24:30 +00:00
|
|
|
if (address.family === "IPv6") {
|
|
|
|
address.address = "[" + address.address + "]";
|
|
|
|
}
|
|
|
|
|
2017-08-31 18:56:20 +00:00
|
|
|
log.info(
|
|
|
|
"Available at " +
|
2019-07-17 09:33:59 +00:00
|
|
|
colors.green(`${protocol}://${address.address}:${address.port}/`) +
|
|
|
|
` in ${colors.bold(Helper.config.public ? "public" : "private")} mode`
|
2017-08-31 18:56:20 +00:00
|
|
|
);
|
|
|
|
}
|
2017-08-23 05:19:50 +00:00
|
|
|
|
|
|
|
const sockets = io(server, {
|
2018-02-23 10:35:35 +00:00
|
|
|
wsEngine: "ws",
|
2019-08-03 09:03:02 +00:00
|
|
|
cookie: false,
|
2017-08-23 05:19:50 +00:00
|
|
|
serveClient: false,
|
2018-01-11 11:33:36 +00:00
|
|
|
transports: Helper.config.transports,
|
2017-08-23 05:19:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
sockets.on("connect", (socket) => {
|
2019-06-10 10:13:27 +00:00
|
|
|
socket.on("error", (err) => log.error(`io socket error: ${err}`));
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
if (Helper.config.public) {
|
2017-08-23 05:19:50 +00:00
|
|
|
performAuthentication.call(socket, {});
|
|
|
|
} else {
|
2019-11-05 19:29:51 +00:00
|
|
|
socket.on("auth:perform", performAuthentication);
|
|
|
|
socket.emit("auth:start", serverHash);
|
2017-08-23 05:19:50 +00:00
|
|
|
}
|
|
|
|
});
|
2014-08-14 16:35:37 +00:00
|
|
|
|
2017-08-23 05:19:50 +00:00
|
|
|
manager = new ClientManager();
|
2019-07-05 14:02:57 +00:00
|
|
|
packages.loadPackages();
|
2016-12-07 05:50:11 +00:00
|
|
|
|
2019-07-22 16:50:04 +00:00
|
|
|
const defaultTheme = themes.getByName(Helper.config.theme);
|
|
|
|
|
|
|
|
if (defaultTheme === undefined) {
|
|
|
|
log.warn(
|
|
|
|
`The specified default theme "${colors.red(
|
|
|
|
Helper.config.theme
|
|
|
|
)}" does not exist, verify your config.`
|
|
|
|
);
|
|
|
|
Helper.config.theme = "default";
|
|
|
|
} else if (defaultTheme.themeColor) {
|
|
|
|
Helper.config.themeColor = defaultTheme.themeColor;
|
|
|
|
}
|
|
|
|
|
2017-08-23 05:19:50 +00:00
|
|
|
new Identification((identHandler) => {
|
|
|
|
manager.init(identHandler, sockets);
|
|
|
|
});
|
2017-08-30 17:26:45 +00:00
|
|
|
|
|
|
|
// Handle ctrl+c and kill gracefully
|
|
|
|
let suicideTimeout = null;
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
const exitGracefully = function () {
|
2017-08-30 17:26:45 +00:00
|
|
|
if (suicideTimeout !== null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-18 11:08:18 +00:00
|
|
|
log.info("Exiting...");
|
|
|
|
|
|
|
|
// Close all client and IRC connections
|
|
|
|
manager.clients.forEach((client) => client.quit());
|
|
|
|
|
2017-12-18 14:58:43 +00:00
|
|
|
if (Helper.config.prefetchStorage) {
|
|
|
|
log.info("Clearing prefetch storage folder, this might take a while...");
|
|
|
|
|
|
|
|
require("./plugins/storage").emptyDir();
|
|
|
|
}
|
|
|
|
|
2017-08-30 17:26:45 +00:00
|
|
|
// Forcefully exit after 3 seconds
|
|
|
|
suicideTimeout = setTimeout(() => process.exit(1), 3000);
|
|
|
|
|
|
|
|
// Close http server
|
|
|
|
server.close(() => {
|
|
|
|
clearTimeout(suicideTimeout);
|
|
|
|
process.exit(0);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
process.on("SIGINT", exitGracefully);
|
|
|
|
process.on("SIGTERM", exitGracefully);
|
2017-12-18 14:58:43 +00:00
|
|
|
|
|
|
|
// Clear storage folder after server starts successfully
|
|
|
|
if (Helper.config.prefetchStorage) {
|
|
|
|
require("./plugins/storage").emptyDir();
|
|
|
|
}
|
2017-10-06 09:53:08 +00:00
|
|
|
|
2020-01-17 10:17:37 +00:00
|
|
|
changelog.checkForUpdates(manager);
|
2016-12-17 09:51:33 +00:00
|
|
|
});
|
2017-10-06 09:53:08 +00:00
|
|
|
|
|
|
|
return server;
|
2014-08-14 16:35:37 +00:00
|
|
|
};
|
|
|
|
|
2017-12-28 13:34:49 +00:00
|
|
|
function getClientLanguage(socket) {
|
|
|
|
const acceptLanguage = socket.handshake.headers["accept-language"];
|
|
|
|
|
|
|
|
if (typeof acceptLanguage === "string" && /^[\x00-\x7F]{1,50}$/.test(acceptLanguage)) {
|
|
|
|
// only allow ASCII strings between 1-50 characters in length
|
|
|
|
return acceptLanguage;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-10-12 07:57:25 +00:00
|
|
|
function getClientIp(socket) {
|
2019-01-09 09:38:21 +00:00
|
|
|
let ip = socket.handshake.address || "127.0.0.1";
|
2016-07-31 00:54:09 +00:00
|
|
|
|
2017-06-11 19:33:04 +00:00
|
|
|
if (Helper.config.reverseProxy) {
|
2019-07-17 09:33:59 +00:00
|
|
|
const forwarded = (socket.handshake.headers["x-forwarded-for"] || "")
|
|
|
|
.split(/\s*,\s*/)
|
|
|
|
.filter(Boolean);
|
2017-06-11 19:33:04 +00:00
|
|
|
|
|
|
|
if (forwarded.length && net.isIP(forwarded[0])) {
|
|
|
|
ip = forwarded[0];
|
|
|
|
}
|
2016-04-03 05:12:49 +00:00
|
|
|
}
|
2016-07-31 00:54:09 +00:00
|
|
|
|
|
|
|
return ip.replace(/^::ffff:/, "");
|
2016-04-03 05:12:49 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 09:51:22 +00:00
|
|
|
function getClientSecure(socket) {
|
|
|
|
let secure = socket.handshake.secure;
|
|
|
|
|
|
|
|
if (Helper.config.reverseProxy && socket.handshake.headers["x-forwarded-proto"] === "https") {
|
|
|
|
secure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return secure;
|
|
|
|
}
|
|
|
|
|
2016-05-01 17:27:10 +00:00
|
|
|
function allRequests(req, res, next) {
|
|
|
|
res.setHeader("X-Content-Type-Options", "nosniff");
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
2019-03-21 09:43:13 +00:00
|
|
|
function forceNoCacheRequest(req, res, next) {
|
|
|
|
// Intermittent proxies must not cache the following requests,
|
|
|
|
// browsers must fetch the latest version of these files (service worker, source maps)
|
|
|
|
res.setHeader("Cache-Control", "no-cache, no-transform");
|
|
|
|
return next();
|
|
|
|
}
|
2016-05-01 09:41:17 +00:00
|
|
|
|
2019-03-21 09:43:13 +00:00
|
|
|
function indexRequest(req, res) {
|
2017-07-06 15:33:09 +00:00
|
|
|
const policies = [
|
2017-12-07 18:45:45 +00:00
|
|
|
"default-src 'none'", // default to nothing
|
2019-12-22 19:24:46 +00:00
|
|
|
"base-uri 'none'", // disallow <base>, has no fallback to default-src
|
2018-09-02 17:34:47 +00:00
|
|
|
"form-action 'self'", // 'self' to fix saving passwords in Firefox, even though login is handled in javascript
|
2017-12-07 18:45:45 +00:00
|
|
|
"connect-src 'self' ws: wss:", // allow self for polling; websockets
|
2018-01-30 09:23:34 +00:00
|
|
|
"style-src 'self' https: 'unsafe-inline'", // allow inline due to use in irc hex colors
|
2017-12-07 18:45:45 +00:00
|
|
|
"script-src 'self'", // javascript
|
|
|
|
"worker-src 'self'", // service worker
|
|
|
|
"manifest-src 'self'", // manifest.json
|
|
|
|
"font-src 'self' https:", // allow loading fonts from secure sites (e.g. google fonts)
|
|
|
|
"media-src 'self' https:", // self for notification sound; allow https media (audio previews)
|
2017-07-06 15:33:09 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// If prefetch is enabled, but storage is not, we have to allow mixed content
|
2017-12-27 18:56:38 +00:00
|
|
|
// - https://user-images.githubusercontent.com is where we currently push our changelog screenshots
|
|
|
|
// - data: is required for the HTML5 video player
|
2017-07-06 15:33:09 +00:00
|
|
|
if (Helper.config.prefetchStorage || !Helper.config.prefetch) {
|
2017-12-27 18:56:38 +00:00
|
|
|
policies.push("img-src 'self' data: https://user-images.githubusercontent.com");
|
2017-07-06 15:33:09 +00:00
|
|
|
policies.unshift("block-all-mixed-content");
|
2017-12-07 18:45:45 +00:00
|
|
|
} else {
|
2017-12-27 18:56:38 +00:00
|
|
|
policies.push("img-src http: https: data:");
|
2017-07-06 15:33:09 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 18:24:21 +00:00
|
|
|
res.setHeader("Content-Type", "text/html");
|
2017-07-06 15:33:09 +00:00
|
|
|
res.setHeader("Content-Security-Policy", policies.join("; "));
|
2017-04-20 10:17:25 +00:00
|
|
|
res.setHeader("Referrer-Policy", "no-referrer");
|
2017-11-12 18:24:21 +00:00
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
return fs.readFile(
|
|
|
|
path.join(__dirname, "..", "client", "index.html.tpl"),
|
|
|
|
"utf-8",
|
|
|
|
(err, file) => {
|
|
|
|
if (err) {
|
|
|
|
throw err;
|
|
|
|
}
|
2017-11-12 18:24:21 +00:00
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
const config = getServerConfiguration();
|
|
|
|
config.cacheBust = Helper.getVersionCacheBust();
|
2019-03-08 10:29:49 +00:00
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
res.send(_.template(file)(config));
|
|
|
|
}
|
|
|
|
);
|
2014-08-14 16:35:37 +00:00
|
|
|
}
|
|
|
|
|
2019-10-17 10:53:29 +00:00
|
|
|
function initializeClient(socket, client, token, lastMessage, openChannel) {
|
2019-11-05 19:29:51 +00:00
|
|
|
socket.off("auth:perform", performAuthentication);
|
|
|
|
socket.emit("auth:success");
|
2016-09-25 06:52:16 +00:00
|
|
|
|
2017-10-17 09:45:18 +00:00
|
|
|
client.clientAttach(socket.id, token);
|
|
|
|
|
2019-10-17 10:53:29 +00:00
|
|
|
// Client sends currently active channel on reconnect,
|
|
|
|
// pass it into `open` directly so it is verified and updated if necessary
|
|
|
|
if (openChannel) {
|
|
|
|
client.open(socket.id, openChannel);
|
|
|
|
|
|
|
|
// If client provided channel passes checks, use it. if client has invalid
|
|
|
|
// channel open (or windows like settings) then use last known server active channel
|
|
|
|
openChannel = client.attachedClients[socket.id].openChannel || client.lastActiveChannel;
|
|
|
|
} else {
|
|
|
|
openChannel = client.lastActiveChannel;
|
|
|
|
}
|
|
|
|
|
2018-09-03 07:30:05 +00:00
|
|
|
if (Helper.config.fileUpload.enable) {
|
2018-09-04 09:08:30 +00:00
|
|
|
new Uploader(socket);
|
2018-09-03 07:30:05 +00:00
|
|
|
}
|
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
socket.on("disconnect", function () {
|
2018-10-21 08:05:05 +00:00
|
|
|
process.nextTick(() => client.clientDetach(socket.id));
|
2017-08-13 18:37:12 +00:00
|
|
|
});
|
2016-11-19 20:34:05 +00:00
|
|
|
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("input", (data) => {
|
|
|
|
if (typeof data === "object") {
|
2017-08-13 18:37:12 +00:00
|
|
|
client.input(data);
|
|
|
|
}
|
2018-02-21 11:17:56 +00:00
|
|
|
});
|
2016-09-25 06:41:10 +00:00
|
|
|
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("more", (data) => {
|
|
|
|
if (typeof data === "object") {
|
2018-01-07 13:04:37 +00:00
|
|
|
const history = client.more(data);
|
|
|
|
|
|
|
|
if (history !== null) {
|
|
|
|
socket.emit("more", history);
|
|
|
|
}
|
2017-08-13 18:37:12 +00:00
|
|
|
}
|
2018-02-21 11:17:56 +00:00
|
|
|
});
|
2017-08-13 18:37:12 +00:00
|
|
|
|
2018-03-15 08:37:32 +00:00
|
|
|
socket.on("network:new", (data) => {
|
2018-02-21 11:17:56 +00:00
|
|
|
if (typeof data === "object") {
|
2017-08-13 18:37:12 +00:00
|
|
|
// prevent people from overriding webirc settings
|
2017-11-28 17:25:15 +00:00
|
|
|
data.uuid = null;
|
2018-03-15 08:37:05 +00:00
|
|
|
data.commands = null;
|
2018-07-11 07:57:02 +00:00
|
|
|
data.ignoreList = null;
|
2017-08-13 18:37:12 +00:00
|
|
|
|
|
|
|
client.connect(data);
|
|
|
|
}
|
2018-02-21 11:17:56 +00:00
|
|
|
});
|
2017-08-13 18:37:12 +00:00
|
|
|
|
2018-03-15 08:37:05 +00:00
|
|
|
socket.on("network:get", (data) => {
|
|
|
|
if (typeof data !== "string") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const network = _.find(client.networks, {uuid: data});
|
|
|
|
|
|
|
|
if (!network) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 18:45:00 +00:00
|
|
|
socket.emit("network:info", network.exportForEdit());
|
2018-03-15 08:37:05 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
socket.on("network:edit", (data) => {
|
|
|
|
if (typeof data !== "object") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const network = _.find(client.networks, {uuid: data.uuid});
|
|
|
|
|
|
|
|
if (!network) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
network.edit(client, data);
|
|
|
|
});
|
|
|
|
|
2020-01-30 08:52:29 +00:00
|
|
|
socket.on("history:clear", (data) => {
|
|
|
|
if (typeof data === "object") {
|
|
|
|
client.clearHistory(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
if (!Helper.config.public && !Helper.config.ldap.enable) {
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("change-password", (data) => {
|
|
|
|
if (typeof data === "object") {
|
2018-01-11 11:33:36 +00:00
|
|
|
const old = data.old_password;
|
|
|
|
const p1 = data.new_password;
|
|
|
|
const p2 = data.verify_password;
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2019-03-03 15:19:48 +00:00
|
|
|
if (typeof p1 === "undefined" || p1 === "" || p1 !== p2) {
|
2017-08-13 18:37:12 +00:00
|
|
|
socket.emit("change-password", {
|
2019-03-03 15:19:48 +00:00
|
|
|
error: "",
|
2019-03-03 15:27:57 +00:00
|
|
|
success: false,
|
2017-08-13 18:37:12 +00:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2016-05-31 21:28:31 +00:00
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
Helper.password
|
|
|
|
.compare(old || "", client.config.password)
|
|
|
|
.then((matching) => {
|
|
|
|
if (!matching) {
|
|
|
|
socket.emit("change-password", {
|
2019-03-03 15:19:48 +00:00
|
|
|
error: "password_incorrect",
|
2019-03-03 15:27:57 +00:00
|
|
|
success: false,
|
2017-08-13 18:37:12 +00:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
const hash = Helper.password.hash(p1);
|
2017-03-23 07:47:51 +00:00
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
client.setPassword(hash, (success) => {
|
2019-03-03 15:27:57 +00:00
|
|
|
const obj = {success: false};
|
2017-03-23 07:47:51 +00:00
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
if (success) {
|
2019-03-03 15:19:48 +00:00
|
|
|
obj.success = true;
|
2017-08-13 18:37:12 +00:00
|
|
|
} else {
|
2019-03-03 15:19:48 +00:00
|
|
|
obj.error = "update_failed";
|
2017-08-13 18:37:12 +00:00
|
|
|
}
|
2017-03-23 07:47:51 +00:00
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
socket.emit("change-password", obj);
|
2017-03-23 07:47:51 +00:00
|
|
|
});
|
2019-07-17 09:33:59 +00:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
2017-08-13 18:37:12 +00:00
|
|
|
log.error(`Error while checking users password. Error: ${error}`);
|
|
|
|
});
|
2016-02-17 02:29:44 +00:00
|
|
|
}
|
2018-02-21 11:17:56 +00:00
|
|
|
});
|
2017-08-13 18:37:12 +00:00
|
|
|
}
|
2017-07-24 06:01:25 +00:00
|
|
|
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("open", (data) => {
|
|
|
|
client.open(socket.id, data);
|
|
|
|
});
|
2017-07-24 06:01:25 +00:00
|
|
|
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("sort", (data) => {
|
|
|
|
if (typeof data === "object") {
|
2017-08-13 18:37:12 +00:00
|
|
|
client.sort(data);
|
|
|
|
}
|
2018-02-21 11:17:56 +00:00
|
|
|
});
|
2017-07-24 06:01:25 +00:00
|
|
|
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("names", (data) => {
|
|
|
|
if (typeof data === "object") {
|
2017-08-13 18:37:12 +00:00
|
|
|
client.names(data);
|
|
|
|
}
|
2018-02-21 11:17:56 +00:00
|
|
|
});
|
2017-08-13 18:37:12 +00:00
|
|
|
|
2019-07-04 07:41:09 +00:00
|
|
|
socket.on("changelog", () => {
|
|
|
|
Promise.all([changelog.fetch(), packages.outdated()]).then(
|
|
|
|
([changelogData, packageUpdate]) => {
|
|
|
|
changelogData.packages = packageUpdate;
|
|
|
|
socket.emit("changelog", changelogData);
|
|
|
|
}
|
|
|
|
);
|
Improve UI of the About section and changelog viewer
- Keep consistent width between the Help page and Changelog (which is already different from other windows 😠)
- Add icons to the About links
- Make sure `li` elements (i.e. all the lists in changelogs) are consistent in size with rest of the client
- Display version and release notes link on the "About The Lounge" header line, smaller, pushed to the right
- Check new releases when opening the Help window in order to display it without having to open the release notes. Release notes are being fed to the Changelog page at that moment to avoid fetching twice.
- Re-check version/fetch release notes after 24h. Since The Lounge can now run 24/7, reconnect when losing the network, we have to assume an "always-on" usage.
- Change icon, animate background color when getting response from GitHub to avoid flashing.
- Combine click handlers with our wonderful window management. These were the same handler, even with similar checks (`target` exists, etc.), just in 2 different places. This is necessary for the next item.
- Combine "Open release notes" and "Go back to Help" button behaviors with window management handlers. The window management code is gross as ever, and is in desperate need of a refactor, but at least there is no duplicated code for the same behavior + history management. This fixes the "Next" history behavior (however reloading the app while viewing the notes does not load on the notes, but this is a bug for a different PR!).
- Added a rule in the history management thingy: if a link we want to add history handling to has an `id`, store that in the state
- Added a button to go back to the Help window
- Fixed links to releases
- Send user to the GitHub issues *list* instead of *new issue form* because if they do not have a GitHub account, they will be redirected to the login page, which is a rather unpleasant experience when you are already confused...
- Fixed a bug that would return data about a new release in `latest` even though it is already the `current`. It was showing the current version as "The Lounge v... is now available".
- Added https://user-images.githubusercontent.com to the CSP rule when prefetch storage is enabled, because that is where we have stored screenshots in the changelog so far. Meh (we can improve that later if we decide to have a dedicated place for screenshots).
- Fetch changelog info even in public mode because users in public mode can access the release notes. They do not see the result of the version checker however.
2017-12-23 03:40:41 +00:00
|
|
|
});
|
2017-07-13 18:32:18 +00:00
|
|
|
|
2018-02-21 11:17:56 +00:00
|
|
|
socket.on("msg:preview:toggle", (data) => {
|
|
|
|
if (typeof data !== "object") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
const networkAndChan = client.find(data.target);
|
2019-11-04 10:41:04 +00:00
|
|
|
const newState = Boolean(data.shown);
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
if (!networkAndChan) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-04 10:41:04 +00:00
|
|
|
// Process multiple message at once for /collapse and /expand commands
|
|
|
|
if (Array.isArray(data.messageIds)) {
|
|
|
|
for (const msgId of data.messageIds) {
|
|
|
|
const message = networkAndChan.chan.findMessage(msgId);
|
|
|
|
|
|
|
|
for (const preview of message.previews) {
|
|
|
|
preview.shown = newState;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
const message = networkAndChan.chan.findMessage(data.msgId);
|
|
|
|
|
|
|
|
if (!message) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const preview = message.findPreview(data.link);
|
|
|
|
|
|
|
|
if (preview) {
|
2019-11-04 10:41:04 +00:00
|
|
|
preview.shown = newState;
|
2017-08-13 18:37:12 +00:00
|
|
|
}
|
|
|
|
});
|
2017-07-24 06:01:25 +00:00
|
|
|
|
2018-02-20 11:24:46 +00:00
|
|
|
if (!Helper.config.public) {
|
|
|
|
socket.on("push:register", (subscription) => {
|
2019-06-25 08:51:47 +00:00
|
|
|
if (!Object.prototype.hasOwnProperty.call(client.config.sessions, token)) {
|
2018-02-20 11:24:46 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-10 19:47:03 +00:00
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
const registration = client.registerPushSubscription(
|
|
|
|
client.config.sessions[token],
|
|
|
|
subscription
|
|
|
|
);
|
2017-07-10 19:47:03 +00:00
|
|
|
|
2018-02-20 11:24:46 +00:00
|
|
|
if (registration) {
|
|
|
|
client.manager.webPush.pushSingle(client, registration, {
|
|
|
|
type: "notification",
|
|
|
|
timestamp: Date.now(),
|
|
|
|
title: "The Lounge",
|
|
|
|
body: "🚀 Push notifications have been enabled",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2017-07-10 19:47:03 +00:00
|
|
|
|
2018-02-20 11:24:46 +00:00
|
|
|
socket.on("push:unregister", () => client.unregisterPushSubscription(token));
|
|
|
|
}
|
2017-07-10 19:47:03 +00:00
|
|
|
|
2017-08-15 09:44:29 +00:00
|
|
|
const sendSessionList = () => {
|
|
|
|
const sessions = _.map(client.config.sessions, (session, sessionToken) => ({
|
|
|
|
current: sessionToken === token,
|
2020-03-17 15:36:13 +00:00
|
|
|
active: _.reduce(
|
|
|
|
client.attachedClients,
|
|
|
|
(count, attachedClient) => count + (attachedClient.token === sessionToken ? 1 : 0),
|
|
|
|
0
|
|
|
|
),
|
2017-08-15 09:44:29 +00:00
|
|
|
lastUse: session.lastUse,
|
|
|
|
ip: session.ip,
|
|
|
|
agent: session.agent,
|
|
|
|
token: sessionToken, // TODO: Ideally don't expose actual tokens to the client
|
|
|
|
}));
|
|
|
|
|
|
|
|
socket.emit("sessions:list", sessions);
|
|
|
|
};
|
|
|
|
|
|
|
|
socket.on("sessions:get", sendSessionList);
|
|
|
|
|
2017-12-11 19:01:15 +00:00
|
|
|
if (!Helper.config.public) {
|
|
|
|
socket.on("setting:set", (newSetting) => {
|
|
|
|
if (!newSetting || typeof newSetting !== "object") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
if (
|
|
|
|
typeof newSetting.value === "object" ||
|
|
|
|
typeof newSetting.name !== "string" ||
|
|
|
|
newSetting.name[0] === "_"
|
|
|
|
) {
|
2019-01-16 08:52:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-11 19:01:15 +00:00
|
|
|
// We do not need to do write operations and emit events if nothing changed.
|
|
|
|
if (client.config.clientSettings[newSetting.name] !== newSetting.value) {
|
|
|
|
client.config.clientSettings[newSetting.name] = newSetting.value;
|
|
|
|
|
|
|
|
// Pass the setting to all clients.
|
|
|
|
client.emit("setting:new", {
|
|
|
|
name: newSetting.name,
|
|
|
|
value: newSetting.value,
|
|
|
|
});
|
|
|
|
|
2019-12-15 15:26:18 +00:00
|
|
|
client.save();
|
2019-01-16 09:23:12 +00:00
|
|
|
|
|
|
|
if (newSetting.name === "highlights") {
|
|
|
|
client.compileCustomHighlights();
|
2019-03-11 17:25:02 +00:00
|
|
|
} else if (newSetting.name === "awayMessage") {
|
|
|
|
if (typeof newSetting.value !== "string") {
|
|
|
|
newSetting.value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
client.awayMessage = newSetting.value;
|
2019-01-16 09:23:12 +00:00
|
|
|
}
|
2017-12-11 19:01:15 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on("setting:get", () => {
|
2019-06-25 08:51:47 +00:00
|
|
|
if (!Object.prototype.hasOwnProperty.call(client.config, "clientSettings")) {
|
2017-12-11 19:01:15 +00:00
|
|
|
socket.emit("setting:all", {});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const clientSettings = client.config.clientSettings;
|
|
|
|
socket.emit("setting:all", clientSettings);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-15 09:44:29 +00:00
|
|
|
socket.on("sign-out", (tokenToSignOut) => {
|
|
|
|
// If no token provided, sign same client out
|
|
|
|
if (!tokenToSignOut) {
|
|
|
|
tokenToSignOut = token;
|
|
|
|
}
|
|
|
|
|
2019-06-25 08:51:47 +00:00
|
|
|
if (!Object.prototype.hasOwnProperty.call(client.config.sessions, tokenToSignOut)) {
|
2017-08-15 09:44:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete client.config.sessions[tokenToSignOut];
|
2017-07-24 06:01:25 +00:00
|
|
|
|
2019-12-15 15:26:18 +00:00
|
|
|
client.save();
|
2017-07-24 06:01:25 +00:00
|
|
|
|
2017-08-15 09:44:29 +00:00
|
|
|
_.map(client.attachedClients, (attachedClient, socketId) => {
|
|
|
|
if (attachedClient.token !== tokenToSignOut) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const socketToRemove = manager.sockets.of("/").connected[socketId];
|
|
|
|
|
|
|
|
socketToRemove.emit("sign-out");
|
|
|
|
socketToRemove.disconnect();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Do not send updated session list if user simply logs out
|
|
|
|
if (tokenToSignOut !== token) {
|
|
|
|
sendSessionList();
|
|
|
|
}
|
2017-08-13 18:37:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
socket.join(client.id);
|
|
|
|
|
|
|
|
const sendInitEvent = (tokenToSend) => {
|
|
|
|
socket.emit("init", {
|
2019-10-17 10:53:29 +00:00
|
|
|
active: openChannel,
|
2019-07-17 09:33:59 +00:00
|
|
|
networks: client.networks.map((network) =>
|
2019-10-17 10:53:29 +00:00
|
|
|
network.getFilteredClone(openChannel, lastMessage)
|
2019-07-17 09:33:59 +00:00
|
|
|
),
|
2017-11-15 06:35:15 +00:00
|
|
|
token: tokenToSend,
|
2017-08-13 18:37:12 +00:00
|
|
|
});
|
2019-07-02 16:02:02 +00:00
|
|
|
socket.emit("commands", inputs.getCommands());
|
2017-08-13 18:37:12 +00:00
|
|
|
};
|
|
|
|
|
2019-12-15 15:07:17 +00:00
|
|
|
if (Helper.config.public) {
|
|
|
|
sendInitEvent(null);
|
|
|
|
} else if (token === null) {
|
2017-08-13 18:37:12 +00:00
|
|
|
client.generateToken((newToken) => {
|
2019-12-15 15:07:17 +00:00
|
|
|
token = client.calculateTokenHash(newToken);
|
|
|
|
client.attachedClients[socket.id].token = token;
|
2017-08-13 18:37:12 +00:00
|
|
|
|
2017-10-12 07:57:25 +00:00
|
|
|
client.updateSession(token, getClientIp(socket), socket.request);
|
2017-06-21 07:58:29 +00:00
|
|
|
|
2018-01-05 13:26:12 +00:00
|
|
|
sendInitEvent(newToken);
|
2014-08-14 16:35:37 +00:00
|
|
|
});
|
2017-08-13 18:37:12 +00:00
|
|
|
} else {
|
2019-12-15 15:07:17 +00:00
|
|
|
client.updateSession(token, getClientIp(socket), socket.request);
|
2017-08-13 18:37:12 +00:00
|
|
|
sendInitEvent(null);
|
2014-08-14 16:35:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-02 18:45:00 +00:00
|
|
|
function getClientConfiguration() {
|
2017-11-04 17:32:18 +00:00
|
|
|
const config = _.pick(Helper.config, [
|
|
|
|
"public",
|
|
|
|
"lockNetwork",
|
|
|
|
"displayNetwork",
|
|
|
|
"useHexIp",
|
|
|
|
"prefetch",
|
|
|
|
]);
|
|
|
|
|
2018-09-03 07:30:05 +00:00
|
|
|
config.fileUpload = Helper.config.fileUpload.enable;
|
2017-11-04 17:32:18 +00:00
|
|
|
config.ldapEnabled = Helper.config.ldap.enable;
|
|
|
|
|
2017-11-15 18:43:38 +00:00
|
|
|
if (config.displayNetwork) {
|
2019-11-02 18:45:00 +00:00
|
|
|
config.defaults = _.clone(Helper.config.defaults);
|
2018-01-31 21:14:26 +00:00
|
|
|
} else {
|
|
|
|
// Only send defaults that are visible on the client
|
2019-11-02 18:45:00 +00:00
|
|
|
config.defaults = _.pick(Helper.config.defaults, [
|
2018-08-11 22:10:13 +00:00
|
|
|
"name",
|
2018-01-31 21:14:26 +00:00
|
|
|
"nick",
|
|
|
|
"username",
|
2018-02-15 20:26:19 +00:00
|
|
|
"password",
|
2018-01-31 21:14:26 +00:00
|
|
|
"realname",
|
|
|
|
"join",
|
|
|
|
]);
|
2017-11-15 18:43:38 +00:00
|
|
|
}
|
|
|
|
|
2020-01-02 10:55:02 +00:00
|
|
|
config.isUpdateAvailable = changelog.isUpdateAvailable;
|
2019-11-12 20:03:59 +00:00
|
|
|
config.applicationServerKey = manager.webPush.vapidKeys.publicKey;
|
2019-11-02 18:45:00 +00:00
|
|
|
config.version = pkg.version;
|
|
|
|
config.gitCommit = Helper.getGitCommit();
|
|
|
|
config.themes = themes.getAll();
|
|
|
|
config.defaultTheme = Helper.config.theme;
|
|
|
|
config.defaults.nick = Helper.getDefaultNick();
|
2018-02-21 15:29:22 +00:00
|
|
|
|
2018-09-03 07:30:05 +00:00
|
|
|
if (Uploader) {
|
|
|
|
config.fileUploadMaxFileSize = Uploader.getMaxFileSize();
|
|
|
|
}
|
|
|
|
|
2017-11-04 17:32:18 +00:00
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2018-01-05 17:40:34 +00:00
|
|
|
function getServerConfiguration() {
|
|
|
|
const config = _.clone(Helper.config);
|
|
|
|
|
|
|
|
config.stylesheets = packages.getStylesheets();
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2017-08-13 18:37:12 +00:00
|
|
|
function performAuthentication(data) {
|
2018-08-29 10:55:30 +00:00
|
|
|
if (typeof data !== "object") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-21 07:58:29 +00:00
|
|
|
const socket = this;
|
|
|
|
let client;
|
2018-01-05 13:26:12 +00:00
|
|
|
let token = null;
|
2017-06-21 07:58:29 +00:00
|
|
|
|
2019-12-15 15:07:17 +00:00
|
|
|
const finalInit = () =>
|
2019-10-17 10:53:29 +00:00
|
|
|
initializeClient(socket, client, token, data.lastMessage || -1, data.openChannel);
|
2019-07-16 09:51:22 +00:00
|
|
|
|
2017-06-21 07:58:29 +00:00
|
|
|
const initClient = () => {
|
2019-11-12 10:39:46 +00:00
|
|
|
// Configuration does not change during runtime of TL,
|
|
|
|
// and the client listens to this event only once
|
|
|
|
if (!data.hasConfig) {
|
|
|
|
socket.emit("configuration", getClientConfiguration());
|
2019-11-12 20:03:59 +00:00
|
|
|
|
|
|
|
socket.emit(
|
|
|
|
"push:issubscribed",
|
|
|
|
token && client.config.sessions[token].pushSubscription ? true : false
|
|
|
|
);
|
2019-11-12 10:39:46 +00:00
|
|
|
}
|
2017-11-04 17:32:18 +00:00
|
|
|
|
2019-07-16 09:51:22 +00:00
|
|
|
client.config.browser = {
|
|
|
|
ip: getClientIp(socket),
|
|
|
|
isSecure: getClientSecure(socket),
|
|
|
|
language: getClientLanguage(socket),
|
|
|
|
};
|
2017-08-13 18:37:12 +00:00
|
|
|
|
|
|
|
// If webirc is enabled perform reverse dns lookup
|
|
|
|
if (Helper.config.webirc === null) {
|
|
|
|
return finalInit();
|
2017-06-21 07:58:29 +00:00
|
|
|
}
|
2017-08-13 18:37:12 +00:00
|
|
|
|
2019-07-16 09:51:22 +00:00
|
|
|
reverseDnsLookup(client.config.browser.ip, (hostname) => {
|
|
|
|
client.config.browser.hostname = hostname;
|
2017-08-13 18:37:12 +00:00
|
|
|
|
|
|
|
finalInit();
|
|
|
|
});
|
2017-06-21 07:58:29 +00:00
|
|
|
};
|
|
|
|
|
2016-06-08 09:26:24 +00:00
|
|
|
if (Helper.config.public) {
|
2016-07-30 01:20:38 +00:00
|
|
|
client = new Client(manager);
|
2014-08-14 16:35:37 +00:00
|
|
|
manager.clients.push(client);
|
2017-06-21 07:58:29 +00:00
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
socket.on("disconnect", function () {
|
2014-08-14 16:35:37 +00:00
|
|
|
manager.clients = _.without(manager.clients, client);
|
|
|
|
client.quit();
|
|
|
|
});
|
2017-06-21 07:58:29 +00:00
|
|
|
|
|
|
|
initClient();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const authCallback = (success) => {
|
|
|
|
// Authorization failed
|
|
|
|
if (!success) {
|
2018-03-17 08:09:59 +00:00
|
|
|
if (!client) {
|
2019-07-17 09:33:59 +00:00
|
|
|
log.warn(
|
|
|
|
`Authentication for non existing user attempted from ${colors.bold(
|
|
|
|
getClientIp(socket)
|
|
|
|
)}`
|
|
|
|
);
|
2018-03-17 08:09:59 +00:00
|
|
|
} else {
|
2019-07-17 09:33:59 +00:00
|
|
|
log.warn(
|
|
|
|
`Authentication failed for user ${colors.bold(data.user)} from ${colors.bold(
|
|
|
|
getClientIp(socket)
|
|
|
|
)}`
|
|
|
|
);
|
2018-03-17 08:09:59 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 19:29:51 +00:00
|
|
|
socket.emit("auth:failed");
|
2017-06-21 07:58:29 +00:00
|
|
|
return;
|
2016-04-03 05:12:49 +00:00
|
|
|
}
|
2016-07-30 01:20:38 +00:00
|
|
|
|
2017-06-21 07:58:29 +00:00
|
|
|
// If authorization succeeded but there is no loaded user,
|
|
|
|
// load it and find the user again (this happens with LDAP)
|
|
|
|
if (!client) {
|
2017-10-15 16:05:19 +00:00
|
|
|
client = manager.loadUser(data.user);
|
2016-07-30 01:20:38 +00:00
|
|
|
}
|
|
|
|
|
2017-06-21 07:58:29 +00:00
|
|
|
initClient();
|
|
|
|
};
|
2016-07-30 01:20:38 +00:00
|
|
|
|
2017-06-21 07:58:29 +00:00
|
|
|
client = manager.findClient(data.user);
|
|
|
|
|
|
|
|
// We have found an existing user and client has provided a token
|
2018-01-05 13:26:12 +00:00
|
|
|
if (client && data.token) {
|
|
|
|
const providedToken = client.calculateTokenHash(data.token);
|
2017-06-21 07:58:29 +00:00
|
|
|
|
2019-06-25 08:51:47 +00:00
|
|
|
if (Object.prototype.hasOwnProperty.call(client.config.sessions, providedToken)) {
|
2018-01-05 13:26:12 +00:00
|
|
|
token = providedToken;
|
|
|
|
|
|
|
|
return authCallback(true);
|
|
|
|
}
|
2017-06-21 07:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Perform password checking
|
2017-09-01 09:44:53 +00:00
|
|
|
let auth = () => {
|
|
|
|
log.error("None of the auth plugins is enabled");
|
|
|
|
};
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2017-09-01 09:44:53 +00:00
|
|
|
for (let i = 0; i < authPlugins.length; ++i) {
|
|
|
|
if (authPlugins[i].isEnabled()) {
|
|
|
|
auth = authPlugins[i].auth;
|
|
|
|
break;
|
|
|
|
}
|
2014-08-14 16:35:37 +00:00
|
|
|
}
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2017-08-29 16:05:06 +00:00
|
|
|
auth(manager, client, data.user, data.password, authCallback);
|
2014-08-14 16:35:37 +00:00
|
|
|
}
|
2017-08-13 18:37:12 +00:00
|
|
|
|
|
|
|
function reverseDnsLookup(ip, callback) {
|
2019-07-11 20:10:03 +00:00
|
|
|
dns.reverse(ip, (reverseErr, hostnames) => {
|
|
|
|
if (reverseErr || hostnames.length < 1) {
|
|
|
|
return callback(ip);
|
2017-08-13 18:37:12 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:10:03 +00:00
|
|
|
dns.resolve(hostnames[0], net.isIP(ip) === 6 ? "AAAA" : "A", (resolveErr, resolvedIps) => {
|
|
|
|
if (resolveErr || resolvedIps.length < 1) {
|
|
|
|
return callback(ip);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const resolvedIp of resolvedIps) {
|
|
|
|
if (ip === resolvedIp) {
|
|
|
|
return callback(hostnames[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(ip);
|
|
|
|
});
|
2017-08-13 18:37:12 +00:00
|
|
|
});
|
|
|
|
}
|