Commit 140b513c authored by astaxie's avatar astaxie

support gzip #37

parent a3f8fd6a
...@@ -37,6 +37,7 @@ var ( ...@@ -37,6 +37,7 @@ var (
SessionSavePath string // session savepath if use mysql/redis/file this set to the connectinfo SessionSavePath string // session savepath if use mysql/redis/file this set to the connectinfo
UseFcgi bool UseFcgi bool
MaxMemory int64 MaxMemory int64
EnableGzip bool // enable gzip
GlobalSessions *session.Manager //GlobalSessions GlobalSessions *session.Manager //GlobalSessions
) )
...@@ -66,6 +67,7 @@ func init() { ...@@ -66,6 +67,7 @@ func init() {
SessionSavePath = "" SessionSavePath = ""
UseFcgi = false UseFcgi = false
MaxMemory = 1 << 26 //64MB MaxMemory = 1 << 26 //64MB
EnableGzip = false
} else { } else {
HttpAddr = AppConfig.String("httpaddr") HttpAddr = AppConfig.String("httpaddr")
if v, err := AppConfig.Int("httpport"); err != nil { if v, err := AppConfig.Int("httpport"); err != nil {
...@@ -135,6 +137,11 @@ func init() { ...@@ -135,6 +137,11 @@ func init() {
} else { } else {
UseFcgi = ar UseFcgi = ar
} }
if ar, err := AppConfig.Bool("enablegzip"); err != nil {
EnableGzip = false
} else {
EnableGzip = ar
}
} }
StaticDir["/static"] = "static" StaticDir["/static"] = "static"
......
...@@ -2,6 +2,8 @@ package beego ...@@ -2,6 +2,8 @@ package beego
import ( import (
"bytes" "bytes"
"compress/gzip"
"compress/zlib"
"encoding/json" "encoding/json"
"encoding/xml" "encoding/xml"
"github.com/astaxie/beego/session" "github.com/astaxie/beego/session"
...@@ -90,10 +92,40 @@ func (c *Controller) Render() error { ...@@ -90,10 +92,40 @@ func (c *Controller) Render() error {
if err != nil { if err != nil {
return err return err
} else {
c.Ctx.ResponseWriter.Header().Set("Content-Type", "text/html; charset=utf-8")
output_writer := c.Ctx.ResponseWriter.(io.Writer)
if EnableGzip == true && c.Ctx.Request.Header.Get("Accept-Encoding") != "" {
splitted := strings.SplitN(c.Ctx.Request.Header.Get("Accept-Encoding"), ",", -1)
encodings := make([]string, len(splitted))
for i, val := range splitted {
encodings[i] = strings.TrimSpace(val)
}
for _, val := range encodings {
if val == "gzip" {
c.Ctx.ResponseWriter.Header().Set("Content-Encoding", "gzip")
output_writer, _ = gzip.NewWriterLevel(c.Ctx.ResponseWriter, gzip.BestSpeed)
break
} else if val == "deflate" {
c.Ctx.ResponseWriter.Header().Set("Content-Encoding", "deflate")
output_writer, _ = zlib.NewWriterLevel(c.Ctx.ResponseWriter, zlib.BestSpeed)
break
}
}
} else { } else {
c.Ctx.SetHeader("Content-Length", strconv.Itoa(len(rb)), true) c.Ctx.SetHeader("Content-Length", strconv.Itoa(len(rb)), true)
c.Ctx.ContentType("text/html") }
c.Ctx.ResponseWriter.Write(rb) output_writer.Write(rb)
switch output_writer.(type) {
case *gzip.Writer:
output_writer.(*gzip.Writer).Close()
case *zlib.Writer:
output_writer.(*zlib.Writer).Close()
case io.WriteCloser:
output_writer.(io.WriteCloser).Close()
}
return nil return nil
} }
return nil return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment