25 lines
576 B
Go
25 lines
576 B
Go
package buckets
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/mastertinner/s3-manager/datasources"
|
|
"github.com/mastertinner/s3-manager/utils"
|
|
)
|
|
|
|
// DeleteHandler deletes a bucket
|
|
func DeleteHandler(s3 datasources.S3Client) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
|
|
err := s3.RemoveBucket(vars["bucketName"])
|
|
if err != nil {
|
|
msg := "error removing bucket"
|
|
utils.HandleHTTPError(w, msg, err, http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
})
|
|
}
|