s3manager-web/bucket-view.go
2017-05-08 23:29:47 +02:00

84 lines
1.8 KiB
Go

package s3manager
import (
"html/template"
"net/http"
"path"
"github.com/gorilla/mux"
minio "github.com/minio/minio-go"
)
// objectWithIcon is a minio object with an added icon.
type objectWithIcon struct {
minio.ObjectInfo
Icon string
}
// bucketPage defines the details page of a bucket.
type bucketPage struct {
BucketName string
Objects []objectWithIcon
}
// BucketViewHandler shows the details page of a bucket.
func BucketViewHandler(s3 S3) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
bucketName := mux.Vars(r)["bucketName"]
var objs []objectWithIcon
l := path.Join(tmplDirectory, "layout.html.tmpl")
p := path.Join(tmplDirectory, "bucket.html.tmpl")
t, err := template.ParseFiles(l, p)
if err != nil {
handleHTTPError(w, http.StatusInternalServerError, err)
return
}
doneCh := make(chan struct{})
defer close(doneCh)
objectCh := s3.ListObjectsV2(bucketName, "", true, doneCh)
for object := range objectCh {
if object.Err != nil {
code := http.StatusInternalServerError
if object.Err.Error() == ErrBucketDoesNotExist {
code = http.StatusNotFound
}
handleHTTPError(w, code, object.Err)
return
}
obj := objectWithIcon{object, icon(object.Key)}
objs = append(objs, obj)
}
page := bucketPage{
BucketName: bucketName,
Objects: objs,
}
err = t.ExecuteTemplate(w, "layout", page)
if err != nil {
handleHTTPError(w, http.StatusInternalServerError, err)
return
}
})
}
// icon returns an icon for a file type.
func icon(fileName string) string {
e := path.Ext(fileName)
switch e {
case ".tgz", ".gz":
return "archive"
case ".png", ".jpg", ".gif", ".svg":
return "photo"
case ".mp3", ".wav":
return "music_note"
}
return "insert_drive_file"
}