2016-12-28 15:49:51 -07:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-06-09 12:19:44 -06:00
|
|
|
import * as os from 'os';
|
2018-04-01 22:15:53 -06:00
|
|
|
import config from '../../../config';
|
2018-03-29 05:32:18 -06:00
|
|
|
import Meta from '../../../models/meta';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-04-22 06:32:09 -06:00
|
|
|
const pkg = require('../../../../package.json');
|
|
|
|
const client = require('../../../../built/client/meta.json');
|
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
/**
|
|
|
|
* Show core info
|
|
|
|
*/
|
2018-07-06 08:52:47 -06:00
|
|
|
export default () => new Promise(async (res, rej) => {
|
2018-03-29 05:32:18 -06:00
|
|
|
const meta: any = (await Meta.findOne()) || {};
|
2017-11-14 17:47:47 -07:00
|
|
|
|
2017-03-03 12:28:38 -07:00
|
|
|
res({
|
|
|
|
maintainer: config.maintainer,
|
2018-04-22 06:32:09 -06:00
|
|
|
|
|
|
|
version: pkg.version,
|
|
|
|
clientVersion: client.version,
|
|
|
|
|
2017-11-27 22:57:02 -07:00
|
|
|
secure: config.https != null,
|
2017-06-09 14:25:57 -06:00
|
|
|
machine: os.hostname(),
|
2017-06-11 11:05:23 -06:00
|
|
|
os: os.platform(),
|
|
|
|
node: process.version,
|
2017-06-09 12:19:44 -06:00
|
|
|
cpu: {
|
2017-06-11 11:05:23 -06:00
|
|
|
model: os.cpus()[0].model,
|
2017-06-09 12:19:44 -06:00
|
|
|
cores: os.cpus().length
|
2017-11-14 17:47:47 -07:00
|
|
|
},
|
2018-08-17 04:17:23 -06:00
|
|
|
broadcasts: meta.broadcasts,
|
|
|
|
disableRegistration: meta.disableRegistration
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|
2017-03-03 12:28:38 -07:00
|
|
|
});
|