rudeshark.net/src/server/api/endpoints/meta.ts

40 lines
941 B
TypeScript
Raw Normal View History

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