s3manager-web/objects/get-handler.go
2017-03-30 22:48:27 +02:00

37 lines
908 B
Go

package objects
import (
"fmt"
"io"
"net/http"
"github.com/gorilla/mux"
"github.com/mastertinner/s3-manager/web"
minio "github.com/minio/minio-go"
)
// GetHandler downloads an object to the client
func GetHandler(s3 *minio.Client) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
objectName := vars["objectName"]
object, err := s3.GetObject(vars["bucketName"], objectName)
if err != nil {
msg := "error getting object"
web.HandleHTTPError(w, msg, err, http.StatusInternalServerError)
return
}
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", objectName))
w.Header().Set("Content-Type", "application/octet-stream")
_, err = io.Copy(w, object)
if err != nil {
msg := "error copying object"
web.HandleHTTPError(w, msg, err, http.StatusInternalServerError)
return
}
})
}