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: 12 Imported by: 1

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

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetFiberContext deprecated

func GetFiberContext(c context.Context) *fiber.Ctx

GetFiberContext gets the fiber 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/fiber-middleware#GetFiberContext

func GetUserData deprecated

func GetUserData(c context.Context) interface{}

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

func OapiRequestValidator deprecated

func OapiRequestValidator(swagger *openapi3.T) fiber.Handler

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

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

func OapiRequestValidatorWithOptions deprecated

func OapiRequestValidatorWithOptions(swagger *openapi3.T, options *Options) fiber.Handler

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/fiber-middleware#OapiRequestValidatorWithOptions

func OapiValidatorFromYamlFile deprecated

func OapiValidatorFromYamlFile(path string) (fiber.Handler, error)

OapiValidatorFromYamlFile creates a validator middleware from a YAML file path

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

func ValidateRequestFromContext deprecated

func ValidateRequestFromContext(c *fiber.Ctx, router routers.Router, options *Options) error

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/fiber-middleware#ValidateRequestFromContext

Types

type ErrorHandler deprecated

type ErrorHandler func(c *fiber.Ctx, message string, statusCode int)

ErrorHandler is called when there is an error in validation

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

type MultiErrorHandler deprecated

type MultiErrorHandler func(openapi3.MultiError) error

MultiErrorHandler is called when oapi returns a MultiError type

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

type Options deprecated

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.

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

Jump to

Keyboard shortcuts

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