mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-20 04:45:16 +08:00
s3: report metadata if the directory is explicitly created (#3498)
* replace mkdir to mkFile * ContentLength must be zero * revert mkDir * Seaweedfs-Is-Directory-Key return metadata
This commit is contained in:

committed by
GitHub

parent
c57c79a0ab
commit
f7aeb06544
@@ -93,8 +93,10 @@ func (s3a *S3ApiServer) PutObjectHandler(w http.ResponseWriter, r *http.Request)
|
|||||||
defer dataReader.Close()
|
defer dataReader.Close()
|
||||||
|
|
||||||
objectContentType := r.Header.Get("Content-Type")
|
objectContentType := r.Header.Get("Content-Type")
|
||||||
if strings.HasSuffix(object, "/") {
|
if strings.HasSuffix(object, "/") && r.ContentLength == 0 {
|
||||||
if err := s3a.mkdir(s3a.option.BucketsPath, bucket+strings.TrimSuffix(object, "/"), func(entry *filer_pb.Entry) {
|
if err := s3a.mkdir(
|
||||||
|
s3a.option.BucketsPath, bucket+strings.TrimSuffix(object, "/"),
|
||||||
|
func(entry *filer_pb.Entry) {
|
||||||
if objectContentType == "" {
|
if objectContentType == "" {
|
||||||
objectContentType = "httpd/unix-directory"
|
objectContentType = "httpd/unix-directory"
|
||||||
}
|
}
|
||||||
@@ -314,7 +316,7 @@ func (s3a *S3ApiServer) DeleteMultipleObjectsHandler(w http.ResponseWriter, r *h
|
|||||||
|
|
||||||
func (s3a *S3ApiServer) doDeleteEmptyDirectories(client filer_pb.SeaweedFilerClient, directoriesWithDeletion map[string]int) (newDirectoriesWithDeletion map[string]int) {
|
func (s3a *S3ApiServer) doDeleteEmptyDirectories(client filer_pb.SeaweedFilerClient, directoriesWithDeletion map[string]int) (newDirectoriesWithDeletion map[string]int) {
|
||||||
var allDirs []string
|
var allDirs []string
|
||||||
for dir, _ := range directoriesWithDeletion {
|
for dir := range directoriesWithDeletion {
|
||||||
allDirs = append(allDirs, dir)
|
allDirs = append(allDirs, dir)
|
||||||
}
|
}
|
||||||
slices.SortFunc(allDirs, func(a, b string) bool {
|
slices.SortFunc(allDirs, func(a, b string) bool {
|
||||||
|
@@ -25,6 +25,7 @@ import (
|
|||||||
|
|
||||||
// Validates the preconditions. Returns true if GET/HEAD operation should not proceed.
|
// Validates the preconditions. Returns true if GET/HEAD operation should not proceed.
|
||||||
// Preconditions supported are:
|
// Preconditions supported are:
|
||||||
|
//
|
||||||
// If-Modified-Since
|
// If-Modified-Since
|
||||||
// If-Unmodified-Since
|
// If-Unmodified-Since
|
||||||
// If-Match
|
// If-Match
|
||||||
@@ -111,13 +112,13 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
|
|||||||
w.WriteHeader(http.StatusMethodNotAllowed)
|
w.WriteHeader(http.StatusMethodNotAllowed)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if entry.Attr.Mime != "" {
|
if entry.Attr.Mime == "" {
|
||||||
// inform S3 API this is a user created directory key object
|
|
||||||
w.Header().Set(s3_constants.X_SeaweedFS_Header_Directory_Key, "true")
|
|
||||||
}
|
|
||||||
fs.listDirectoryHandler(w, r)
|
fs.listDirectoryHandler(w, r)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
// inform S3 API this is a user created directory key object
|
||||||
|
w.Header().Set(s3_constants.X_SeaweedFS_Header_Directory_Key, "true")
|
||||||
|
}
|
||||||
|
|
||||||
if isForDirectory {
|
if isForDirectory {
|
||||||
w.WriteHeader(http.StatusNotFound)
|
w.WriteHeader(http.StatusNotFound)
|
||||||
|
Reference in New Issue
Block a user