2021-08-20 12:34:56 +00:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import { dirname } from 'path';
|
2019-04-07 12:50:36 +00:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as cluster from 'cluster';
|
2019-11-24 08:09:32 +00:00
|
|
|
import * as chalk from 'chalk';
|
2019-04-07 12:50:36 +00:00
|
|
|
import * as portscanner from 'portscanner';
|
2020-04-26 02:24:31 +00:00
|
|
|
import { getConnection } from 'typeorm';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-08-19 12:55:45 +00:00
|
|
|
import Logger from '@/services/logger';
|
|
|
|
import loadConfig from '@/config/load';
|
|
|
|
import { Config } from '@/config/types';
|
2021-08-19 13:04:15 +00:00
|
|
|
import { lessThan } from '@/prelude/array';
|
2021-10-08 12:24:05 +00:00
|
|
|
import { envOption } from '../env';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { showMachineInfo } from '@/misc/show-machine-info';
|
|
|
|
import { initDb } from '../db/postgre';
|
2021-08-20 12:34:56 +00:00
|
|
|
|
|
|
|
//const _filename = fileURLToPath(import.meta.url);
|
|
|
|
const _filename = __filename;
|
|
|
|
const _dirname = dirname(_filename);
|
|
|
|
|
|
|
|
const meta = JSON.parse(fs.readFileSync(`${_dirname}/../meta.json`, 'utf-8'));
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
const logger = new Logger('core', 'cyan');
|
|
|
|
const bootLogger = logger.createSubLogger('boot', 'magenta', false);
|
|
|
|
|
2019-11-24 08:11:53 +00:00
|
|
|
function greet() {
|
2021-10-08 12:24:05 +00:00
|
|
|
if (!envOption.quiet) {
|
2019-04-07 12:50:36 +00:00
|
|
|
//#region Misskey logo
|
2019-11-24 08:11:53 +00:00
|
|
|
const v = `v${meta.version}`;
|
2019-04-07 12:50:36 +00:00
|
|
|
console.log(' _____ _ _ ');
|
|
|
|
console.log(' | |_|___ ___| |_ ___ _ _ ');
|
|
|
|
console.log(' | | | | |_ -|_ -| \'_| -_| | |');
|
|
|
|
console.log(' |_|_|_|_|___|___|_,_|___|_ |');
|
|
|
|
console.log(' ' + chalk.gray(v) + (' |___|\n'.substr(v.length)));
|
|
|
|
//#endregion
|
|
|
|
|
2020-02-01 08:16:17 +00:00
|
|
|
console.log(' Misskey is an open-source decentralized microblogging platform.');
|
2019-04-07 12:50:36 +00:00
|
|
|
console.log(chalk.keyword('orange')(' If you like Misskey, please donate to support development. https://www.patreon.com/syuilo'));
|
|
|
|
|
|
|
|
console.log('');
|
2020-04-26 02:39:15 +00:00
|
|
|
console.log(chalk`--- ${os.hostname()} {gray (PID: ${process.pid.toString()})} ---`);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bootLogger.info('Welcome to Misskey!');
|
2019-11-24 08:11:53 +00:00
|
|
|
bootLogger.info(`Misskey v${meta.version}`, null, true);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 07:27:12 +00:00
|
|
|
function isRoot() {
|
|
|
|
// maybe process.getuid will be undefined under not POSIX environment (e.g. Windows)
|
|
|
|
return process.getuid != null && process.getuid() === 0;
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
/**
|
|
|
|
* Init master process
|
|
|
|
*/
|
|
|
|
export async function masterMain() {
|
2019-04-12 16:43:22 +00:00
|
|
|
let config!: Config;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-04-24 13:55:18 +00:00
|
|
|
// initialize app
|
2019-04-07 12:50:36 +00:00
|
|
|
try {
|
2019-11-24 08:11:53 +00:00
|
|
|
greet();
|
2021-04-24 13:55:18 +00:00
|
|
|
showEnvironment();
|
|
|
|
await showMachineInfo(bootLogger);
|
|
|
|
showNodejsVersion();
|
|
|
|
config = loadConfigBoot();
|
|
|
|
await connectDb();
|
|
|
|
await validatePort(config);
|
2019-04-07 12:50:36 +00:00
|
|
|
} catch (e) {
|
|
|
|
bootLogger.error('Fatal error occurred during initialization', null, true);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bootLogger.succ('Misskey initialized');
|
|
|
|
|
2021-10-08 12:24:05 +00:00
|
|
|
if (!envOption.disableClustering) {
|
2019-04-07 12:50:36 +00:00
|
|
|
await spawnWorkers(config.clusterLimit);
|
|
|
|
}
|
|
|
|
|
2020-04-26 02:39:15 +00:00
|
|
|
bootLogger.succ(`Now listening on port ${config.port} on ${config.url}`, null, true);
|
|
|
|
|
2021-10-08 12:24:05 +00:00
|
|
|
if (!envOption.noDaemons) {
|
2019-04-07 12:50:36 +00:00
|
|
|
require('../daemons/server-stats').default();
|
|
|
|
require('../daemons/queue-stats').default();
|
2019-07-03 11:18:07 +00:00
|
|
|
require('../daemons/janitor').default();
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const runningNodejsVersion = process.version.slice(1).split('.').map(x => parseInt(x, 10));
|
|
|
|
const requiredNodejsVersion = [11, 7, 0];
|
|
|
|
const satisfyNodejsVersion = !lessThan(runningNodejsVersion, requiredNodejsVersion);
|
|
|
|
|
|
|
|
function showEnvironment(): void {
|
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const logger = bootLogger.createSubLogger('env');
|
2020-04-03 23:46:54 +00:00
|
|
|
logger.info(typeof env === 'undefined' ? 'NODE_ENV is not set' : `NODE_ENV: ${env}`);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
if (env !== 'production') {
|
|
|
|
logger.warn('The environment is not in production mode.');
|
|
|
|
logger.warn('DO NOT USE FOR PRODUCTION PURPOSE!', null, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info(`You ${isRoot() ? '' : 'do not '}have root privileges`);
|
|
|
|
}
|
|
|
|
|
2021-04-24 13:55:18 +00:00
|
|
|
function showNodejsVersion(): void {
|
2019-04-07 12:50:36 +00:00
|
|
|
const nodejsLogger = bootLogger.createSubLogger('nodejs');
|
|
|
|
|
|
|
|
nodejsLogger.info(`Version ${runningNodejsVersion.join('.')}`);
|
|
|
|
|
|
|
|
if (!satisfyNodejsVersion) {
|
|
|
|
nodejsLogger.error(`Node.js version is less than ${requiredNodejsVersion.join('.')}. Please upgrade it.`, null, true);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2021-04-24 13:55:18 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-04-24 13:55:18 +00:00
|
|
|
function loadConfigBoot(): Config {
|
2019-04-07 12:50:36 +00:00
|
|
|
const configLogger = bootLogger.createSubLogger('config');
|
|
|
|
let config;
|
|
|
|
|
|
|
|
try {
|
|
|
|
config = loadConfig();
|
|
|
|
} catch (exception) {
|
|
|
|
if (typeof exception === 'string') {
|
|
|
|
configLogger.error(exception);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
if (exception.code === 'ENOENT') {
|
|
|
|
configLogger.error('Configuration file not found', null, true);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
throw exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
configLogger.succ('Loaded');
|
|
|
|
|
2021-04-24 13:55:18 +00:00
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function connectDb(): Promise<void> {
|
2020-04-26 02:39:15 +00:00
|
|
|
const dbLogger = bootLogger.createSubLogger('db');
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
// Try to connect to DB
|
|
|
|
try {
|
2020-04-26 02:39:15 +00:00
|
|
|
dbLogger.info('Connecting...');
|
2019-04-07 12:50:36 +00:00
|
|
|
await initDb();
|
2020-05-10 08:34:22 +00:00
|
|
|
const v = await getConnection().query('SHOW server_version').then(x => x[0].server_version);
|
2020-04-26 02:39:15 +00:00
|
|
|
dbLogger.succ(`Connected: v${v}`);
|
2019-04-07 12:50:36 +00:00
|
|
|
} catch (e) {
|
2020-04-26 02:39:15 +00:00
|
|
|
dbLogger.error('Cannot connect', null, true);
|
|
|
|
dbLogger.error(e);
|
2019-04-07 12:50:36 +00:00
|
|
|
process.exit(1);
|
|
|
|
}
|
2021-04-24 13:55:18 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-04-24 13:55:18 +00:00
|
|
|
async function validatePort(config: Config): Promise<void> {
|
|
|
|
const isWellKnownPort = (port: number) => port < 1024;
|
|
|
|
|
|
|
|
async function isPortAvailable(port: number): Promise<boolean> {
|
|
|
|
return await portscanner.checkPortStatus(port, '127.0.0.1') === 'closed';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.port == null || Number.isNaN(config.port)) {
|
|
|
|
bootLogger.error('The port is not configured. Please configure port.', null, true);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process.platform === 'linux' && isWellKnownPort(config.port) && !isRoot()) {
|
|
|
|
bootLogger.error('You need root privileges to listen on well-known port on Linux', null, true);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!await isPortAvailable(config.port)) {
|
|
|
|
bootLogger.error(`Port ${config.port} is already in use`, null, true);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 20:33:24 +00:00
|
|
|
async function spawnWorkers(limit: number = 1) {
|
2019-04-07 12:50:36 +00:00
|
|
|
const workers = Math.min(limit, os.cpus().length);
|
|
|
|
bootLogger.info(`Starting ${workers} worker${workers === 1 ? '' : 's'}...`);
|
|
|
|
await Promise.all([...Array(workers)].map(spawnWorker));
|
|
|
|
bootLogger.succ('All workers started');
|
|
|
|
}
|
|
|
|
|
|
|
|
function spawnWorker(): Promise<void> {
|
|
|
|
return new Promise(res => {
|
|
|
|
const worker = cluster.fork();
|
|
|
|
worker.on('message', message => {
|
|
|
|
if (message !== 'ready') return;
|
|
|
|
res();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|