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

61 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Module dependencies
*/
2017-06-09 18:19:44 +00:00
import * as os from 'os';
2018-04-02 04:15:53 +00:00
import config from '../../../config';
2018-03-29 11:32:18 +00:00
import Meta from '../../../models/meta';
2016-12-28 22:49:51 +00:00
const pkg = require('../../../../package.json');
const client = require('../../../../built/client/meta.json');
2017-01-06 14:39:57 +00:00
/**
* @swagger
* /meta:
2018-04-07 17:30:37 +00:00
* note:
2017-01-06 14:39:57 +00:00
* summary: Show the misskey's information
* responses:
* 200:
* description: Success
* schema:
* type: object
* properties:
* maintainer:
* description: maintainer's name
* type: string
* commit:
* description: latest commit's hash
* type: string
2017-02-27 07:18:47 +00:00
* secure:
2017-02-27 07:19:04 +00:00
* description: whether the server supports secure protocols
2017-01-06 14:39:57 +00:00
* type: boolean
2017-02-27 07:18:47 +00:00
*
2017-01-06 14:39:57 +00:00
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
2016-12-28 22:49:51 +00:00
/**
* Show core info
*/
2018-06-18 00:54:53 +00:00
module.exports = (params: any) => new Promise(async (res, rej) => {
2018-03-29 11:32:18 +00:00
const meta: any = (await Meta.findOne()) || {};
2017-11-15 00:47:47 +00:00
2017-03-03 19:28:38 +00:00
res({
maintainer: config.maintainer,
version: pkg.version,
clientVersion: client.version,
2017-11-28 05:57:02 +00:00
secure: config.https != null,
2017-06-09 20:25:57 +00:00
machine: os.hostname(),
2017-06-11 17:05:23 +00:00
os: os.platform(),
node: process.version,
2017-06-09 18:19:44 +00:00
cpu: {
2017-06-11 17:05:23 +00:00
model: os.cpus()[0].model,
2017-06-09 18:19:44 +00:00
cores: os.cpus().length
2017-11-15 00:47:47 +00:00
},
broadcasts: meta.broadcasts
2016-12-28 22:49:51 +00:00
});
2017-03-03 19:28:38 +00:00
});