 481fb923c5
			
		
	
	481fb923c5
	
	
	
		
			
			full diff: https://github.com/emicklei/go-restful/compare/v2.9.5...v3.7.3 - Switch to using go modules - Add check for wildcard to fix CORS filter - Add check on writer to prevent compression of response twice - Add OPTIONS shortcut WebService receiver - Add Route metadata to request attributes or allow adding attributes to routes - Add wroteHeader set - Enable content encoding on Handle and ServeHTTP - Feat: support google custom verb - Feature: override list of method allowed without content-type - Fix Allow header not set on '405: Method Not Allowed' responses - Fix Go 1.15: conversion from int to string yields a string of one rune - Fix WriteError return value - Fix: use request/response resulting from filter chain - handle path params with prefixes and suffixes - HTTP response body was broken, if struct to be converted to JSON has boolean value - List available representations in 406 body - Support describing response headers - Unwrap function in filter chain + remove unused dispatchWithFilters Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package restful
 | |
| 
 | |
| // Copyright 2015 Ernest Micklei. All rights reserved.
 | |
| // Use of this source code is governed by a license
 | |
| // that can be found in the LICENSE file.
 | |
| 
 | |
| import (
 | |
| 	"compress/gzip"
 | |
| 	"compress/zlib"
 | |
| )
 | |
| 
 | |
| // CompressorProvider describes a component that can provider compressors for the std methods.
 | |
| type CompressorProvider interface {
 | |
| 	// Returns a *gzip.Writer which needs to be released later.
 | |
| 	// Before using it, call Reset().
 | |
| 	AcquireGzipWriter() *gzip.Writer
 | |
| 
 | |
| 	// Releases an acquired *gzip.Writer.
 | |
| 	ReleaseGzipWriter(w *gzip.Writer)
 | |
| 
 | |
| 	// Returns a *gzip.Reader which needs to be released later.
 | |
| 	AcquireGzipReader() *gzip.Reader
 | |
| 
 | |
| 	// Releases an acquired *gzip.Reader.
 | |
| 	ReleaseGzipReader(w *gzip.Reader)
 | |
| 
 | |
| 	// Returns a *zlib.Writer which needs to be released later.
 | |
| 	// Before using it, call Reset().
 | |
| 	AcquireZlibWriter() *zlib.Writer
 | |
| 
 | |
| 	// Releases an acquired *zlib.Writer.
 | |
| 	ReleaseZlibWriter(w *zlib.Writer)
 | |
| }
 | |
| 
 | |
| // DefaultCompressorProvider is the actual provider of compressors (zlib or gzip).
 | |
| var currentCompressorProvider CompressorProvider
 | |
| 
 | |
| func init() {
 | |
| 	currentCompressorProvider = NewSyncPoolCompessors()
 | |
| }
 | |
| 
 | |
| // CurrentCompressorProvider returns the current CompressorProvider.
 | |
| // It is initialized using a SyncPoolCompessors.
 | |
| func CurrentCompressorProvider() CompressorProvider {
 | |
| 	return currentCompressorProvider
 | |
| }
 | |
| 
 | |
| // SetCompressorProvider sets the actual provider of compressors (zlib or gzip).
 | |
| func SetCompressorProvider(p CompressorProvider) {
 | |
| 	if p == nil {
 | |
| 		panic("cannot set compressor provider to nil")
 | |
| 	}
 | |
| 	currentCompressorProvider = p
 | |
| }
 |