iceshrimp-legacy/src/index.ts

196 lines
4.1 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
2016-12-29 13:00:22 +01:00
* Misskey Entory Point!
2016-12-28 23:49:51 +01:00
*/
Error.stackTraceLimit = Infinity;
/**
* Module dependencies
*/
import * as fs from 'fs';
import * as os from 'os';
import * as cluster from 'cluster';
2016-12-29 15:09:21 +01:00
import Logger from './utils/logger';
2016-12-28 23:49:51 +01:00
import * as chalk from 'chalk';
2017-01-02 22:03:19 +01:00
import portUsed = require('tcp-port-used');
2017-01-02 21:49:37 +01:00
import isRoot = require('is-root');
2016-12-28 23:49:51 +01:00
import ProgressBar from './utils/cli/progressbar';
import initdb from './db/mongodb';
2016-12-30 19:29:24 +01:00
import LastCommitInfo from './utils/lastCommitInfo';
2016-12-30 19:35:19 +01:00
import EnvironmentInfo from './utils/environmentInfo';
2016-12-30 19:19:59 +01:00
import MachineInfo from './utils/machineInfo';
import DependencyInfo from './utils/dependencyInfo';
2016-12-28 23:49:51 +01:00
// Init babel
require('babel-core/register');
require('babel-polyfill');
global.config = require('./config').default(`${__dirname}/../.config/config.yml`);
2017-01-02 21:15:01 +01:00
enum InitResult {
Success,
Warn,
Failure
2016-12-28 23:49:51 +01:00
}
process.title = 'Misskey';
// Start app
main();
/**
* Init proccess
*/
function main(): void {
if (cluster.isMaster) {
2017-01-02 21:17:21 +01:00
masterMain();
2017-01-02 21:15:50 +01:00
} else {
2017-01-02 21:17:21 +01:00
workerMain();
2016-12-28 23:49:51 +01:00
}
}
/**
* Init master proccess
*/
2017-01-02 21:17:21 +01:00
async function masterMain(): Promise<void> {
2017-01-02 21:15:01 +01:00
let initResult: InitResult;
2016-12-28 23:49:51 +01:00
try {
// initialize app
2017-01-02 21:15:01 +01:00
initResult = await init();
2016-12-28 23:49:51 +01:00
} catch (e) {
console.error(e);
process.exit(1);
}
2017-01-02 21:15:01 +01:00
switch (initResult) {
2017-01-02 21:15:27 +01:00
case InitResult.Success:
Logger.info(chalk.green('Successfully initialized :)'));
break;
case InitResult.Warn:
Logger.warn(chalk.yellow('Initialized with some problem(s) :|'));
break;
2017-01-02 21:15:01 +01:00
case InitResult.Failure:
2016-12-29 18:28:51 +01:00
Logger.error(chalk.red('Fatal error occurred during initializing :('));
2016-12-28 23:49:51 +01:00
process.exit();
return;
}
2017-01-02 21:18:03 +01:00
spawnWorkers(() => {
2016-12-29 18:26:37 +01:00
Logger.info(chalk.bold.green(`Now listening on port ${config.port}`));
2016-12-28 23:49:51 +01:00
// Listen new workers
cluster.on('fork', worker => {
console.log(`Process forked: [${worker.id}]`);
});
// Listen online workers
cluster.on('online', worker => {
console.log(`Process is now online: [${worker.id}]`);
});
// Listen for dying workers
cluster.on('exit', worker => {
// Replace the dead worker,
// we're not sentimental
console.log(chalk.red(`[${worker.id}] died :(`));
cluster.fork();
});
});
}
/**
* Init worker proccess
*/
2017-01-02 21:17:21 +01:00
function workerMain(): void {
2016-12-28 23:49:51 +01:00
// Register config
global.config = config;
// Init mongo
initdb().then(db => {
global.db = db;
// start server
require('./server');
}, err => {
console.error(err);
process.exit(0);
});
}
/**
* Init app
*/
2017-01-02 21:15:01 +01:00
async function init(): Promise<InitResult> {
2016-12-29 12:39:46 +01:00
let warn = false;
2016-12-28 23:49:51 +01:00
2016-12-29 15:09:21 +01:00
Logger.info('Welcome to Misskey!');
Logger.info(chalk.bold('Misskey Core <aoi>'));
Logger.info('Initializing...');
2016-12-28 23:49:51 +01:00
2016-12-30 19:29:24 +01:00
await LastCommitInfo.show();
2016-12-30 19:35:19 +01:00
EnvironmentInfo.show();
2016-12-30 19:19:59 +01:00
MachineInfo.show();
new DependencyInfo().showAll();
2016-12-30 19:14:38 +01:00
2016-12-30 18:54:08 +01:00
let configLogger = new Logger('Config');
2016-12-28 23:49:51 +01:00
if (!fs.existsSync(`${__dirname}/../.config/config.yml`)) {
2016-12-30 18:54:08 +01:00
configLogger.error('Configuration not found');
2017-01-02 21:15:01 +01:00
return InitResult.Failure;
2016-12-28 23:49:51 +01:00
}
2016-12-29 15:09:21 +01:00
configLogger.info('Successfully loaded');
configLogger.info(`maintainer: ${config.maintainer}`);
2016-12-28 23:49:51 +01:00
2016-12-29 17:35:25 +01:00
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
2016-12-30 00:23:03 +01:00
Logger.error('You need root privileges to listen on port below 1024 on Linux');
2017-01-02 21:15:01 +01:00
return InitResult.Failure;
2016-12-29 17:35:25 +01:00
}
2016-12-28 23:49:51 +01:00
// Check if a port is being used
if (await portUsed.check(config.port)) {
2016-12-29 18:56:37 +01:00
Logger.error(`Port ${config.port} is already used`);
2017-01-02 21:15:01 +01:00
return InitResult.Failure;
2016-12-28 23:49:51 +01:00
}
// Try to connect to MongoDB
2016-12-29 15:09:21 +01:00
let mongoDBLogger = new Logger('MongoDB');
2016-12-28 23:49:51 +01:00
try {
2017-01-02 22:06:31 +01:00
const db = await initdb();
2016-12-29 15:09:21 +01:00
mongoDBLogger.info('Successfully connected');
2016-12-28 23:49:51 +01:00
db.close();
} catch (e) {
2017-01-02 21:31:08 +01:00
mongoDBLogger.error(e);
2017-01-02 21:15:01 +01:00
return InitResult.Failure;
2016-12-28 23:49:51 +01:00
}
2017-01-02 21:15:01 +01:00
return warn ? InitResult.Warn : InitResult.Success;
2016-12-28 23:49:51 +01:00
}
2017-01-02 21:22:25 +01:00
function spawnWorkers(onComplete: any): void {
2016-12-28 23:49:51 +01: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
progress.on('complete', () => {
2017-01-02 21:22:25 +01:00
onComplete();
2016-12-28 23:49:51 +01:00
});
}
// Dying away...
process.on('exit', () => {
2016-12-29 17:12:49 +01:00
Logger.info('The process is going exit');
2016-12-28 23:49:51 +01:00
});