2016-12-28 23:49:51 +01:00
|
|
|
/**
|
2017-01-02 22:09:17 +01:00
|
|
|
* Misskey Entry Point!
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
|
2018-08-06 14:35:49 +02:00
|
|
|
require('events').EventEmitter.defaultMaxListeners = 128;
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as cluster from 'cluster';
|
2017-01-24 02:28:14 +01:00
|
|
|
import * as debug from 'debug';
|
2017-11-06 11:59:14 +01:00
|
|
|
import chalk from 'chalk';
|
2018-07-13 16:25:32 +02:00
|
|
|
import * as portscanner from 'portscanner';
|
2017-01-02 21:49:37 +01:00
|
|
|
import isRoot = require('is-root');
|
2017-06-08 18:03:54 +02:00
|
|
|
import Xev from 'xev';
|
2018-07-28 10:52:54 +02:00
|
|
|
import * as program from 'commander';
|
2018-11-11 06:27:00 +01:00
|
|
|
import mongo, { nativeDbConn } from './db/mongodb';
|
2017-04-05 02:58:29 +02:00
|
|
|
|
2018-07-07 12:19:00 +02:00
|
|
|
import Logger from './misc/logger';
|
|
|
|
import EnvironmentInfo from './misc/environmentInfo';
|
|
|
|
import MachineInfo from './misc/machineInfo';
|
2018-06-10 23:48:25 +02:00
|
|
|
import serverStats from './daemons/server-stats';
|
|
|
|
import notesStats from './daemons/notes-stats';
|
2018-04-02 06:15:53 +02:00
|
|
|
import loadConfig from './config/load';
|
|
|
|
import { Config } from './config/types';
|
2018-11-11 06:27:00 +01:00
|
|
|
import { lessThan } from './prelude/array';
|
2017-01-17 00:19:34 +01:00
|
|
|
|
2017-01-24 02:28:14 +01:00
|
|
|
const clusterLog = debug('misskey:cluster');
|
2017-06-08 18:03:54 +02:00
|
|
|
const ev = new Xev();
|
2017-01-24 02:28:14 +01:00
|
|
|
|
2018-08-16 20:51:42 +02:00
|
|
|
if (process.env.NODE_ENV != 'production' && process.env.DEBUG == null) {
|
2018-07-28 11:01:49 +02:00
|
|
|
debug.enable('misskey');
|
2018-04-05 11:08:51 +02:00
|
|
|
}
|
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
const pkg = require('../package.json');
|
|
|
|
|
2018-07-28 10:57:24 +02:00
|
|
|
//#region Command line argument definitions
|
2018-07-28 10:52:54 +02:00
|
|
|
program
|
|
|
|
.version(pkg.version)
|
|
|
|
.option('--no-daemons', 'Disable daemon processes (for debbuging)')
|
|
|
|
.option('--disable-clustering', 'Disable clustering')
|
|
|
|
.parse(process.argv);
|
2018-07-28 10:57:24 +02:00
|
|
|
//#endregion
|
2018-07-28 10:52:54 +02:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
main();
|
|
|
|
|
|
|
|
/**
|
2017-02-27 08:11:49 +01:00
|
|
|
* Init process
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-01-24 02:28:14 +01:00
|
|
|
function main() {
|
2018-08-15 17:13:24 +02:00
|
|
|
process.title = `Misskey (${cluster.isMaster ? 'master' : 'worker'})`;
|
2018-07-28 10:57:24 +02:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
if (cluster.isMaster || program.disableClustering) {
|
2018-07-07 12:19:00 +02:00
|
|
|
masterMain();
|
2017-06-08 18:03:54 +02:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
if (cluster.isMaster) {
|
|
|
|
ev.mount();
|
|
|
|
}
|
|
|
|
|
2018-07-28 22:34:08 +02:00
|
|
|
if (program.daemons) {
|
2018-07-28 10:52:54 +02:00
|
|
|
serverStats();
|
|
|
|
notesStats();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cluster.isWorker || program.disableClustering) {
|
2018-07-07 12:19:00 +02:00
|
|
|
workerMain();
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 08:11:49 +01:00
|
|
|
* Init master process
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2018-07-07 12:19:00 +02:00
|
|
|
async function masterMain() {
|
2017-04-05 02:58:29 +02:00
|
|
|
let config: Config;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
// initialize app
|
2017-04-05 02:58:29 +02:00
|
|
|
config = await init();
|
2016-12-28 23:49:51 +01:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
2018-07-14 13:58:21 +02:00
|
|
|
Logger.error('Fatal error occurred during initialization');
|
2017-04-23 08:40:13 +02:00
|
|
|
process.exit(1);
|
2017-04-05 02:58:29 +02:00
|
|
|
}
|
|
|
|
|
2018-07-14 15:05:19 +02:00
|
|
|
Logger.succ('Misskey initialized');
|
2017-04-05 02:58:29 +02:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
if (!program.disableClustering) {
|
|
|
|
await spawnWorkers(config.clusterLimit);
|
|
|
|
}
|
|
|
|
|
2018-11-05 19:48:23 +01:00
|
|
|
Logger.succ(`Now listening on port ${config.port} on ${config.url}`);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 08:11:49 +01:00
|
|
|
* Init worker process
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2018-07-07 12:19:00 +02:00
|
|
|
async function workerMain() {
|
|
|
|
// start server
|
|
|
|
await require('./server').default();
|
2018-03-28 18:20:40 +02:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
if (cluster.isWorker) {
|
|
|
|
// Send a 'ready' message to parent process
|
|
|
|
process.send('ready');
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
2017-04-05 02:58:29 +02:00
|
|
|
async function init(): Promise<Config> {
|
2016-12-29 15:09:21 +01:00
|
|
|
Logger.info('Welcome to Misskey!');
|
2018-10-09 20:37:51 +02:00
|
|
|
Logger.info(`<<< Misskey v${pkg.version} >>>`);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-15 14:17:06 +01:00
|
|
|
new Logger('Nodejs').info(`Version ${process.version}`);
|
|
|
|
if (lessThan(process.version.slice(1).split('.').map(x => parseInt(x, 10)), [10, 0, 0])) {
|
|
|
|
new Logger('Nodejs').error(`Node.js version is less than 10.0.0. Please upgrade it.`);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-11-05 19:31:16 +01:00
|
|
|
await MachineInfo.show();
|
2018-07-14 15:10:27 +02:00
|
|
|
EnvironmentInfo.show();
|
2016-12-30 19:14:38 +01:00
|
|
|
|
2017-05-24 13:50:17 +02:00
|
|
|
const configLogger = new Logger('Config');
|
2018-04-02 06:15:53 +02:00
|
|
|
let config;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-02 06:15:53 +02:00
|
|
|
try {
|
|
|
|
config = loadConfig();
|
|
|
|
} catch (exception) {
|
2018-07-14 13:58:21 +02:00
|
|
|
if (typeof exception === 'string') {
|
|
|
|
configLogger.error(exception);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2018-04-02 06:15:53 +02:00
|
|
|
if (exception.code === 'ENOENT') {
|
2018-07-14 13:58:21 +02:00
|
|
|
configLogger.error('Configuration file not found');
|
|
|
|
process.exit(1);
|
2018-04-02 06:15:53 +02:00
|
|
|
}
|
|
|
|
throw exception;
|
|
|
|
}
|
2017-01-17 00:19:34 +01:00
|
|
|
|
2018-07-14 15:05:19 +02:00
|
|
|
configLogger.succ('Loaded');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-15 19:25:35 +01:00
|
|
|
if (config.port == null) {
|
|
|
|
Logger.error('The port is not configured. Please configure port.');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2016-12-29 17:35:25 +01:00
|
|
|
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
|
2018-07-13 16:52:28 +02:00
|
|
|
Logger.error('You need root privileges to listen on port below 1024 on Linux');
|
|
|
|
process.exit(1);
|
2016-12-29 17:35:25 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 16:25:32 +02:00
|
|
|
if (await portscanner.checkPortStatus(config.port, '127.0.0.1') === 'open') {
|
2018-07-13 17:05:49 +02:00
|
|
|
Logger.error(`Port ${config.port} is already in use`);
|
2018-07-13 16:52:28 +02:00
|
|
|
process.exit(1);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try to connect to MongoDB
|
2018-07-28 10:52:54 +02:00
|
|
|
checkMongoDb(config);
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkMongoDb(config: Config) {
|
2017-05-24 13:50:17 +02:00
|
|
|
const mongoDBLogger = new Logger('MongoDB');
|
2018-08-15 17:13:24 +02:00
|
|
|
const u = config.mongodb.user ? encodeURIComponent(config.mongodb.user) : null;
|
|
|
|
const p = config.mongodb.pass ? encodeURIComponent(config.mongodb.pass) : null;
|
|
|
|
const uri = `mongodb://${u && p ? `${u}:****@` : ''}${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`;
|
|
|
|
mongoDBLogger.info(`Connecting to ${uri}`);
|
2018-08-22 01:46:31 +02:00
|
|
|
|
|
|
|
mongo.then(() => {
|
2018-11-11 06:27:00 +01:00
|
|
|
nativeDbConn().then(db => db.admin().serverInfo()).then(x => x.version).then((version: string) => {
|
|
|
|
mongoDBLogger.info(`Version: ${version}`);
|
|
|
|
if (lessThan(version.split('.').map(x => parseInt(x, 10)), [3, 6])) {
|
|
|
|
mongoDBLogger.error(`MongoDB version is less than 3.6. Please upgrade it.`);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-08-22 01:46:31 +02:00
|
|
|
mongoDBLogger.succ('Connectivity confirmed');
|
|
|
|
})
|
2018-11-11 06:27:00 +01:00
|
|
|
.catch(err => {
|
|
|
|
mongoDBLogger.error(err.message);
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
function spawnWorkers(limit: number) {
|
2018-11-05 19:48:23 +01:00
|
|
|
Logger.info('Starting workers...');
|
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
return new Promise(res => {
|
|
|
|
// Count the machine's CPUs
|
|
|
|
const cpuCount = os.cpus().length;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
const count = limit || cpuCount;
|
2018-11-05 19:48:23 +01:00
|
|
|
let started = 0;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
// Create a worker for each CPU
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
const worker = cluster.fork();
|
2018-11-05 19:48:23 +01:00
|
|
|
|
2018-07-28 10:52:54 +02:00
|
|
|
worker.on('message', message => {
|
2018-11-05 19:48:23 +01:00
|
|
|
if (message !== 'ready') return;
|
|
|
|
started++;
|
|
|
|
|
|
|
|
// When all workers started
|
|
|
|
if (started == count) {
|
|
|
|
Logger.succ('All workers started');
|
|
|
|
res();
|
2018-07-28 10:52:54 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-08-10 15:06:47 +02:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-07-28 10:57:24 +02:00
|
|
|
//#region Events
|
|
|
|
|
2017-01-24 02:28:14 +01:00
|
|
|
// Listen new workers
|
|
|
|
cluster.on('fork', worker => {
|
|
|
|
clusterLog(`Process forked: [${worker.id}]`);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Listen online workers
|
|
|
|
cluster.on('online', worker => {
|
|
|
|
clusterLog(`Process is now online: [${worker.id}]`);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Listen for dying workers
|
|
|
|
cluster.on('exit', worker => {
|
|
|
|
// Replace the dead worker,
|
|
|
|
// we're not sentimental
|
|
|
|
clusterLog(chalk.red(`[${worker.id}] died :(`));
|
|
|
|
cluster.fork();
|
|
|
|
});
|
|
|
|
|
2017-01-19 00:04:17 +01:00
|
|
|
// Display detail of unhandled promise rejection
|
|
|
|
process.on('unhandledRejection', console.dir);
|
|
|
|
|
2018-05-20 12:24:54 +02:00
|
|
|
// Display detail of uncaught exception
|
|
|
|
process.on('uncaughtException', err => {
|
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Dying away...
|
2018-05-20 12:24:54 +02:00
|
|
|
process.on('exit', code => {
|
2018-07-13 17:41:33 +02:00
|
|
|
Logger.info(`The process is going to exit with code ${code}`);
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
2018-07-28 10:57:24 +02:00
|
|
|
|
|
|
|
//#endregion
|