2016-12-28 15:49:51 -07:00
|
|
|
/**
|
2017-01-02 14:09:17 -07:00
|
|
|
* Misskey Entry Point!
|
2016-12-28 15:49:51 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
|
|
|
import * as cluster from 'cluster';
|
2017-01-23 18:28:14 -07:00
|
|
|
import * as debug from 'debug';
|
2017-11-06 03:59:14 -07:00
|
|
|
import chalk from 'chalk';
|
2017-04-14 05:45:37 -06:00
|
|
|
// import portUsed = require('tcp-port-used');
|
2017-01-02 13:49:37 -07:00
|
|
|
import isRoot = require('is-root');
|
2017-04-04 18:58:29 -06:00
|
|
|
import { master } from 'accesses';
|
2017-06-08 10:03:54 -06:00
|
|
|
import Xev from 'xev';
|
2017-04-04 18:58:29 -06:00
|
|
|
|
|
|
|
import Logger from './utils/logger';
|
2016-12-28 15:49:51 -07:00
|
|
|
import ProgressBar from './utils/cli/progressbar';
|
2016-12-30 11:35:19 -07:00
|
|
|
import EnvironmentInfo from './utils/environmentInfo';
|
2016-12-30 11:19:59 -07:00
|
|
|
import MachineInfo from './utils/machineInfo';
|
2016-12-30 11:24:07 -07:00
|
|
|
import DependencyInfo from './utils/dependencyInfo';
|
2017-06-08 10:03:54 -06:00
|
|
|
import stats from './utils/stats';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2017-04-04 18:58:29 -06:00
|
|
|
import { Config, path as configPath } from './config';
|
2017-01-16 16:19:34 -07:00
|
|
|
import loadConfig from './config';
|
|
|
|
|
2017-01-23 18:28:14 -07:00
|
|
|
const clusterLog = debug('misskey:cluster');
|
2017-06-08 10:03:54 -06:00
|
|
|
const ev = new Xev();
|
2017-01-23 18:28:14 -07:00
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
process.title = 'Misskey';
|
|
|
|
|
|
|
|
// Start app
|
|
|
|
main();
|
|
|
|
|
|
|
|
/**
|
2017-02-27 00:11:49 -07:00
|
|
|
* Init process
|
2016-12-28 15:49:51 -07:00
|
|
|
*/
|
2017-01-23 18:28:14 -07:00
|
|
|
function main() {
|
2016-12-28 15:49:51 -07:00
|
|
|
if (cluster.isMaster) {
|
2017-01-02 13:17:21 -07:00
|
|
|
masterMain();
|
2017-06-08 10:03:54 -06:00
|
|
|
|
|
|
|
ev.mount();
|
|
|
|
stats();
|
2017-01-02 13:15:50 -07:00
|
|
|
} else {
|
2017-01-02 13:17:21 -07:00
|
|
|
workerMain();
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 00:11:49 -07:00
|
|
|
* Init master process
|
2016-12-28 15:49:51 -07:00
|
|
|
*/
|
2017-01-23 18:28:14 -07:00
|
|
|
async function masterMain() {
|
2017-04-04 18:58:29 -06:00
|
|
|
let config: Config;
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
try {
|
|
|
|
// initialize app
|
2017-04-04 18:58:29 -06:00
|
|
|
config = await init();
|
2016-12-28 15:49:51 -07:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
2017-04-04 18:58:29 -06:00
|
|
|
Logger.error(chalk.red('Fatal error occurred during initializing :('));
|
2017-04-23 00:40:13 -06:00
|
|
|
process.exit(1);
|
2017-04-04 18:58:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
Logger.info(chalk.green('Successfully initialized :)'));
|
|
|
|
|
|
|
|
// Init accesses
|
|
|
|
if (config.accesses && config.accesses.enable) {
|
|
|
|
master();
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
2017-01-02 13:18:03 -07:00
|
|
|
spawnWorkers(() => {
|
2017-08-11 07:14:55 -06:00
|
|
|
Logger.info(chalk.bold.green(
|
|
|
|
`Now listening on port ${chalk.underline(config.port.toString())}`));
|
|
|
|
|
|
|
|
Logger.info(chalk.bold.green(config.url));
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 00:11:49 -07:00
|
|
|
* Init worker process
|
2016-12-28 15:49:51 -07:00
|
|
|
*/
|
2017-01-23 18:28:14 -07:00
|
|
|
function workerMain() {
|
2017-01-16 17:12:33 -07:00
|
|
|
// start server
|
|
|
|
require('./server');
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
2017-04-04 18:58:29 -06:00
|
|
|
async function init(): Promise<Config> {
|
2016-12-29 07:09:21 -07:00
|
|
|
Logger.info('Welcome to Misskey!');
|
2017-01-18 17:53:29 -07:00
|
|
|
Logger.info(chalk.bold('Misskey <aoi>'));
|
2016-12-29 07:09:21 -07:00
|
|
|
Logger.info('Initializing...');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2016-12-30 11:35:19 -07:00
|
|
|
EnvironmentInfo.show();
|
2016-12-30 11:19:59 -07:00
|
|
|
MachineInfo.show();
|
2016-12-30 11:24:07 -07:00
|
|
|
new DependencyInfo().showAll();
|
2016-12-30 11:14:38 -07:00
|
|
|
|
2017-05-24 05:50:17 -06:00
|
|
|
const configLogger = new Logger('Config');
|
2017-01-16 16:19:34 -07:00
|
|
|
if (!fs.existsSync(configPath)) {
|
2017-05-24 01:18:54 -06:00
|
|
|
throw 'Configuration not found - Please run "npm run config" command.';
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
2017-01-16 16:19:34 -07:00
|
|
|
const config = loadConfig();
|
|
|
|
|
2016-12-29 07:09:21 -07:00
|
|
|
configLogger.info('Successfully loaded');
|
|
|
|
configLogger.info(`maintainer: ${config.maintainer}`);
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2016-12-29 09:35:25 -07:00
|
|
|
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
|
2017-04-23 00:40:13 -06:00
|
|
|
throw 'You need root privileges to listen on port below 1024 on Linux';
|
2016-12-29 09:35:25 -07:00
|
|
|
}
|
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
// Check if a port is being used
|
2017-03-13 03:22:58 -06:00
|
|
|
/* https://github.com/stdarg/tcp-port-used/issues/3
|
2016-12-28 15:49:51 -07:00
|
|
|
if (await portUsed.check(config.port)) {
|
2017-04-23 00:40:13 -06:00
|
|
|
throw `Port ${config.port} is already used`;
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
2017-03-13 03:22:58 -06:00
|
|
|
*/
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Try to connect to MongoDB
|
2017-05-24 05:50:17 -06:00
|
|
|
const mongoDBLogger = new Logger('MongoDB');
|
2017-04-23 01:40:49 -06:00
|
|
|
const db = require('./db/mongodb').default;
|
|
|
|
mongoDBLogger.info('Successfully connected');
|
|
|
|
db.close();
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2017-04-04 18:58:29 -06:00
|
|
|
return config;
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
2017-04-23 00:55:37 -06:00
|
|
|
function spawnWorkers(onComplete: Function) {
|
2016-12-28 15:49:51 -07:00
|
|
|
// Count the machine's CPUs
|
|
|
|
const cpuCount = os.cpus().length;
|
|
|
|
|
|
|
|
const progress = new ProgressBar(cpuCount, 'Starting workers');
|
|
|
|
|
|
|
|
// Create a worker for each CPU
|
|
|
|
for (let i = 0; i < cpuCount; i++) {
|
|
|
|
const worker = cluster.fork();
|
|
|
|
worker.on('message', message => {
|
|
|
|
if (message === 'ready') {
|
|
|
|
progress.increment();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// On all workers started
|
2017-08-10 07:06:47 -06:00
|
|
|
progress.on('complete', () => {
|
|
|
|
onComplete();
|
|
|
|
});
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
2017-01-23 18:28:14 -07: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-18 16:04:17 -07:00
|
|
|
// Display detail of unhandled promise rejection
|
|
|
|
process.on('unhandledRejection', console.dir);
|
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
// Dying away...
|
|
|
|
process.on('exit', () => {
|
2016-12-29 09:12:49 -07:00
|
|
|
Logger.info('The process is going exit');
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|