exhttp

package
v0.8.4 Latest Latest
Warning

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

Go to latest
Published: Jan 16, 2025 License: MPL-2.0 Imports: 2 Imported by: 5

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AutoAllowCORS = true

Functions

func AddCORSHeaders

func AddCORSHeaders(w http.ResponseWriter)

func ApplyMiddleware added in v0.8.1

func ApplyMiddleware(router http.Handler, middlewares ...Middleware) http.Handler

ApplyMiddleware applies the provided Middleware functions to the given router. The middlewares will be applied in the order they are provided.

func CORSMiddleware

func CORSMiddleware(next http.Handler) http.Handler

CORSMiddleware adds CORS headers to the response and handles OPTIONS requests by returning 200 OK immediately.

func HandleErrors

func HandleErrors(next http.Handler, gen ErrorBodyGenerators) http.Handler

func WriteEmptyJSONResponse

func WriteEmptyJSONResponse(w http.ResponseWriter, httpStatusCode int)

func WriteJSONData

func WriteJSONData(w http.ResponseWriter, httpStatusCode int, data []byte)

func WriteJSONResponse

func WriteJSONResponse(w http.ResponseWriter, httpStatusCode int, jsonData any)

Types

type ErrorBodyGenerators

type ErrorBodyGenerators struct {
	NotFound         func() []byte
	MethodNotAllowed func() []byte
}

type Middleware added in v0.8.1

type Middleware func(http.Handler) http.Handler

Middleware represents a middleware that can be applied to an http.Handler.

func StripPrefix added in v0.8.1

func StripPrefix(prefix string) Middleware

StripPrefix is a wrapper for http.StripPrefix is compatible with the middleware pattern.

Jump to

Keyboard shortcuts

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