2016-06-03 11:05:34 +08:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2020-04-28 15:05:47 +08:00
|
|
|
"bytes"
|
2019-03-16 06:55:34 +08:00
|
|
|
"context"
|
2016-07-21 12:20:22 +08:00
|
|
|
"io"
|
2019-01-03 06:23:25 +08:00
|
|
|
"mime"
|
2016-06-03 11:05:34 +08:00
|
|
|
"net/http"
|
2020-03-09 06:42:44 +08:00
|
|
|
"path/filepath"
|
2019-01-03 06:23:25 +08:00
|
|
|
"strconv"
|
2016-06-03 11:05:34 +08:00
|
|
|
"strings"
|
2020-04-08 23:12:00 +08:00
|
|
|
"time"
|
2016-06-03 11:05:34 +08:00
|
|
|
|
2018-05-28 02:52:26 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2016-06-03 11:05:34 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-03-21 11:31:11 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/images"
|
2020-03-08 09:01:39 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2019-06-16 03:21:44 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2020-03-23 15:01:34 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2016-06-03 11:05:34 +08:00
|
|
|
)
|
|
|
|
|
2016-07-21 12:20:22 +08:00
|
|
|
func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {
|
2019-06-13 17:01:51 +08:00
|
|
|
|
2018-05-14 14:56:16 +08:00
|
|
|
path := r.URL.Path
|
2019-07-11 03:11:18 +08:00
|
|
|
isForDirectory := strings.HasSuffix(path, "/")
|
|
|
|
if isForDirectory && len(path) > 1 {
|
2018-05-14 14:56:16 +08:00
|
|
|
path = path[:len(path)-1]
|
|
|
|
}
|
|
|
|
|
2020-03-23 15:01:34 +08:00
|
|
|
entry, err := fs.filer.FindEntry(context.Background(), util.FullPath(path))
|
2018-05-26 18:49:46 +08:00
|
|
|
if err != nil {
|
2018-10-12 15:45:28 +08:00
|
|
|
if path == "/" {
|
|
|
|
fs.listDirectoryHandler(w, r)
|
|
|
|
return
|
|
|
|
}
|
2020-03-08 09:01:39 +08:00
|
|
|
if err == filer_pb.ErrNotFound {
|
2019-10-24 16:51:26 +08:00
|
|
|
glog.V(1).Infof("Not found %s: %v", path, err)
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("read.notfound").Inc()
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
} else {
|
|
|
|
glog.V(0).Infof("Internal %s: %v", path, err)
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("read.internalerror").Inc()
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
}
|
2018-05-14 14:56:16 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry.IsDirectory() {
|
2018-07-07 17:18:47 +08:00
|
|
|
if fs.option.DisableDirListing {
|
2016-07-21 12:20:22 +08:00
|
|
|
w.WriteHeader(http.StatusMethodNotAllowed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fs.listDirectoryHandler(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-11 03:11:18 +08:00
|
|
|
if isForDirectory {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-14 14:56:16 +08:00
|
|
|
if len(entry.Chunks) == 0 {
|
2018-05-26 18:49:46 +08:00
|
|
|
glog.V(1).Infof("no file chunks for %s, attr=%+v", path, entry.Attr)
|
2019-06-16 03:21:44 +08:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("read.nocontent").Inc()
|
2018-05-14 14:56:16 +08:00
|
|
|
w.WriteHeader(http.StatusNoContent)
|
2016-07-21 12:20:22 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-28 20:39:12 +08:00
|
|
|
w.Header().Set("Accept-Ranges", "bytes")
|
2020-03-09 06:42:44 +08:00
|
|
|
w.Header().Set("Last-Modified", entry.Attr.Mtime.Format(http.TimeFormat))
|
2018-05-28 20:39:12 +08:00
|
|
|
|
2020-03-09 06:42:44 +08:00
|
|
|
// mime type
|
2019-03-28 02:41:11 +08:00
|
|
|
mimeType := entry.Attr.Mime
|
2018-05-31 11:24:57 +08:00
|
|
|
if mimeType == "" {
|
2020-03-09 06:42:44 +08:00
|
|
|
if ext := filepath.Ext(entry.Name()); ext != "" {
|
2018-05-31 11:24:57 +08:00
|
|
|
mimeType = mime.TypeByExtension(ext)
|
|
|
|
}
|
2018-05-28 20:39:12 +08:00
|
|
|
}
|
|
|
|
if mimeType != "" {
|
|
|
|
w.Header().Set("Content-Type", mimeType)
|
|
|
|
}
|
2020-03-09 06:42:44 +08:00
|
|
|
|
2020-04-08 23:12:00 +08:00
|
|
|
// if modified since
|
|
|
|
if !entry.Attr.Mtime.IsZero() {
|
|
|
|
w.Header().Set("Last-Modified", entry.Attr.Mtime.UTC().Format(http.TimeFormat))
|
|
|
|
if r.Header.Get("If-Modified-Since") != "" {
|
|
|
|
if t, parseError := time.Parse(http.TimeFormat, r.Header.Get("If-Modified-Since")); parseError == nil {
|
|
|
|
if t.After(entry.Attr.Mtime) {
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-09 06:42:44 +08:00
|
|
|
// set etag
|
2020-04-08 23:12:00 +08:00
|
|
|
etag := filer2.ETagEntry(entry)
|
|
|
|
if inm := r.Header.Get("If-None-Match"); inm == "\""+etag+"\"" {
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
setEtag(w, etag)
|
2018-05-28 20:39:12 +08:00
|
|
|
|
2020-03-09 06:42:44 +08:00
|
|
|
if r.Method == "HEAD" {
|
|
|
|
w.Header().Set("Content-Length", strconv.FormatInt(int64(filer2.TotalSize(entry.Chunks)), 10))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
filename := entry.Name()
|
|
|
|
adjustHeadersAfterHEAD(w, r, filename)
|
|
|
|
|
2018-05-28 20:39:12 +08:00
|
|
|
totalSize := int64(filer2.TotalSize(entry.Chunks))
|
|
|
|
|
2020-03-21 11:31:11 +08:00
|
|
|
if rangeReq := r.Header.Get("Range"); rangeReq == "" {
|
|
|
|
ext := filepath.Ext(filename)
|
|
|
|
width, height, mode, shouldResize := shouldResizeImages(ext, r)
|
|
|
|
if shouldResize {
|
2020-04-28 15:05:47 +08:00
|
|
|
data, err := filer2.ReadAll(fs.filer.MasterClient, entry.Chunks)
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("failed to read %s: %v", path, err)
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rs, _, _ := images.Resized(ext, bytes.NewReader(data), width, height, mode)
|
2020-03-21 11:31:11 +08:00
|
|
|
io.Copy(w, rs)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processRangeRequest(r, w, totalSize, mimeType, func(writer io.Writer, offset int64, size int64) error {
|
2020-03-22 16:37:46 +08:00
|
|
|
return filer2.StreamContent(fs.filer.MasterClient, writer, entry.Chunks, offset, size)
|
2020-03-08 10:06:48 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
}
|