package middleware

import "github.com/docker/docker/api/server/middleware"

Index

Functions

func DebugRequestMiddleware

func DebugRequestMiddleware(handler func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error) func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error

DebugRequestMiddleware dumps the request to logger

Types

type CORSMiddleware

type CORSMiddleware struct {
	// contains filtered or unexported fields
}

CORSMiddleware injects CORS headers to each request when it's configured.

func NewCORSMiddleware

func NewCORSMiddleware(d string) CORSMiddleware

NewCORSMiddleware creates a new CORSMiddleware with default headers.

func (CORSMiddleware) WrapHandler

func (c CORSMiddleware) WrapHandler(handler func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error) func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error

WrapHandler returns a new handler function wrapping the previous one in the request chain.

type Middleware

type Middleware interface {
	WrapHandler(func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error) func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error
}

Middleware is an interface to allow the use of ordinary functions as Docker API filters. Any struct that has the appropriate signature can be registered as a middleware.

type UserAgentMiddleware

type UserAgentMiddleware struct {
	// contains filtered or unexported fields
}

UserAgentMiddleware is a middleware that validates the client user-agent.

func NewUserAgentMiddleware

func NewUserAgentMiddleware(s string) UserAgentMiddleware

NewUserAgentMiddleware creates a new UserAgentMiddleware with the server version.

func (UserAgentMiddleware) WrapHandler

func (u UserAgentMiddleware) WrapHandler(handler func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error) func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error

WrapHandler returns a new handler function wrapping the previous one in the request chain.

type VersionMiddleware

type VersionMiddleware struct {
	// contains filtered or unexported fields
}

VersionMiddleware is a middleware that validates the client and server versions.

func NewVersionMiddleware

func NewVersionMiddleware(s, d, m string) VersionMiddleware

NewVersionMiddleware creates a new VersionMiddleware with the default versions.

func (VersionMiddleware) WrapHandler

func (v VersionMiddleware) WrapHandler(handler func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error) func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error

WrapHandler returns a new handler function wrapping the previous one in the request chain.

Source Files

cors.go debug.go middleware.go user_agent.go version.go

Version
v1.12.3-rc1
Published
Oct 25, 2016
Platform
js/wasm
Imports
12 packages
Last checked
5 minutes ago

Tools for package owners.