Files
trivy/pkg/report/json.go
2022-02-09 19:31:12 +02:00

30 lines
583 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 {
output, err := json.MarshalIndent(report, "", " ")
if err != nil {
return xerrors.Errorf("failed to marshal json: %w", err)
}
if _, err = fmt.Fprint(jw.Output, string(output)); err != nil {
return xerrors.Errorf("failed to write json: %w", err)
}
return nil
}