2019-04-19 04:43:36 +00:00
|
|
|
package util
|
2012-07-30 08:36:25 +00:00
|
|
|
|
|
|
|
import (
|
2012-12-22 21:15:09 +00:00
|
|
|
"bytes"
|
|
|
|
"compress/flate"
|
|
|
|
"compress/gzip"
|
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2018-12-22 23:05:31 +00:00
|
|
|
"golang.org/x/tools/godoc/util"
|
2020-03-27 06:50:07 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2012-07-30 08:36:25 +00:00
|
|
|
)
|
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
func GzipData(input []byte) ([]byte, error) {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
w, _ := gzip.NewWriterLevel(buf, flate.BestSpeed)
|
|
|
|
if _, err := w.Write(input); err != nil {
|
|
|
|
glog.V(2).Infoln("error compressing data:", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := w.Close(); err != nil {
|
|
|
|
glog.V(2).Infoln("error closing compressed data:", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
func UnGzipData(input []byte) ([]byte, error) {
|
|
|
|
buf := bytes.NewBuffer(input)
|
|
|
|
r, _ := gzip.NewReader(buf)
|
|
|
|
defer r.Close()
|
|
|
|
output, err := ioutil.ReadAll(r)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(2).Infoln("error uncompressing data:", err)
|
|
|
|
}
|
|
|
|
return output, err
|
|
|
|
}
|
|
|
|
|
2012-12-22 21:15:09 +00:00
|
|
|
/*
|
|
|
|
* Default more not to gzip since gzip can be done on client side.
|
2020-03-27 06:50:07 +00:00
|
|
|
*/
|
|
|
|
func IsGzippable(ext, mtype string, data []byte) bool {
|
2018-12-22 23:05:31 +00:00
|
|
|
|
2019-04-06 21:14:28 +00:00
|
|
|
shouldBeZipped, iAmSure := IsGzippableFileType(ext, mtype)
|
|
|
|
if iAmSure {
|
|
|
|
return shouldBeZipped
|
|
|
|
}
|
|
|
|
|
|
|
|
isMostlyText := util.IsText(data)
|
|
|
|
|
|
|
|
return isMostlyText
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Default more not to gzip since gzip can be done on client side.
|
2019-04-19 04:43:36 +00:00
|
|
|
*/func IsGzippableFileType(ext, mtype string) (shouldBeZipped, iAmSure bool) {
|
2019-04-06 21:14:28 +00:00
|
|
|
|
2018-12-22 23:05:31 +00:00
|
|
|
// text
|
2013-01-17 08:56:56 +00:00
|
|
|
if strings.HasPrefix(mtype, "text/") {
|
2019-04-06 21:14:28 +00:00
|
|
|
return true, true
|
2013-01-17 08:15:09 +00:00
|
|
|
}
|
2018-12-22 23:05:31 +00:00
|
|
|
|
|
|
|
// images
|
|
|
|
switch ext {
|
2020-01-30 04:51:58 +00:00
|
|
|
case ".svg", ".bmp", ".wav":
|
2019-04-06 21:14:28 +00:00
|
|
|
return true, true
|
2018-12-22 23:05:31 +00:00
|
|
|
}
|
|
|
|
if strings.HasPrefix(mtype, "image/") {
|
2019-04-06 21:14:28 +00:00
|
|
|
return false, true
|
2018-12-22 23:05:31 +00:00
|
|
|
}
|
|
|
|
|
2019-02-06 13:59:15 +00:00
|
|
|
// by file name extension
|
2013-01-17 08:56:56 +00:00
|
|
|
switch ext {
|
|
|
|
case ".zip", ".rar", ".gz", ".bz2", ".xz":
|
2019-04-06 21:14:28 +00:00
|
|
|
return false, true
|
2014-07-08 16:32:55 +00:00
|
|
|
case ".pdf", ".txt", ".html", ".htm", ".css", ".js", ".json":
|
2019-04-06 21:14:28 +00:00
|
|
|
return true, true
|
2018-12-22 23:05:31 +00:00
|
|
|
case ".php", ".java", ".go", ".rb", ".c", ".cpp", ".h", ".hpp":
|
2019-04-06 21:14:28 +00:00
|
|
|
return true, true
|
2018-12-27 20:17:05 +00:00
|
|
|
case ".png", ".jpg", ".jpeg":
|
2019-04-06 21:14:28 +00:00
|
|
|
return false, true
|
2012-12-22 21:15:09 +00:00
|
|
|
}
|
2018-12-22 23:05:31 +00:00
|
|
|
|
|
|
|
// by mime type
|
2012-12-22 21:15:09 +00:00
|
|
|
if strings.HasPrefix(mtype, "application/") {
|
2013-01-17 08:15:09 +00:00
|
|
|
if strings.HasSuffix(mtype, "xml") {
|
2019-04-06 21:14:28 +00:00
|
|
|
return true, true
|
2013-01-17 08:15:09 +00:00
|
|
|
}
|
|
|
|
if strings.HasSuffix(mtype, "script") {
|
2019-04-06 21:14:28 +00:00
|
|
|
return true, true
|
2012-12-22 21:15:09 +00:00
|
|
|
}
|
2020-01-30 04:51:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(mtype, "audio/") {
|
|
|
|
switch strings.TrimPrefix(mtype, "audio/") {
|
|
|
|
case "wave", "wav", "x-wav", "x-pn-wav":
|
|
|
|
return true, true
|
|
|
|
}
|
2012-12-22 21:15:09 +00:00
|
|
|
}
|
2018-12-22 23:05:31 +00:00
|
|
|
|
2019-04-06 21:14:28 +00:00
|
|
|
return false, false
|
2012-07-30 08:36:25 +00:00
|
|
|
}
|