Documentation ¶
Index ¶
- Constants
- func GetGinContext(c context.Context) *gin.Context
- func GetUserData(c context.Context) interface{}
- func OapiRequestValidator(swagger *openapi3.T) gin.HandlerFunc
- func OapiRequestValidatorWithOptions(swagger *openapi3.T, options *Options) gin.HandlerFunc
- func OapiValidatorFromYamlFile(path string) (gin.HandlerFunc, error)
- func ValidateRequestFromContext(c *gin.Context, router routers.Router, options *Options) error
- type ErrorHandler
- type MultiErrorHandler
- type Options
Constants ¶
const ( GinContextKey = "oapi-codegen/gin-context" UserDataKey = "oapi-codegen/user-data" )
Variables ¶
This section is empty.
Functions ¶
func GetGinContext ¶
GetGinContext gets the echo context from within requests. It returns nil if not found or wrong type.
func GetUserData ¶
func OapiRequestValidator ¶
func OapiRequestValidator(swagger *openapi3.T) gin.HandlerFunc
OapiRequestValidator is an gin 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 ¶
func OapiRequestValidatorWithOptions(swagger *openapi3.T, options *Options) gin.HandlerFunc
OapiRequestValidatorWithOptions creates a validator from a swagger object, with validation options
func OapiValidatorFromYamlFile ¶
func OapiValidatorFromYamlFile(path string) (gin.HandlerFunc, error)
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 { ErrorHandler ErrorHandler Options openapi3filter.Options ParamDecoder openapi3filter.ContentParameterDecoder UserData interface{} MultiErrorHandler MultiErrorHandler // SilenceServersWarning allows silencing a warning for https://bitbucket.org/tin_gimranoff/oapi-codegen/issues/882 that reports when an OpenAPI spec has `spec.Servers != nil` SilenceServersWarning bool }
Options to customize request validation. These are passed through to openapi3filter.