forked from lablabs/setup-terraform-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
103 lines (86 loc) · 2.85 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
const fs = require('fs')
const os = require('os')
const path = require('path')
const process = require('process')
const core = require('@actions/core')
const tc = require('@actions/tool-cache')
const { Octokit } = require('@octokit/rest')
async function run() {
if (isSupportedPlatform(process.platform)) {
const version = await getTerraformDocsVersion()
const url = getDownloadUrl(version, process.platform)
const targetPath = getTargetPath()
core.debug(`Downloading Terraform docs version [${version}] for platform [${process.platform}] from [${url}] to destination [${targetPath}]`)
const terraformDocsPath = await tc.downloadTool(url, targetPath)
makeFileExecutable(terraformDocsPath)
core.debug(`Adding [${getTargetDirectory()}] into PATH`)
core.addPath(getTargetDirectory())
}
}
function getTargetDirectory() {
return path.join(os.homedir(), 'terraform_docs', 'bin')
}
function getTargetPath() {
return path.join(getTargetDirectory(), 'terraform-docs')
}
function isSupportedPlatform(platform) {
const supportedPlatforms = ['win32', 'linux', 'darwin']
if (supportedPlatforms.includes(platform)) {
return true;
} else {
throw new Error(
`Your platform (${platform}) is not supported by the action.
Supported platforms: ${supportedPlatforms}`
)
}
}
function isWindows() {
return process.platform == 'win32'
}
function getOctokit() {
const options = {}
const token = core.getInput("token")
if (token) {
core.debug("Using token authentication for Octokit")
options.auth = token
}
return new Octokit(options)
}
async function getTerraformDocsVersion() {
const inputVersion = core.getInput("terraform_docs_version", {required: true})
if (inputVersion == "latest") {
core.debug("Requesting for [latest] version ...")
const octokit = getOctokit()
const response = await octokit.repos.getLatestRelease({
owner: 'terraform-docs',
repo: 'terraform-docs'
})
core.debug(`... version resolved to [${response.data.name}`)
return response.data.name
} else {
return inputVersion
}
}
function getDownloadUrl(version, platform) {
const baseUrl = "https://github.com/terraform-docs/terraform-docs/releases/download"
const fileName = getDownloadFilename(version, platform)
return `${baseUrl}/${version}/${fileName}`
}
function getDownloadFilename(version, platform) {
const fileNamePlatformMatrix = {
win32: 'windows-amd64.exe',
darwin: 'darwin-amd64',
linux: 'linux-amd64'
}
return `terraform-docs-${version}-${fileNamePlatformMatrix[platform]}`
}
function makeFileExecutable(filename) {
if (!isWindows()) {
const chmod = '755'
core.debug(`Setting chmod [${filename}] to [${chmod}]`)
fs.chmodSync(`${filename}`, chmod)
}
}
// RUN THE ACTION
run().catch((error) => core.setFailed(error.message))
module.exports = { run, makeFileExecutable }