yumechi-no-kuni/src/server/api/endpoints/meta.ts

56 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* Module dependencies
*/
2017-06-09 13:19:44 -05:00
import * as os from 'os';
2018-03-28 11:20:40 -05:00
import version from '../../../version';
2018-04-01 23:15:53 -05:00
import config from '../../../config';
2018-03-29 06:32:18 -05:00
import Meta from '../../../models/meta';
2016-12-28 16:49:51 -06:00
2017-01-06 08:39:57 -06:00
/**
* @swagger
* /meta:
2018-04-07 12:30:37 -05:00
* note:
2017-01-06 08:39:57 -06: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 01:18:47 -06:00
* secure:
2017-02-27 01:19:04 -06:00
* description: whether the server supports secure protocols
2017-01-06 08:39:57 -06:00
* type: boolean
2017-02-27 01:18:47 -06:00
*
2017-01-06 08:39:57 -06:00
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
2016-12-28 16:49:51 -06:00
/**
* Show core info
*/
2017-03-03 13:28:38 -06:00
module.exports = (params) => new Promise(async (res, rej) => {
2018-03-29 06:32:18 -05:00
const meta: any = (await Meta.findOne()) || {};
2017-11-14 18:47:47 -06:00
2017-03-03 13:28:38 -06:00
res({
maintainer: config.maintainer,
2017-03-17 10:02:41 -05:00
version: version,
2017-11-27 23:57:02 -06:00
secure: config.https != null,
2017-06-09 15:25:57 -05:00
machine: os.hostname(),
2017-06-11 12:05:23 -05:00
os: os.platform(),
node: process.version,
2017-06-09 13:19:44 -05:00
cpu: {
2017-06-11 12:05:23 -05:00
model: os.cpus()[0].model,
2017-06-09 13:19:44 -05:00
cores: os.cpus().length
2017-11-14 18:47:47 -06:00
},
broadcasts: meta.broadcasts
2016-12-28 16:49:51 -06:00
});
2017-03-03 13:28:38 -06:00
});