api: Return NotImplemented for MultiDelete and CopyObject APIs

This commit is contained in:
Harshavardhana
2016-02-26 15:47:12 -08:00
parent 2ec211e52a
commit ae6e774377
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -238,6 +238,11 @@ func (h resourceHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
writeErrorResponse(w, r, NotImplemented, r.URL.Path)
return
}
// X-Amz-Copy-Source should be ignored as NotImplemented.
if _, ok := r.Header[http.CanonicalHeaderKey("x-amz-copy-source")]; ok {
writeErrorResponse(w, r, NotImplemented, r.URL.Path)
return
}
h.handler.ServeHTTP(w, r)
}
@@ -276,6 +281,7 @@ var notimplementedBucketResourceNames = map[string]bool{
"requestPayment": true,
"versioning": true,
"website": true,
"delete": true,
}
// List of not implemented object queries