Sharkey/src/server/api/endpoints/meta.ts

44 lines
1.2 KiB
TypeScript
Raw Normal View History

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