misskey/src/api/endpoints/meta.js

53 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
* secure:
* description: whether the server supports secure protcols
* type: boolean
*
* 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) =>
new Promise(async (res, rej) =>
{
2017-01-06 13:03:12 +00:00
const commit = await prominence(git).getLastCommit();
2016-12-28 22:49:51 +00:00
res({
maintainer: config.maintainer,
2017-01-06 13:03:12 +00:00
commit: commit.shortHash,
2016-12-28 22:49:51 +00:00
secure: config.https.enable
});
});