mirror of
https://github.com/thelounge/thelounge
synced 2024-12-03 17:29:14 +00:00
e58a895293
Fixes #3221
96 lines
2.6 KiB
JavaScript
96 lines
2.6 KiB
JavaScript
"use strict";
|
|
|
|
const log = require("../log");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
const colors = require("chalk");
|
|
const program = require("commander");
|
|
const Helper = require("../helper");
|
|
const Utils = require("./utils");
|
|
|
|
program
|
|
.version(Helper.getVersion(), "-v, --version")
|
|
.option(
|
|
"-c, --config <key=value>",
|
|
"override entries of the configuration file, must be specified for each entry that needs to be overriden",
|
|
Utils.parseConfigOptions
|
|
)
|
|
.on("command:*", () => {
|
|
log.error(
|
|
`Unknown command. See ${colors.bold("--help")} for a list of available commands.`
|
|
);
|
|
process.exit(1);
|
|
})
|
|
.on("--help", Utils.extraHelp);
|
|
|
|
// Parse options from `argv` returning `argv` void of these options.
|
|
const argvWithoutOptions = program.parseOptions(process.argv);
|
|
|
|
Helper.setHome(process.env.THELOUNGE_HOME || Utils.defaultHome());
|
|
|
|
// Check config file owner and warn if we're running under a different user
|
|
try {
|
|
verifyFileOwner();
|
|
} catch (e) {
|
|
// We do not care about failures of these checks
|
|
// fs.statSync will throw if config.js does not exist (e.g. first run)
|
|
}
|
|
|
|
Utils.checkOldHome();
|
|
|
|
// Merge config key-values passed as CLI options into the main config
|
|
Helper.mergeConfig(Helper.config, program.config);
|
|
|
|
require("./start");
|
|
|
|
if (!Helper.config.public) {
|
|
require("./users");
|
|
}
|
|
|
|
require("./install");
|
|
require("./uninstall");
|
|
require("./upgrade");
|
|
require("./outdated");
|
|
|
|
// `parse` expects to be passed `process.argv`, but we need to remove to give it
|
|
// a version of `argv` that does not contain options already parsed by
|
|
// `parseOptions` above.
|
|
// This is done by giving it the updated `argv` that `parseOptions` returned,
|
|
// except it returns an object with `args`/`unknown`, so we need to concat them.
|
|
// See https://github.com/tj/commander.js/blob/fefda77f463292/index.js#L686-L763
|
|
program.parse(argvWithoutOptions.args.concat(argvWithoutOptions.unknown));
|
|
|
|
if (!program.args.length) {
|
|
program.help();
|
|
}
|
|
|
|
function verifyFileOwner() {
|
|
if (!process.getuid) {
|
|
return;
|
|
}
|
|
|
|
const uid = process.getuid();
|
|
|
|
if (uid === 0) {
|
|
log.warn(
|
|
`You are currently running The Lounge as root. ${colors.bold.red(
|
|
"We highly discourage running as root!"
|
|
)}`
|
|
);
|
|
}
|
|
|
|
const configStat = fs.statSync(path.join(Helper.getHomePath(), "config.js"));
|
|
|
|
if (configStat && configStat.uid !== uid) {
|
|
log.warn(
|
|
"Config file owner does not match the user you are currently running The Lounge as."
|
|
);
|
|
log.warn(
|
|
"To prevent any issues, please run thelounge commands " +
|
|
"as the correct user that owns the config folder."
|
|
);
|
|
log.warn(
|
|
"See https://thelounge.chat/docs/usage#using-the-correct-system-user for more information."
|
|
);
|
|
}
|
|
}
|