mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package audit
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"encoding/json"
 | 
						|
	"fmt"
 | 
						|
	"io"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/sdk/helper/salt"
 | 
						|
)
 | 
						|
 | 
						|
// JSONFormatWriter is an AuditFormatWriter implementation that structures data into
 | 
						|
// a JSON format.
 | 
						|
type JSONFormatWriter struct {
 | 
						|
	Prefix   string
 | 
						|
	SaltFunc func(context.Context) (*salt.Salt, error)
 | 
						|
}
 | 
						|
 | 
						|
func (f *JSONFormatWriter) WriteRequest(w io.Writer, req *AuditRequestEntry) error {
 | 
						|
	if req == nil {
 | 
						|
		return fmt.Errorf("request entry was nil, cannot encode")
 | 
						|
	}
 | 
						|
 | 
						|
	if len(f.Prefix) > 0 {
 | 
						|
		_, err := w.Write([]byte(f.Prefix))
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	enc := json.NewEncoder(w)
 | 
						|
	return enc.Encode(req)
 | 
						|
}
 | 
						|
 | 
						|
func (f *JSONFormatWriter) WriteResponse(w io.Writer, resp *AuditResponseEntry) error {
 | 
						|
	if resp == nil {
 | 
						|
		return fmt.Errorf("response entry was nil, cannot encode")
 | 
						|
	}
 | 
						|
 | 
						|
	if len(f.Prefix) > 0 {
 | 
						|
		_, err := w.Write([]byte(f.Prefix))
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	enc := json.NewEncoder(w)
 | 
						|
	return enc.Encode(resp)
 | 
						|
}
 | 
						|
 | 
						|
func (f *JSONFormatWriter) Salt(ctx context.Context) (*salt.Salt, error) {
 | 
						|
	return f.SaltFunc(ctx)
 | 
						|
}
 |