c077332721
- Replaced router by gorrila/mux - Used viper for environment variables instead of os - Added option to forbid object deletion - Added option to list bucket recursively - Added option to not add donwload headers in getObject - Added ability to download nested objects - Object donwloading will open in a new tab Signed-off-by: Sergey Shevchenko <sergeyshevchdevelop@gmail.com>
25 lines
575 B
Go
25 lines
575 B
Go
package s3manager
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/minio/minio-go/v7"
|
|
)
|
|
|
|
// HandleDeleteObject deletes an object.
|
|
func HandleDeleteObject(s3 S3) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
bucketName := mux.Vars(r)["bucketName"]
|
|
objectName := mux.Vars(r)["objectName"]
|
|
|
|
err := s3.RemoveObject(r.Context(), bucketName, objectName, minio.RemoveObjectOptions{})
|
|
if err != nil {
|
|
handleHTTPError(w, fmt.Errorf("error removing object: %w", err))
|
|
return
|
|
}
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
}
|
|
}
|