26 lines
674 B
Go
26 lines
674 B
Go
package audit
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
)
|
|
|
|
// Formatter is an interface that is responsible for formating a
|
|
// request/response into some format. Formatters write their output
|
|
// to an io.Writer.
|
|
//
|
|
// It is recommended that you pass data through Hash prior to formatting it.
|
|
type Formatter interface {
|
|
FormatRequest(io.Writer, FormatterConfig, *logical.Auth, *logical.Request, error) error
|
|
FormatResponse(io.Writer, FormatterConfig, *logical.Auth, *logical.Request, *logical.Response, error) error
|
|
}
|
|
|
|
type FormatterConfig struct {
|
|
Raw bool
|
|
HMACAccessor bool
|
|
|
|
// This should only ever be used in a testing context
|
|
OmitTime bool
|
|
}
|