You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

159 lines
4.0 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
6 years ago
5 years ago
9 years ago
5 years ago
6 years ago
5 years ago
5 years ago
  1. package weed_server
  2. import (
  3. "bytes"
  4. "context"
  5. "io"
  6. "mime"
  7. "net/http"
  8. "net/url"
  9. "path/filepath"
  10. "strconv"
  11. "strings"
  12. "time"
  13. "github.com/chrislusf/seaweedfs/weed/filer"
  14. "github.com/chrislusf/seaweedfs/weed/glog"
  15. "github.com/chrislusf/seaweedfs/weed/images"
  16. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  17. xhttp "github.com/chrislusf/seaweedfs/weed/s3api/http"
  18. "github.com/chrislusf/seaweedfs/weed/stats"
  19. "github.com/chrislusf/seaweedfs/weed/util"
  20. )
  21. func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {
  22. path := r.URL.Path
  23. isForDirectory := strings.HasSuffix(path, "/")
  24. if isForDirectory && len(path) > 1 {
  25. path = path[:len(path)-1]
  26. }
  27. entry, err := fs.filer.FindEntry(context.Background(), util.FullPath(path))
  28. if err != nil {
  29. if path == "/" {
  30. fs.listDirectoryHandler(w, r)
  31. return
  32. }
  33. if err == filer_pb.ErrNotFound {
  34. glog.V(1).Infof("Not found %s: %v", path, err)
  35. stats.FilerRequestCounter.WithLabelValues("read.notfound").Inc()
  36. w.WriteHeader(http.StatusNotFound)
  37. } else {
  38. glog.V(0).Infof("Internal %s: %v", path, err)
  39. stats.FilerRequestCounter.WithLabelValues("read.internalerror").Inc()
  40. w.WriteHeader(http.StatusInternalServerError)
  41. }
  42. return
  43. }
  44. if entry.IsDirectory() {
  45. if fs.option.DisableDirListing {
  46. w.WriteHeader(http.StatusMethodNotAllowed)
  47. return
  48. }
  49. fs.listDirectoryHandler(w, r)
  50. return
  51. }
  52. if isForDirectory {
  53. w.WriteHeader(http.StatusNotFound)
  54. return
  55. }
  56. if len(entry.Chunks) == 0 && len(entry.Content) == 0 {
  57. glog.V(1).Infof("no file chunks for %s, attr=%+v", path, entry.Attr)
  58. stats.FilerRequestCounter.WithLabelValues("read.nocontent").Inc()
  59. w.WriteHeader(http.StatusNoContent)
  60. return
  61. }
  62. w.Header().Set("Accept-Ranges", "bytes")
  63. w.Header().Set("Last-Modified", entry.Attr.Mtime.Format(http.TimeFormat))
  64. // mime type
  65. mimeType := entry.Attr.Mime
  66. if mimeType == "" {
  67. if ext := filepath.Ext(entry.Name()); ext != "" {
  68. mimeType = mime.TypeByExtension(ext)
  69. }
  70. }
  71. if mimeType != "" {
  72. w.Header().Set("Content-Type", mimeType)
  73. }
  74. // if modified since
  75. if !entry.Attr.Mtime.IsZero() {
  76. w.Header().Set("Last-Modified", entry.Attr.Mtime.UTC().Format(http.TimeFormat))
  77. if r.Header.Get("If-Modified-Since") != "" {
  78. if t, parseError := time.Parse(http.TimeFormat, r.Header.Get("If-Modified-Since")); parseError == nil {
  79. if t.After(entry.Attr.Mtime) {
  80. w.WriteHeader(http.StatusNotModified)
  81. return
  82. }
  83. }
  84. }
  85. }
  86. // print out the header from extended properties
  87. for k, v := range entry.Extended {
  88. w.Header().Set(k, string(v))
  89. }
  90. //set tag count
  91. if r.Method == "GET" {
  92. tagCount := 0
  93. for k := range entry.Extended {
  94. if strings.HasPrefix(k, xhttp.AmzObjectTagging+"-") {
  95. tagCount++
  96. }
  97. }
  98. if tagCount > 0 {
  99. w.Header().Set(xhttp.AmzTagCount, strconv.Itoa(tagCount))
  100. }
  101. }
  102. // set etag
  103. etag := filer.ETagEntry(entry)
  104. if inm := r.Header.Get("If-None-Match"); inm == "\""+etag+"\"" {
  105. w.WriteHeader(http.StatusNotModified)
  106. return
  107. }
  108. setEtag(w, etag)
  109. filename := entry.Name()
  110. filename = url.QueryEscape(filename)
  111. adjustHeaderContentDisposition(w, r, filename)
  112. totalSize := int64(entry.Size())
  113. if r.Method == "HEAD" {
  114. w.Header().Set("Content-Length", strconv.FormatInt(totalSize, 10))
  115. return
  116. }
  117. if rangeReq := r.Header.Get("Range"); rangeReq == "" {
  118. ext := filepath.Ext(filename)
  119. width, height, mode, shouldResize := shouldResizeImages(ext, r)
  120. if shouldResize {
  121. data, err := filer.ReadAll(fs.filer.MasterClient, entry.Chunks)
  122. if err != nil {
  123. glog.Errorf("failed to read %s: %v", path, err)
  124. w.WriteHeader(http.StatusNotModified)
  125. return
  126. }
  127. rs, _, _ := images.Resized(ext, bytes.NewReader(data), width, height, mode)
  128. io.Copy(w, rs)
  129. return
  130. }
  131. }
  132. processRangeRequest(r, w, totalSize, mimeType, func(writer io.Writer, offset int64, size int64) error {
  133. if offset+size <= int64(len(entry.Content)) {
  134. _, err := writer.Write(entry.Content[offset : offset+size])
  135. return err
  136. }
  137. return filer.StreamContent(fs.filer.MasterClient, writer, entry.Chunks, offset, size)
  138. })
  139. }