s3manager-web/buckets/delete-handler.go

26 lines
550 B
Go
Raw Normal View History

2017-03-30 22:48:27 +02:00
package buckets
import (
"net/http"
"github.com/gorilla/mux"
"github.com/mastertinner/s3-manager/web"
minio "github.com/minio/minio-go"
)
// DeleteHandler deletes a bucket
func DeleteHandler(s3 *minio.Client) 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"
web.HandleHTTPError(w, msg, err, http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusNoContent)
})
}