You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
4.0 KiB
JavaScript
151 lines
4.0 KiB
JavaScript
'use strict';
|
|
|
|
const nconf = require('nconf');
|
|
const url = require('url');
|
|
const winston = require('winston');
|
|
|
|
const start = module.exports;
|
|
|
|
start.start = async function () {
|
|
const db = require('./database');
|
|
|
|
setupConfigs();
|
|
|
|
printStartupInfo();
|
|
|
|
addProcessHandlers();
|
|
try {
|
|
await db.init();
|
|
|
|
const meta = require('./meta');
|
|
await db.checkCompatibility();
|
|
await meta.configs.init();
|
|
if (nconf.get('runJobs')) {
|
|
await runUpgrades();
|
|
}
|
|
|
|
if (nconf.get('dep-check') === undefined || nconf.get('dep-check') !== false) {
|
|
await meta.dependencies.check();
|
|
} else {
|
|
winston.warn('[init] Dependency checking skipped!');
|
|
}
|
|
|
|
await db.initSessionStore();
|
|
|
|
const webserver = require('./webserver');
|
|
require('./socket.io').init(webserver.server);
|
|
|
|
if (nconf.get('runJobs')) {
|
|
require('./notifications').startJobs();
|
|
require('./user').startJobs();
|
|
require('./plugins').startJobs();
|
|
}
|
|
|
|
await webserver.listen();
|
|
|
|
if (process.send) {
|
|
process.send({
|
|
action: 'listening',
|
|
});
|
|
}
|
|
} catch (err) {
|
|
switch (err.message) {
|
|
case 'dependencies-out-of-date':
|
|
winston.error('One or more of NodeBB\'s dependent packages are out-of-date. Please run the following command to update them:');
|
|
winston.error(' ./nodebb upgrade');
|
|
break;
|
|
case 'dependencies-missing':
|
|
winston.error('One or more of NodeBB\'s dependent packages are missing. Please run the following command to update them:');
|
|
winston.error(' ./nodebb upgrade');
|
|
break;
|
|
default:
|
|
winston.error(err);
|
|
break;
|
|
}
|
|
|
|
// Either way, bad stuff happened. Abort start.
|
|
process.exit();
|
|
}
|
|
};
|
|
|
|
async function runUpgrades() {
|
|
const upgrade = require('./upgrade');
|
|
try {
|
|
await upgrade.check();
|
|
} catch (err) {
|
|
if (err && err.message === 'schema-out-of-date') {
|
|
await upgrade.run();
|
|
} else {
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
|
|
function setupConfigs() {
|
|
// nconf defaults, if not set in config
|
|
if (!nconf.get('sessionKey')) {
|
|
nconf.set('sessionKey', 'express.sid');
|
|
}
|
|
// Parse out the relative_url and other goodies from the configured URL
|
|
const urlObject = url.parse(nconf.get('url'));
|
|
const relativePath = urlObject.pathname !== '/' ? urlObject.pathname.replace(/\/+$/, '') : '';
|
|
nconf.set('base_url', urlObject.protocol + '//' + urlObject.host);
|
|
nconf.set('secure', urlObject.protocol === 'https:');
|
|
nconf.set('use_port', !!urlObject.port);
|
|
nconf.set('relative_path', relativePath);
|
|
nconf.set('port', nconf.get('PORT') || nconf.get('port') || urlObject.port || (nconf.get('PORT_ENV_VAR') ? nconf.get(nconf.get('PORT_ENV_VAR')) : false) || 4567);
|
|
}
|
|
|
|
function printStartupInfo() {
|
|
if (nconf.get('isPrimary') === 'true') {
|
|
winston.info('Initializing NodeBB v%s %s', nconf.get('version'), nconf.get('url'));
|
|
|
|
const host = nconf.get(nconf.get('database') + ':host');
|
|
const storeLocation = host ? 'at ' + host + (!host.includes('/') ? ':' + nconf.get(nconf.get('database') + ':port') : '') : '';
|
|
|
|
winston.verbose('* using %s store %s', nconf.get('database'), storeLocation);
|
|
winston.verbose('* using themes stored in: %s', nconf.get('themes_path'));
|
|
}
|
|
}
|
|
|
|
function addProcessHandlers() {
|
|
process.on('SIGTERM', shutdown);
|
|
process.on('SIGINT', shutdown);
|
|
process.on('SIGHUP', restart);
|
|
process.on('uncaughtException', function (err) {
|
|
winston.error(err);
|
|
|
|
require('./meta').js.killMinifier();
|
|
shutdown(1);
|
|
});
|
|
}
|
|
|
|
function restart() {
|
|
if (process.send) {
|
|
winston.info('[app] Restarting...');
|
|
process.send({
|
|
action: 'restart',
|
|
});
|
|
} else {
|
|
winston.error('[app] Could not restart server. Shutting down.');
|
|
shutdown(1);
|
|
}
|
|
}
|
|
|
|
async function shutdown(code) {
|
|
winston.info('[app] Shutdown (SIGTERM/SIGINT) Initialised.');
|
|
try {
|
|
await require('./webserver').destroy();
|
|
winston.info('[app] Web server closed to connections.');
|
|
await require('./analytics').writeData();
|
|
winston.info('[app] Live analytics saved.');
|
|
await require('./database').close();
|
|
winston.info('[app] Database connection closed.');
|
|
winston.info('[app] Shutdown complete.');
|
|
process.exit(code || 0);
|
|
} catch (err) {
|
|
winston.error(err);
|
|
return process.exit(code || 0);
|
|
}
|
|
}
|