26 lines
564 B
Go
26 lines
564 B
Go
|
package objects
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/mux"
|
||
|
"github.com/mastertinner/s3-manager/web"
|
||
|
minio "github.com/minio/minio-go"
|
||
|
)
|
||
|
|
||
|
// DeleteHandler deletes an object
|
||
|
func DeleteHandler(s3 *minio.Client) http.Handler {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
vars := mux.Vars(r)
|
||
|
|
||
|
err := s3.RemoveObject(vars["bucketName"], vars["objectName"])
|
||
|
if err != nil {
|
||
|
msg := "error removing object"
|
||
|
web.HandleHTTPError(w, msg, err, http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
w.WriteHeader(http.StatusOK)
|
||
|
})
|
||
|
}
|