open-vault/audit/format_json.go

30 lines
637 B
Go
Raw Normal View History

2015-04-13 21:12:03 +00:00
package audit
import (
"encoding/json"
2016-09-21 14:29:42 +00:00
"fmt"
2015-04-13 21:12:03 +00:00
"io"
)
2016-09-21 14:29:42 +00:00
// JSONFormatWriter is an AuditFormatWriter implementation that structures data into
2015-04-13 21:12:03 +00:00
// a JSON format.
2016-09-21 14:29:42 +00:00
type JSONFormatWriter struct{}
2016-09-21 14:29:42 +00:00
func (f *JSONFormatWriter) WriteRequest(w io.Writer, req *AuditRequestEntry) error {
if req == nil {
return fmt.Errorf("request entry was nil, cannot encode")
}
2015-04-13 21:12:03 +00:00
enc := json.NewEncoder(w)
2016-09-21 14:29:42 +00:00
return enc.Encode(req)
2015-04-13 21:12:03 +00:00
}
2016-09-21 14:29:42 +00:00
func (f *JSONFormatWriter) WriteResponse(w io.Writer, resp *AuditResponseEntry) error {
2015-04-13 21:12:03 +00:00
if resp == nil {
2016-09-21 14:29:42 +00:00
return fmt.Errorf("response entry was nil, cannot encode")
2015-04-13 21:12:03 +00:00
}
enc := json.NewEncoder(w)
2016-09-21 14:29:42 +00:00
return enc.Encode(resp)
}