2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Misskey Core Entory Point!
|
|
|
|
*/
|
|
|
|
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
|
|
|
import * as cluster from 'cluster';
|
|
|
|
const prominence = require('prominence');
|
2016-12-29 02:36:03 -06:00
|
|
|
import { log } from './utils/logger';
|
2016-12-28 16:49:51 -06:00
|
|
|
import * as chalk from 'chalk';
|
|
|
|
const git = require('git-last-commit');
|
|
|
|
const portUsed = require('tcp-port-used');
|
|
|
|
import ProgressBar from './utils/cli/progressbar';
|
|
|
|
import initdb from './db/mongodb';
|
|
|
|
import checkDependencies from './utils/check-dependencies';
|
|
|
|
|
|
|
|
// Init babel
|
|
|
|
require('babel-core/register');
|
|
|
|
require('babel-polyfill');
|
|
|
|
|
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const IS_PRODUCTION = env === 'production';
|
|
|
|
const IS_DEBUG = !IS_PRODUCTION;
|
|
|
|
|
|
|
|
global.config = require('./config').default(`${__dirname}/../.config/config.yml`);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize state
|
|
|
|
*/
|
|
|
|
enum State {
|
|
|
|
success,
|
|
|
|
warn,
|
|
|
|
failed
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set process title
|
|
|
|
process.title = 'Misskey';
|
|
|
|
|
|
|
|
// Start app
|
|
|
|
main();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init proccess
|
|
|
|
*/
|
|
|
|
function main(): void {
|
|
|
|
// Master
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
master();
|
|
|
|
} else { // Workers
|
|
|
|
worker();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init master proccess
|
|
|
|
*/
|
|
|
|
async function master(): Promise<void> {
|
|
|
|
let state: State;
|
|
|
|
|
|
|
|
try {
|
|
|
|
// initialize app
|
|
|
|
state = await init();
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case State.failed:
|
2016-12-29 04:06:41 -06:00
|
|
|
log('Error', chalk.red('Fatal error occurred :('));
|
2016-12-28 16:49:51 -06:00
|
|
|
process.exit();
|
|
|
|
return;
|
|
|
|
case State.warn:
|
2016-12-29 04:06:41 -06:00
|
|
|
log('Warn', chalk.yellow('Some problem(s) :|'));
|
2016-12-28 16:49:51 -06:00
|
|
|
break;
|
|
|
|
case State.success:
|
2016-12-29 04:06:41 -06:00
|
|
|
log('Info', chalk.green('OK :)'));
|
2016-12-28 16:49:51 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spawn workers
|
|
|
|
spawn(() => {
|
|
|
|
console.log(chalk.bold.green(`\nMisskey Core is now running. [port:${config.port}]`));
|
|
|
|
|
|
|
|
// 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
|
|
|
|
*/
|
|
|
|
function worker(): void {
|
|
|
|
// 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
|
|
|
|
*/
|
|
|
|
async function init(): Promise<State> {
|
2016-12-29 02:50:57 -06:00
|
|
|
log('Info', 'Welcome to Misskey!');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2016-12-29 02:50:57 -06:00
|
|
|
log('Info', chalk.bold('Misskey Core <aoi>'));
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
let warn = false;
|
|
|
|
|
|
|
|
// Get commit info
|
|
|
|
try {
|
|
|
|
const commit = await prominence(git).getLastCommit();
|
2016-12-29 05:03:34 -06:00
|
|
|
const shortHash: string = commit.shortHash;
|
|
|
|
const hash: string = commit.hash;
|
|
|
|
const commitDate = new Date(parseInt(commit.committedOn, 10) * 1000).toLocaleDateString('ja-JP');
|
|
|
|
const commitTime = new Date(parseInt(commit.committedOn, 10) * 1000).toLocaleTimeString('ja-JP');
|
|
|
|
log('Info', `${shortHash}${chalk.gray(hash.substr(shortHash.length))}`, 'LastCommit');
|
|
|
|
log('Info', `${commit.subject} ${chalk.green(`(${commitDate} ${commitTime})`)} ${chalk.blue(`<${commit.author.name}>`)}`, 'LastCommit');
|
2016-12-28 16:49:51 -06:00
|
|
|
} catch (e) {
|
2016-12-29 05:03:34 -06:00
|
|
|
log('Info', `No commit information found`, 'LastCommit');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2016-12-29 02:50:57 -06:00
|
|
|
log('Info', 'Initializing...');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
if (IS_DEBUG) {
|
2016-12-29 02:36:03 -06:00
|
|
|
log('Warn', 'It is not in the Production mode. Do not use in the Production environment.');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2016-12-29 02:36:03 -06:00
|
|
|
log('Info', `environment: ${env}`);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Get machine info
|
|
|
|
const totalmem = (os.totalmem() / 1024 / 1024 / 1024).toFixed(1);
|
|
|
|
const freemem = (os.freemem() / 1024 / 1024 / 1024).toFixed(1);
|
2016-12-29 05:07:05 -06:00
|
|
|
log('Info', `${os.hostname()}`, 'Machine');
|
|
|
|
log('Info', `CPU: ${os.cpus().length}core`, 'Machine');
|
|
|
|
log('Info', `MEM: ${totalmem}GB (available: ${freemem}GB)`, 'Machine');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
if (!fs.existsSync(`${__dirname}/../.config/config.yml`)) {
|
2016-12-29 02:36:03 -06:00
|
|
|
log('Error', 'Configuration not found');
|
2016-12-28 16:49:51 -06:00
|
|
|
return State.failed;
|
|
|
|
}
|
|
|
|
|
2016-12-29 05:14:51 -06:00
|
|
|
log('Info', 'Successfully loaded', 'Config');
|
|
|
|
log('Info', `maintainer: ${config.maintainer}`, 'Config');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
checkDependencies();
|
|
|
|
|
|
|
|
// Check if a port is being used
|
|
|
|
if (await portUsed.check(config.port)) {
|
2016-12-29 02:36:03 -06:00
|
|
|
log('Error', `Port: ${config.port} is already used!`);
|
2016-12-28 16:49:51 -06:00
|
|
|
return State.failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to connect to MongoDB
|
|
|
|
try {
|
|
|
|
const db = await initdb(config);
|
2016-12-29 02:36:03 -06:00
|
|
|
log('Info', 'Success to connect to MongoDB');
|
2016-12-28 16:49:51 -06:00
|
|
|
db.close();
|
|
|
|
} catch (e) {
|
2016-12-29 02:36:03 -06:00
|
|
|
log('Error', `MongoDB: ${e}`);
|
2016-12-28 16:49:51 -06:00
|
|
|
return State.failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
return warn ? State.warn : State.success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Spawn workers
|
|
|
|
*/
|
|
|
|
function spawn(callback: any): void {
|
|
|
|
// 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', () => {
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dying away...
|
|
|
|
process.on('exit', () => {
|
2016-12-29 02:50:57 -06:00
|
|
|
log('Info', 'Bye.');
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|