Documentation ¶
Overview ¶
Package openapi3filter validates that requests and inputs request an OpenAPI 3 specification file.
Index ¶
- Variables
- func FileBodyDecoder(body io.Reader, header http.Header, schema *openapi3.SchemaRef, ...) (interface{}, error)
- func RegisterBodyDecoder(contentType string, decoder BodyDecoder)
- func TrimJSONPrefix(data []byte) []byte
- func UnregisterBodyDecoder(contentType string)
- func ValidateParameter(c context.Context, input *RequestValidationInput, ...) error
- func ValidateRequest(c context.Context, input *RequestValidationInput) error
- func ValidateRequestBody(c context.Context, input *RequestValidationInput, ...) error
- func ValidateResponse(c context.Context, input *ResponseValidationInput) error
- func ValidateSecurityRequirements(c context.Context, input *RequestValidationInput, ...) error
- type AuthenticationInput
- type BodyDecoder
- type ContentParameterDecoder
- type EncodingFn
- type Options
- type ParseError
- type ParseErrorKind
- type RequestError
- type RequestValidationInput
- type ResponseError
- type ResponseValidationInput
- type Route
- type RouteError
- type Router
- func (router *Router) AddRoute(route *Route) error
- func (router *Router) AddSwagger(swagger *openapi3.Swagger) error
- func (router *Router) AddSwaggerFromFile(path string) error
- func (router *Router) FindRoute(method string, url *url.URL) (*Route, map[string]string, error)
- func (router *Router) WithSwagger(swagger *openapi3.Swagger) *Router
- func (router *Router) WithSwaggerFromFile(path string) *Router
- type Routers
- type SecurityRequirementsError
Constants ¶
This section is empty.
Variables ¶
var DefaultOptions = &Options{}
var (
ErrAuthenticationServiceMissing = errors.New("Request validator doesn't have an authentication service defined")
)
var ErrInvalidRequired = errors.New("must have a value")
ErrInvalidRequired is an error that happens when a required value of a parameter or request's body is not defined.
var JSONPrefixes = []string{
")]}',\n",
}
Functions ¶
func FileBodyDecoder ¶ added in v0.2.1
func FileBodyDecoder(body io.Reader, header http.Header, schema *openapi3.SchemaRef, encFn EncodingFn) (interface{}, error)
FileBodyDecoder is a body decoder that decodes a file body to a string.
func RegisterBodyDecoder ¶ added in v0.2.1
func RegisterBodyDecoder(contentType string, decoder BodyDecoder)
RegisterBodyDecoder registers a request body's decoder for a content type.
If a decoder for the specified content type already exists, the function replaces it with the specified decoder.
func TrimJSONPrefix ¶
TrimJSONPrefix trims one of the possible prefixes
func UnregisterBodyDecoder ¶ added in v0.2.1
func UnregisterBodyDecoder(contentType string)
UnregisterBodyDecoder dissociates a body decoder from a content type.
Decoding this content type will result in an error.
func ValidateParameter ¶
func ValidateParameter(c context.Context, input *RequestValidationInput, parameter *openapi3.Parameter) error
ValidateParameter validates a parameter's value by JSON schema. The function returns RequestError with a ParseError cause when unable to parse a value. The function returns RequestError with ErrInvalidRequired cause when a value of a required parameter is not defined. The function returns RequestError with a openapi3.SchemaError cause when a value is invalid by JSON schema.
func ValidateRequest ¶
func ValidateRequest(c context.Context, input *RequestValidationInput) error
func ValidateRequestBody ¶
func ValidateRequestBody(c context.Context, input *RequestValidationInput, requestBody *openapi3.RequestBody) error
ValidateRequestBody validates data of a request's body.
The function returns RequestError with ErrInvalidRequired cause when a value is required but not defined. The function returns RequestError with a openapi3.SchemaError cause when a value is invalid by JSON schema.
func ValidateResponse ¶
func ValidateResponse(c context.Context, input *ResponseValidationInput) error
func ValidateSecurityRequirements ¶
func ValidateSecurityRequirements(c context.Context, input *RequestValidationInput, srs openapi3.SecurityRequirements) error
ValidateSecurityRequirements validates a multiple OpenAPI 3 security requirements. Returns nil if one of them inputed. Otherwise returns an error describing the security failures.
Types ¶
type AuthenticationInput ¶
type AuthenticationInput struct { RequestValidationInput *RequestValidationInput SecuritySchemeName string SecurityScheme *openapi3.SecurityScheme Scopes []string }
func (*AuthenticationInput) NewError ¶
func (input *AuthenticationInput) NewError(err error) error
type BodyDecoder ¶ added in v0.2.1
BodyDecoder is an interface to decode a body of a request or response. An implementation must return a value that is a primitive, []interface{}, or map[string]interface{}.
type ContentParameterDecoder ¶ added in v0.2.1
type ContentParameterDecoder func(param *openapi3.Parameter, values []string) (interface{}, *openapi3.Schema, error)
This function takes a parameter definition from the swagger spec, and the value which we received for it. It is expected to return the value unmarshaled into an interface which can be traversed for validation, it should also return the schema to be used for validating the object, since there can be more than one in the content spec.
If a query parameter appears multiple times, values[] will have more than one value, but for all other parameter types it should have just one.
type EncodingFn ¶ added in v0.2.1
EncodingFn is a function that returns an encoding of a request body's part.
type ParseError ¶ added in v0.2.1
type ParseError struct { Kind ParseErrorKind Value interface{} Reason string Cause error // contains filtered or unexported fields }
ParseError describes errors which happens while parse operation's parameters, requestBody, or response.
func (*ParseError) Error ¶ added in v0.2.1
func (e *ParseError) Error() string
func (*ParseError) Path ¶ added in v0.2.1
func (e *ParseError) Path() []interface{}
Path returns a path to the root cause.
func (*ParseError) RootCause ¶ added in v0.2.1
func (e *ParseError) RootCause() error
RootCause returns a root cause of ParseError.
type ParseErrorKind ¶ added in v0.2.1
type ParseErrorKind int
ParseErrorKind describes a kind of ParseError. The type simplifies comparison of errors.
const ( // KindOther describes an untyped parsing error. KindOther ParseErrorKind = iota // KindUnsupportedFormat describes an error that happens when a value has an unsupported format. KindUnsupportedFormat // KindInvalidFormat describes an error that happens when a value does not conform a format // that is required by a serialization method. KindInvalidFormat )
type RequestError ¶
type RequestError struct { Input *RequestValidationInput Parameter *openapi3.Parameter RequestBody *openapi3.RequestBody Status int Reason string Err error }
func (*RequestError) Error ¶
func (err *RequestError) Error() string
func (*RequestError) HTTPStatus ¶
func (err *RequestError) HTTPStatus() int
type RequestValidationInput ¶
type RequestValidationInput struct { Request *http.Request PathParams map[string]string QueryParams url.Values Route *Route Options *Options ParamDecoder ContentParameterDecoder }
func (*RequestValidationInput) GetQueryParams ¶
func (input *RequestValidationInput) GetQueryParams() url.Values
type ResponseError ¶
type ResponseError struct { Input *ResponseValidationInput Reason string Err error }
func (*ResponseError) Error ¶
func (err *ResponseError) Error() string
type ResponseValidationInput ¶
type ResponseValidationInput struct { RequestValidationInput *RequestValidationInput Status int Header http.Header Body io.ReadCloser Options *Options }
func (*ResponseValidationInput) SetBodyBytes ¶
func (input *ResponseValidationInput) SetBodyBytes(value []byte) *ResponseValidationInput
type RouteError ¶
func (*RouteError) Error ¶
func (err *RouteError) Error() string
type Router ¶
type Router struct {
// contains filtered or unexported fields
}
Router maps a HTTP request to an OpenAPI operation.
func NewRouter ¶
func NewRouter() *Router
NewRouter creates a new router.
If the given Swagger has servers, router will use them. All operations of the Swagger will be added to the router.
func (*Router) AddSwagger ¶
AddSwagger adds all operations in the OpenAPI specification.
func (*Router) AddSwaggerFromFile ¶
AddSwaggerFromFile loads the Swagger file and adds it using AddSwagger.
func (*Router) WithSwagger ¶
WithSwagger adds all operations in the OpenAPI specification. Panics on any error.
func (*Router) WithSwaggerFromFile ¶
WithSwaggerFromFile loads the Swagger file and adds it using WithSwagger. Panics on any error.
type SecurityRequirementsError ¶
type SecurityRequirementsError struct { SecurityRequirements openapi3.SecurityRequirements Errors []error }
func (*SecurityRequirementsError) Error ¶
func (err *SecurityRequirementsError) Error() string