mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 18:42:26 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			845 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			845 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package gzip
 | |
| 
 | |
| import (
 | |
| 	"compress/gzip"
 | |
| 
 | |
| 	"github.com/gin-gonic/gin"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	BestCompression    = gzip.BestCompression
 | |
| 	BestSpeed          = gzip.BestSpeed
 | |
| 	DefaultCompression = gzip.DefaultCompression
 | |
| 	NoCompression      = gzip.NoCompression
 | |
| )
 | |
| 
 | |
| func Gzip(level int, options ...Option) gin.HandlerFunc {
 | |
| 	return newGzipHandler(level, options...).Handle
 | |
| }
 | |
| 
 | |
| type gzipWriter struct {
 | |
| 	gin.ResponseWriter
 | |
| 	writer *gzip.Writer
 | |
| }
 | |
| 
 | |
| func (g *gzipWriter) WriteString(s string) (int, error) {
 | |
| 	g.Header().Del("Content-Length")
 | |
| 	return g.writer.Write([]byte(s))
 | |
| }
 | |
| 
 | |
| func (g *gzipWriter) Write(data []byte) (int, error) {
 | |
| 	g.Header().Del("Content-Length")
 | |
| 	return g.writer.Write(data)
 | |
| }
 | |
| 
 | |
| // Fix: https://github.com/mholt/caddy/issues/38
 | |
| func (g *gzipWriter) WriteHeader(code int) {
 | |
| 	g.Header().Del("Content-Length")
 | |
| 	g.ResponseWriter.WriteHeader(code)
 | |
| }
 |