123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package gzipmiddleware
- import (
- "compress/gzip"
- "io"
- "io/ioutil"
- "net/http"
- "strings"
- "sync"
- )
- /*
- This module handles web server related helpers and functions
- author: tobychui
- */
- var gzPool = sync.Pool{
- New: func() interface{} {
- w := gzip.NewWriter(ioutil.Discard)
- gzip.NewWriterLevel(w, gzip.BestCompression)
- return w
- },
- }
- type gzipResponseWriter struct {
- io.Writer
- http.ResponseWriter
- }
- func (w *gzipResponseWriter) WriteHeader(status int) {
- w.Header().Del("Content-Length")
- w.ResponseWriter.WriteHeader(status)
- }
- func (w *gzipResponseWriter) Write(b []byte) (int, error) {
- return w.Writer.Write(b)
- }
- /*
- Compresstion function for http.FileServer
- */
- func Compress(h http.Handler) http.Handler {
- return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
- //If the client do not support gzip
- h.ServeHTTP(w, r)
- return
- }
- //Check if this is websocket request. Skip this if true
- if r.Header["Upgrade"] != nil && r.Header["Upgrade"][0] == "websocket" {
- //WebSocket request. Do not gzip it
- h.ServeHTTP(w, r)
- return
- }
- //Check if this is Safari. Skip gzip as Catalina Safari dont work with some gzip content
- // BETTER IMPLEMENTATION NEEDED
- if strings.Contains(r.Header.Get("User-Agent"), "Safari/") {
- //Always do not compress for Safari
- h.ServeHTTP(w, r)
- return
- }
- w.Header().Set("Content-Encoding", "gzip")
- gz := gzPool.Get().(*gzip.Writer)
- defer gzPool.Put(gz)
- gz.Reset(w)
- defer gz.Close()
- h.ServeHTTP(&gzipResponseWriter{ResponseWriter: w, Writer: gz}, r)
- })
- }
- type gzipFuncResponseWriter struct {
- io.Writer
- http.ResponseWriter
- }
- func (w gzipFuncResponseWriter) Write(b []byte) (int, error) {
- return w.Writer.Write(b)
- }
- /*
- Compress Function for http.HandleFunc
- */
- func CompressFunc(fn http.HandlerFunc) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
- fn(w, r)
- return
- }
- w.Header().Set("Content-Encoding", "gzip")
- gz := gzip.NewWriter(w)
- defer gz.Close()
- gzr := gzipFuncResponseWriter{Writer: gz, ResponseWriter: w}
- fn(gzr, r)
- }
- }
|