2017-05-08 12:41:38 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-10-05 17:33:40 +00:00
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
|
|
|
|
2017-05-08 12:41:38 +00:00
|
|
|
exports.toBooleanConfig = function toBooleanConfig (configValue) {
|
|
|
|
if (configValue && typeof configValue === 'string') {
|
|
|
|
return (configValue === 'true')
|
|
|
|
}
|
|
|
|
return configValue
|
|
|
|
}
|
2017-12-09 19:21:50 +00:00
|
|
|
|
|
|
|
exports.toArrayConfig = function toArrayConfig (configValue, separator = ',', fallback) {
|
|
|
|
if (configValue && typeof configValue === 'string') {
|
|
|
|
return (configValue.split(separator).map(arrayItem => arrayItem.trim()))
|
|
|
|
}
|
|
|
|
return fallback
|
|
|
|
}
|
2018-03-16 19:36:04 +00:00
|
|
|
|
|
|
|
exports.toIntegerConfig = function toIntegerConfig (configValue) {
|
|
|
|
if (configValue && typeof configValue === 'string') {
|
|
|
|
return parseInt(configValue)
|
|
|
|
}
|
|
|
|
return configValue
|
|
|
|
}
|
2018-10-05 17:33:40 +00:00
|
|
|
|
|
|
|
exports.getGitCommit = function getGitCommit (repodir) {
|
|
|
|
if (!fs.existsSync(repodir + '/.git/HEAD')) {
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
let reference = fs.readFileSync(repodir + '/.git/HEAD', 'utf8')
|
|
|
|
if (reference.startsWith('ref: ')) {
|
|
|
|
reference = reference.substr(5).replace('\n', '')
|
|
|
|
reference = fs.readFileSync(path.resolve(repodir + '/.git', reference), 'utf8')
|
|
|
|
}
|
2018-11-12 10:17:36 +00:00
|
|
|
reference = reference.replace('\n', '')
|
2018-10-05 17:33:40 +00:00
|
|
|
return reference
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.getGitHubURL = function getGitHubURL (repo, reference) {
|
|
|
|
// if it's not a github reference, we handle handle that anyway
|
|
|
|
if (!repo.startsWith('https://github.com') && !repo.startsWith('git@github.com')) {
|
|
|
|
return repo
|
|
|
|
}
|
|
|
|
if (repo.startsWith('git@github.com') || repo.startsWith('ssh://git@github.com')) {
|
|
|
|
repo = repo.replace(/^(ssh:\/\/)?git@github.com:/, 'https://github.com/')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (repo.endsWith('.git')) {
|
|
|
|
repo = repo.replace(/\.git$/, '/')
|
|
|
|
} else if (!repo.endsWith('/')) {
|
|
|
|
repo = repo + '/'
|
|
|
|
}
|
|
|
|
return repo + 'tree/' + reference
|
|
|
|
}
|