2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-06-09 20:19:44 +02:00
|
|
|
import * as os from 'os';
|
2017-03-22 17:26:46 +01:00
|
|
|
import version from '../../version';
|
2017-03-03 12:06:47 +01:00
|
|
|
import config from '../../conf';
|
2017-11-15 01:47:47 +01:00
|
|
|
import Meta from '../models/meta';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-01-06 15:39:57 +01:00
|
|
|
/**
|
|
|
|
* @swagger
|
|
|
|
* /meta:
|
|
|
|
* post:
|
|
|
|
* 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 08:18:47 +01:00
|
|
|
* secure:
|
2017-02-27 08:19:04 +01:00
|
|
|
* description: whether the server supports secure protocols
|
2017-01-06 15:39:57 +01:00
|
|
|
* type: boolean
|
2017-02-27 08:18:47 +01:00
|
|
|
*
|
2017-01-06 15:39:57 +01:00
|
|
|
* default:
|
|
|
|
* description: Failed
|
|
|
|
* schema:
|
|
|
|
* $ref: "#/definitions/Error"
|
|
|
|
*/
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Show core info
|
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params) => new Promise(async (res, rej) => {
|
2017-11-15 01:47:47 +01:00
|
|
|
const meta = (await Meta.findOne()) || {};
|
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
res({
|
|
|
|
maintainer: config.maintainer,
|
2017-03-17 16:02:41 +01:00
|
|
|
version: version,
|
2017-06-09 20:19:44 +02:00
|
|
|
secure: config.https.enable,
|
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
|
|
|
},
|
2017-11-16 06:19:14 +01:00
|
|
|
top_image: meta.top_image,
|
|
|
|
broadcasts: meta.broadcasts
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|