httpencoding

package module
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Mar 8, 2020 License: ISC Imports: 4 Imported by: 5

README

httpencoding

-- import "vimagination.zapto.org/httpencoding"

Package httpencoding provides a function to deal with the Accept-Encoding header.

Usage

func ClearEncoding
func ClearEncoding(r *http.Request)

ClearEncoding removes the Accept-Encoding header so that any further attempts to establish an encoding will simply used the default, plain text, encoding.

Useful when you don't want a handler down the chain to also handle encoding

func HandleEncoding
func HandleEncoding(r *http.Request, h Handler) bool

HandleEncoding will process the Accept-Encoding header and calls the given handler for each encoding until the handler returns true.

This function returns true when the Handler returns true, false otherwise

For the identity (plain text) encoding the encoding string will be the empty string.

The wildcard encoding (*) is currently treated as identity when there is no independent identity encoding specified; otherwise, it is ignored.

func InvalidEncoding
func InvalidEncoding(w http.ResponseWriter)

InvalidEncoding writes the 406 header

type Encoding
type Encoding string

Encoding represents an encoding string as used by the client. Examples are gzip, br and deflate.

type Handler
type Handler interface {
	Handle(encoding Encoding) bool
}

Handler provides an interface to handle an encoding.

The encoding string (e.g. gzip, br, deflate) is passed to the handler, which is expected to return true if no more encodings are required and false otherwise.

The empty string "" is used to signify the identity encoding, or plain text

type HandlerFunc
type HandlerFunc func(Encoding) bool

HandlerFunc wraps a func to make it satisfy the Handler interface

func (HandlerFunc) Handle
func (h HandlerFunc) Handle(e Encoding) bool

Handle calls the underlying func

Documentation

Overview

Package httpencoding provides a function to deal with the Accept-Encoding header.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ClearEncoding

func ClearEncoding(r *http.Request)

ClearEncoding removes the Accept-Encoding header so that any further attempts to establish an encoding will simply used the default, plain text, encoding.

Useful when you don't want a handler down the chain to also handle encoding

func HandleEncoding

func HandleEncoding(r *http.Request, h Handler) bool

HandleEncoding will process the Accept-Encoding header and calls the given handler for each encoding until the handler returns true.

This function returns true when the Handler returns true, false otherwise

For the identity (plain text) encoding the encoding string will be the empty string.

The wildcard encoding (*) is currently treated as identity when there is no independent identity encoding specified; otherwise, it is ignored.

func InvalidEncoding

func InvalidEncoding(w http.ResponseWriter)

InvalidEncoding writes the 406 header

Types

type Encoding

type Encoding string

Encoding represents an encoding string as used by the client. Examples are gzip, br and deflate.

type Handler

type Handler interface {
	Handle(encoding Encoding) bool
}

Handler provides an interface to handle an encoding.

The encoding string (e.g. gzip, br, deflate) is passed to the handler, which is expected to return true if no more encodings are required and false otherwise.

The empty string "" is used to signify the identity encoding, or plain text

type HandlerFunc

type HandlerFunc func(Encoding) bool

HandlerFunc wraps a func to make it satisfy the Handler interface

func (HandlerFunc) Handle

func (h HandlerFunc) Handle(e Encoding) bool

Handle calls the underlying func

Jump to

Keyboard shortcuts

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