utilgo.mau.fi/util/exhttp Index | Files

package exhttp

import "go.mau.fi/util/exhttp"

Index

Variables

var AutoAllowCORS = true

Functions

func AddCORSHeaders

func AddCORSHeaders(w http.ResponseWriter)

func ApplyMiddleware

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

type Middleware func(http.Handler) http.Handler

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

func StripPrefix

func StripPrefix(prefix string) Middleware

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

Source Files

cors.go handleerrors.go json.go middleware.go

Version
v0.8.6 (latest)
Published
Mar 16, 2025
Platform
linux/amd64
Imports
2 packages
Last checked
1 week ago

Tools for package owners.