mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 00:11:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/35908 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Guy Bedford <guybedford@gmail.com>
37 lines
987 B
JavaScript
37 lines
987 B
JavaScript
// print an error or just nothing if the audit report has an error
|
|
// this is called by the audit command, and by the reify-output util
|
|
// prints a JSON version of the error if it's --json
|
|
// returns 'true' if there was an error, false otherwise
|
|
|
|
const output = require('./output.js')
|
|
const npm = require('../npm.js')
|
|
const auditError = (report) => {
|
|
if (!report || !report.error)
|
|
return false
|
|
|
|
if (npm.command !== 'audit')
|
|
return true
|
|
|
|
const { error } = report
|
|
|
|
// ok, we care about it, then
|
|
npm.log.warn('audit', error.message)
|
|
const { body: errBody } = error
|
|
const body = Buffer.isBuffer(errBody) ? errBody.toString() : errBody
|
|
if (npm.flatOptions.json) {
|
|
output(JSON.stringify({
|
|
message: error.message,
|
|
method: error.method,
|
|
uri: error.uri,
|
|
headers: error.headers,
|
|
statusCode: error.statusCode,
|
|
body,
|
|
}, null, 2))
|
|
} else
|
|
output(body)
|
|
|
|
throw 'audit endpoint returned an error'
|
|
}
|
|
|
|
module.exports = auditError
|