Documentation ¶
Overview ¶
Package middleware implements middleware function for server implementations, which validates incoming HTTP requests to make sure that they conform to the given OAPI 3.0 specification. When OAPI validation fails on the request, we return an HTTP/400.
Index ¶
- func GetFiberContext(c context.Context) *fiber.Ctx
- func GetUserData(c context.Context) interface{}
- func OapiRequestValidator(swagger *openapi3.T) fiber.Handler
- func OapiRequestValidatorWithOptions(swagger *openapi3.T, options *Options) fiber.Handler
- func OapiValidatorFromYamlFile(path string) (fiber.Handler, error)
- func ValidateRequestFromContext(c *fiber.Ctx, router routers.Router, options *Options) error
- type ErrorHandler
- type MultiErrorHandler
- type Options
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetFiberContext ¶
GetFiberContext gets the fiber context from within requests. It returns nil if not found or wrong type.
func GetUserData ¶
func OapiRequestValidator ¶
OapiRequestValidator is a fiber middleware function which validates incoming HTTP requests to make sure that they conform to the given OAPI 3.0 specification. When OAPI validation fails on the request, we return an HTTP/400 with error message
func OapiRequestValidatorWithOptions ¶
OapiRequestValidatorWithOptions creates a validator from a swagger object, with validation options
func OapiValidatorFromYamlFile ¶
OapiValidatorFromYamlFile creates a validator middleware from a YAML file path
Types ¶
type ErrorHandler ¶
ErrorHandler is called when there is an error in validation
type MultiErrorHandler ¶
type MultiErrorHandler func(openapi3.MultiError) error
MultiErrorHandler is called when oapi returns a MultiError type
type Options ¶
type Options struct { Options openapi3filter.Options ErrorHandler ErrorHandler ParamDecoder openapi3filter.ContentParameterDecoder UserData interface{} MultiErrorHandler MultiErrorHandler }
Options to customize request validation. These are passed through to openapi3filter.