generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
192 lines (168 loc) · 6.77 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
const core = require('@actions/core')
const { exec } = require('@actions/exec')
const request = require('request-promise-native')
const chalk = require('chalk')
chalk.level = 1 // Chalk doesn't detect that GitHub Actions supports color. This forces chalk to use color.
const divvycloudLoginUrl = 'https://byu.customer.divvycloud.com/v2/public/user/login'
const divvycloudScanUrl = 'https://byu.customer.divvycloud.com/v3/iac/scan'
async function jsonFromPlan (workDir, planFileName) {
const exitCode = await exec('which tofu', undefined, { silent: true, ignoreReturnCode: true })
const hasTofu = exitCode === 0
const command = hasTofu ? 'tofu' : 'terraform'
// run terraform show -json to parse the plan into a json string
let output = ''
const options = {
listeners: {
stdout: (data) => {
// captures the standard output of the terraform show command and appends it to the variable 'output'
output += data.toString('utf8')
}
},
cwd: workDir // execute the command from working directory 'dir'
}
core.debug(`execOptions: ${JSON.stringify(options)}`)
core.startGroup('Plan to be Scanned')
await exec(command, ['show', '-json', planFileName], options)
core.endGroup()
// pull out any extra fluff from terraform wrapper from the hashicorp/setup-terraform action
const json = output.match(/{.*}/)
if (json === null) {
core.debug('** start of output **')
core.debug(output)
core.debug('** end of output **')
throw Error('There was an error while parsing your Terraform plan. The output from "terraform show -json" didn\'t match with /{.*}/ as expected.')
}
core.debug('** matched json **')
core.debug(json[0])
core.debug('** end matched json **')
return json[0]
}
async function getAuthToken (username, password) {
try {
const { session_id: token } = await request({
method: 'POST',
uri: divvycloudLoginUrl,
body: { username, password },
json: true
})
core.setSecret(token)
return token
} catch (e) {
throw Error('An error occurred while getting a token for DivvyCloud. Did you provide a valid username/password?')
}
}
async function getScan (authToken, author, scanName, json) {
const { statusCode, body } = await request({
method: 'POST',
uri: divvycloudScanUrl,
body: {
scan_name: scanName,
author_name: author,
scan_template: json,
config_name: 'Github Scan',
iac_provider: 'terraform'
},
json: true,
resolveWithFullResponse: true,
simple: false,
headers: {
'Content-Type': 'application/json;charset=UTF-8',
Accept: 'application/json',
'X-Auth-Token': authToken
}
})
return { statusCode, body }
}
function printSummary (scanResult) {
core.debug('Printing summary')
core.info(chalk.bold.underline('\nSummary:'))
core.debug('Printing passed insights')
if (scanResult.details.passed_insights.length > 0) {
core.info(chalk.bold.green(`Passed Insights (${scanResult.details.passed_insights.length})`))
} else {
core.info('Passed Insights (0)')
}
scanResult.details.passed_insights.forEach(insight => {
core.startGroup(chalk.bold.green(insight.name))
core.info(chalk.italic.greenBright(insight.description))
core.info(chalk.green(`Severity: ${insight.severity}`))
core.info(chalk.greenBright(insight.notes))
core.endGroup()
insight.success.forEach(resourceId => {
const { address: terraformId, name } = scanResult.resource_mapping[resourceId]
core.info(` • ${chalk.greenBright(terraformId || `name = ${name}`)}`)
})
})
core.debug('Printing warned insights')
if (scanResult.details.warned_insights.length > 0) {
core.info(chalk.bold.yellow(`Warned Insights (${scanResult.details.warned_insights.length})`))
} else {
core.info('Warned Insights (0)')
}
scanResult.details.warned_insights.forEach(insight => {
core.startGroup(chalk.bold.yellow(insight.name))
core.info(chalk.italic.yellowBright(insight.description))
core.info(chalk.yellow(`Severity: ${insight.severity}`))
core.info(chalk.yellowBright(insight.notes))
core.endGroup()
insight.warning.forEach(resourceId => {
const { address: terraformId, name } = scanResult.resource_mapping[resourceId]
core.info(` • ${chalk.yellowBright(terraformId || `name = ${name}`)}`)
})
})
core.debug('Printing failed insights')
if (scanResult.details.failed_insights.length > 0) {
core.info(chalk.bold.red(`Failed Insights (${scanResult.details.failed_insights.length})`))
} else {
core.info('Failed Insights (0)')
}
scanResult.details.failed_insights.forEach(insight => {
core.startGroup(chalk.bold.red(insight.name))
core.info(chalk.italic.redBright(insight.description))
core.info(chalk.red(`Severity: ${insight.severity}`))
core.info(chalk.redBright(insight.notes))
core.endGroup()
insight.failure.forEach(resourceId => {
const { address: terraformId, name } = scanResult.resource_mapping[resourceId]
core.info(` • ${chalk.redBright(terraformId || `name = ${name}`)}`)
})
})
}
// most @actions toolkit packages have async methods
async function run () {
try {
// Workflow Inputs
const planFileName = core.getInput('terraform-plan-file', { required: true })
const workDir = core.getInput('working-directory', { required: true })
const username = core.getInput('divvycloud-username', { required: true })
const password = core.getInput('divvycloud-password', { required: true })
// Environment variables
const scanName = process.env.GITHUB_REPOSITORY + '.' + process.env.GITHUB_RUN_ID + '.' + process.env.GITHUB_RUN_NUMBER
const author = process.env.GITHUB_ACTOR
// Get Terraform plan
const json = await jsonFromPlan(workDir, planFileName)
// DivvyCloud Auth token
const authToken = await getAuthToken(username, password)
// Send JSON plan to DivvyCloud
const { statusCode, body: scanResult } = await getScan(authToken, author, scanName, json)
core.info(`Status Code: ${statusCode}`)
core.startGroup('Full Scan Results')
core.info(JSON.stringify(scanResult, null, 2))
core.endGroup()
const normalStatusCodesFromScan = [200, 202, 406]
if (!normalStatusCodesFromScan.includes(statusCode)) {
core.error('[DivvyCloud]: Scan returned an unexpected response. Please contact the DivvyCloud Admins.')
return
}
printSummary(scanResult)
core.info('')
switch (statusCode) {
case 200: core.info('[DivvyCloud]: Scan completed. All checks have passed!'); break
case 202: core.warning('[DivvyCloud]: Scan completed, but with warnings.'); break
case 406: core.setFailed('[DivvyCloud]: Scan completed, but one or more checks failed. Please check the log for more information.')
}
} catch (error) {
core.setFailed(error)
}
}
run()