middleware

package
v1.16.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 24, 2023 License: Apache-2.0 Imports: 13 Imported by: 89

Documentation

Index

Constants

View Source
const (
	EchoContextKey = "oapi-codegen/echo-context"
	UserDataKey    = "oapi-codegen/user-data"
)

Variables

This section is empty.

Functions

func GetEchoContext deprecated added in v1.1.6

func GetEchoContext(c context.Context) echo.Context

GetEchoContext gets the echo context from within requests. It returns nil if not found or wrong type.

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#GetEchoContext

func GetUserData deprecated added in v1.1.6

func GetUserData(c context.Context) interface{}

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#GetUserData

func OapiRequestValidator deprecated

func OapiRequestValidator(swagger *openapi3.T) echo.MiddlewareFunc

OapiRequestValidator creates a validator from a swagger object.

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#OapiRequestValidator

func OapiRequestValidatorWithOptions deprecated added in v1.1.6

func OapiRequestValidatorWithOptions(swagger *openapi3.T, options *Options) echo.MiddlewareFunc

OapiRequestValidatorWithOptions creates a validator from a swagger object, with validation options

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#OapiRequestValidatorWithOptions

func OapiValidatorFromYamlFile deprecated

func OapiValidatorFromYamlFile(path string) (echo.MiddlewareFunc, error)

OapiValidatorFromYamlFile is an Echo 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. Create validator middleware from a YAML file path

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#OapiValidatorFromYamlFile

func ValidateRequestFromContext deprecated

func ValidateRequestFromContext(ctx echo.Context, router routers.Router, options *Options) *echo.HTTPError

ValidateRequestFromContext is called from the middleware above and actually does the work of validating a request.

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#ValidateRequestFromContext

Types

type ErrorHandler deprecated added in v1.11.0

type ErrorHandler func(c echo.Context, err *echo.HTTPError) error

ErrorHandler is called when there is an error in validation

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#ErrorHandler

type MultiErrorHandler deprecated added in v1.12.0

type MultiErrorHandler func(openapi3.MultiError) *echo.HTTPError

MultiErrorHandler is called when oapi returns a MultiError type

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#MultiErrorHandler

type Options deprecated added in v1.1.6

type Options struct {
	ErrorHandler      ErrorHandler
	Options           openapi3filter.Options
	ParamDecoder      openapi3filter.ContentParameterDecoder
	UserData          interface{}
	Skipper           echomiddleware.Skipper
	MultiErrorHandler MultiErrorHandler
	// SilenceServersWarning allows silencing a warning for https://github.com/deepmap/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.

Deprecated: This has been replaced by https://pkg.go.dev/github.com/oapi-codegen/echo-middleware#Options

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL