2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-01-06 14:03:12 +01:00
|
|
|
import prominence from 'prominence';
|
|
|
|
import git from 'git-last-commit';
|
2017-03-03 12:06:47 +01:00
|
|
|
import config from '../../conf';
|
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
|
|
|
*/
|
|
|
|
module.exports = (params) =>
|
2017-02-27 08:18:47 +01:00
|
|
|
new Promise(async (res, rej) => {
|
|
|
|
const commit = await prominence(git).getLastCommit();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-02-27 08:18:47 +01:00
|
|
|
res({
|
|
|
|
maintainer: config.maintainer,
|
|
|
|
commit: commit.shortHash,
|
|
|
|
secure: config.https.enable
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|