mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 23:26:39 -08:00
38 lines
891 B
Go
38 lines
891 B
Go
package report
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/types"
|
|
)
|
|
|
|
// JSONWriter implements result Writer
|
|
type JSONWriter struct {
|
|
Output io.Writer
|
|
}
|
|
|
|
// Write writes the results in JSON format
|
|
func (jw JSONWriter) Write(report types.Report) error {
|
|
// VendorSeverity includes all vendor severities.
|
|
// It would be noisy to users, so it should be removed from the JSON output.
|
|
for i := 0; i < len(report.Results); i++ {
|
|
for j := 0; j < len(report.Results[i].Vulnerabilities); j++ {
|
|
report.Results[i].Vulnerabilities[j].VendorSeverity = nil
|
|
}
|
|
}
|
|
|
|
output, err := json.MarshalIndent(report, "", " ")
|
|
if err != nil {
|
|
return xerrors.Errorf("failed to marshal json: %w", err)
|
|
}
|
|
|
|
if _, err = fmt.Fprintln(jw.Output, string(output)); err != nil {
|
|
return xerrors.Errorf("failed to write json: %w", err)
|
|
}
|
|
return nil
|
|
}
|