mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 23:26:39 -08:00
40 lines
740 B
Go
40 lines
740 B
Go
package k8s
|
|
|
|
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 Report) error {
|
|
var output []byte
|
|
var err error
|
|
|
|
switch jw.Report {
|
|
case allReport:
|
|
output, err = json.MarshalIndent(report, "", " ")
|
|
case summaryReport:
|
|
output, err = json.MarshalIndent(report.consolidate(), "", " ")
|
|
default:
|
|
err = fmt.Errorf("report %s not supported", jw.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
|
|
}
|