Files
trivy/pkg/compliance/report/json.go
2022-10-26 00:02:33 +03:00

42 lines
769 B
Go

package report
import (
"encoding/json"
"fmt"
"io"
"golang.org/x/xerrors"
)
type JSONWriter struct {
Output io.Writer
Report string
}
// Write writes the results in JSON format
func (jw JSONWriter) Write(report *ComplianceReport) error {
var output []byte
var err error
var v interface{}
switch jw.Report {
case allReport:
v = report
case summaryReport:
v = BuildSummary(report)
default:
return xerrors.Errorf(`report %q not supported. Use "summary" or "all"`, jw.Report)
}
output, err = json.MarshalIndent(v, "", " ")
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
}