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
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
});
|
|
|
|
});
|