s3manager-web/get_object.go

35 lines
834 B
Go
Raw Normal View History

2017-05-08 23:07:07 +02:00
package s3manager
2017-03-30 22:48:27 +02:00
import (
"fmt"
"io"
"net/http"
"github.com/gorilla/mux"
2017-05-25 18:33:44 +02:00
"github.com/pkg/errors"
2017-03-30 22:48:27 +02:00
)
2017-05-08 23:07:07 +02:00
// GetObjectHandler downloads an object to the client.
func GetObjectHandler(s3 S3) http.Handler {
2017-03-30 22:48:27 +02:00
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
2017-04-21 15:42:00 +02:00
bucketName := vars["bucketName"]
2017-03-30 22:48:27 +02:00
objectName := vars["objectName"]
2017-04-21 15:42:00 +02:00
object, err := s3.GetObject(bucketName, objectName)
2017-03-30 22:48:27 +02:00
if err != nil {
2017-05-25 18:33:44 +02:00
handleHTTPError(w, errors.Wrap(err, "error getting object"))
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))
2017-05-08 23:07:07 +02:00
w.Header().Set(HeaderContentType, contentTypeOctetStream)
2017-03-30 22:48:27 +02:00
_, err = io.Copy(w, object)
if err != nil {
2017-05-25 18:33:44 +02:00
handleHTTPError(w, errors.Wrap(err, "error copying object to response writer"))
2017-03-30 22:48:27 +02:00
return
}
})
}