s3manager-web/get-object.go

45 lines
1.1 KiB
Go
Raw Normal View History

2017-04-03 14:08:01 +02:00
package main
2017-03-30 22:48:27 +02:00
import (
"fmt"
"io"
"net/http"
"github.com/gorilla/mux"
)
2017-04-03 14:08:01 +02:00
// GetObjectHandler downloads an object to the client
func GetObjectHandler(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)
objectName := vars["objectName"]
object, err := s3.GetObject(vars["bucketName"], objectName)
if err != nil {
msg := "error getting object"
2017-04-03 14:08:01 +02:00
handleHTTPError(w, msg, err, http.StatusInternalServerError)
2017-03-30 22:48:27 +02:00
return
}
2017-04-07 10:07:23 +02:00
w.Header().Set(headerContentDisposition, fmt.Sprintf("attachment; filename=\"%s\"", objectName))
w.Header().Set(headerContentType, contentTypeOctetStream)
2017-03-30 22:48:27 +02:00
_, err = io.Copy(w, object)
if err != nil {
msg := "error copying object"
2017-04-03 23:52:41 +02:00
code := http.StatusInternalServerError
if err.Error() == "The specified key does not exist." {
msg = "object not found"
code = http.StatusNotFound
}
if err.Error() == "The specified bucket does not exist." {
msg = "bucket not found"
code = http.StatusNotFound
}
handleHTTPError(w, msg, err, code)
2017-03-30 22:48:27 +02:00
return
}
})
}