misskey/src/api/endpoints/meta.js

52 lines
1.1 KiB
JavaScript
Raw Normal View History

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