e033010841
This makes express serve it with correct content-type of application/manifest+json Refs: - https://w3c.github.io/manifest/#media-type-registration - https://webhint.io/docs/user-guide/hints/hint-manifest-file-extension/
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
"use strict";
|
|
|
|
const _ = require("lodash");
|
|
const log = require("../log");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
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("--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
|
|
if (process.getuid) {
|
|
fs.stat(path.join(Helper.getHomePath(), "config.js"), (err, stat) => {
|
|
if (!err && stat.uid !== process.getuid()) {
|
|
log.warn("Config file owner does not match the user you are currently running The Lounge as.");
|
|
log.warn("To avoid issues, you should execute The Lounge commands under the same user.");
|
|
}
|
|
});
|
|
}
|
|
|
|
Utils.checkOldHome();
|
|
|
|
// Merge config key-values passed as CLI options into the main config
|
|
_.merge(Helper.config, program.config);
|
|
|
|
require("./start");
|
|
|
|
if (!Helper.config.public && !Helper.config.ldap.enable) {
|
|
require("./users");
|
|
}
|
|
|
|
require("./install");
|
|
require("./uninstall");
|
|
require("./upgrade");
|
|
|
|
// `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();
|
|
}
|