2017-04-03 14:08:01 +02:00
|
|
|
package main
|
2017-03-30 22:48:27 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
2017-04-03 14:08:01 +02:00
|
|
|
// DeleteBucketHandler deletes a bucket
|
|
|
|
func DeleteBucketHandler(s3 S3Client) http.Handler {
|
2017-03-30 22:48:27 +02:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
|
|
|
|
err := s3.RemoveBucket(vars["bucketName"])
|
|
|
|
if err != nil {
|
2017-04-09 16:28:57 +02:00
|
|
|
handleHTTPError(w, http.StatusInternalServerError, err)
|
2017-03-30 22:48:27 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-09 22:44:06 +02:00
|
|
|
code := http.StatusNoContent
|
|
|
|
w.WriteHeader(code)
|
2017-04-10 07:36:02 +02:00
|
|
|
w.Write([]byte(http.StatusText(code)))
|
2017-03-30 22:48:27 +02:00
|
|
|
})
|
|
|
|
}
|