forked from TrueCloudLab/frostfs-s3-gw
34f6eb7d55
Could not find how to use it. I propose open issue and describe how to use it and then implement method. Signed-off-by: Evgeniy Kulikov <kim@nspcc.ru>
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/nspcc-dev/neofs-s3-gate/api"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func (h *handler) DeleteObjectHandler(w http.ResponseWriter, r *http.Request) {
|
|
var (
|
|
req = mux.Vars(r)
|
|
bkt = req["bucket"]
|
|
obj = req["object"]
|
|
rid = api.GetRequestID(r.Context())
|
|
)
|
|
|
|
if err := h.obj.DeleteObject(r.Context(), bkt, obj); err != nil {
|
|
h.log.Error("could not delete object",
|
|
zap.String("request_id", rid),
|
|
zap.String("bucket_name", bkt),
|
|
zap.String("object_name", obj),
|
|
zap.Error(err))
|
|
|
|
// Ignore delete errors:
|
|
|
|
// api.WriteErrorResponse(r.Context(), w, api.Error{
|
|
// Code: api.GetAPIError(api.ErrInternalError).Code,
|
|
// Description: err.Error(),
|
|
// HTTPStatusCode: http.StatusInternalServerError,
|
|
// }, r.URL)
|
|
}
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
}
|
|
|
|
// DeleteMultipleObjectsHandler :
|
|
//
|
|
// CyberDuck doesn't use that method for multiple delete.
|
|
// Open issue and describe how to test that method.
|
|
func (h *handler) DeleteMultipleObjectsHandler(w http.ResponseWriter, r *http.Request) {
|
|
api.WriteErrorResponse(r.Context(), w, api.Error{
|
|
Code: "XNeoFSUnimplemented",
|
|
Description: "implement me " + mux.CurrentRoute(r).GetName(),
|
|
HTTPStatusCode: http.StatusNotImplemented,
|
|
}, r.URL)
|
|
}
|