s3manager-web/pages.go

106 lines
2.3 KiB
Go
Raw Normal View History

2016-12-18 22:54:21 +01:00
package main
import (
"html/template"
"net/http"
"path"
2016-12-21 00:32:40 +01:00
"github.com/gorilla/mux"
2016-12-18 22:54:21 +01:00
minio "github.com/minio/minio-go"
)
2016-12-21 00:32:40 +01:00
// 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
}
2017-03-09 21:44:11 +01:00
// IndexPageHandler forwards to "/buckets"
func IndexPageHandler(w http.ResponseWriter, r *http.Request) {
2016-12-20 19:35:27 +01:00
http.Redirect(w, r, "/buckets", http.StatusPermanentRedirect)
}
2017-03-09 21:44:11 +01:00
// BucketsPageHandler shows all buckets
func (s *Server) BucketsPageHandler(w http.ResponseWriter, r *http.Request) {
2016-12-18 22:54:21 +01:00
lp := path.Join("templates", "layout.html")
ip := path.Join("templates", "index.html")
t, err := template.ParseFiles(lp, ip)
if err != nil {
2017-03-09 21:20:40 +01:00
w.WriteHeader(http.StatusInternalServerError)
return
2016-12-18 22:54:21 +01:00
}
2017-03-09 21:20:40 +01:00
buckets, err := s.s3.ListBuckets()
2016-12-18 22:54:21 +01:00
if err != nil {
2017-03-09 21:20:40 +01:00
w.WriteHeader(http.StatusInternalServerError)
return
2016-12-18 22:54:21 +01:00
}
err = t.ExecuteTemplate(w, "layout", buckets)
if err != nil {
2017-03-09 21:20:40 +01:00
w.WriteHeader(http.StatusInternalServerError)
return
2016-12-18 22:54:21 +01:00
}
}
2017-03-09 21:44:11 +01:00
// BucketPageHandler shows the details page of a bucket
func (s *Server) BucketPageHandler(w http.ResponseWriter, r *http.Request) {
2016-12-21 00:32:40 +01:00
bucketName := mux.Vars(r)["bucketName"]
var objects []ObjectWithIcon
2016-12-18 22:54:21 +01:00
lp := path.Join("templates", "layout.html")
bp := path.Join("templates", "bucket.html")
t, err := template.ParseFiles(lp, bp)
if err != nil {
2017-03-09 21:20:40 +01:00
w.WriteHeader(http.StatusInternalServerError)
return
2016-12-18 22:54:21 +01:00
}
doneCh := make(chan struct{})
2017-03-09 21:20:40 +01:00
objectCh := s.s3.ListObjectsV2(bucketName, "", false, doneCh)
2016-12-18 22:54:21 +01:00
for object := range objectCh {
if object.Err != nil {
2017-03-09 21:20:40 +01:00
w.WriteHeader(http.StatusInternalServerError)
2016-12-18 22:54:21 +01:00
return
}
2017-03-09 21:20:40 +01:00
objectWithIcon := ObjectWithIcon{object, icon(object.Key)}
2016-12-21 00:32:40 +01:00
objects = append(objects, objectWithIcon)
}
bucketPage := BucketPage{
BucketName: bucketName,
Objects: objects,
2016-12-18 22:54:21 +01:00
}
2016-12-21 00:32:40 +01:00
err = t.ExecuteTemplate(w, "layout", bucketPage)
2016-12-18 22:54:21 +01:00
if err != nil {
2017-03-09 21:20:40 +01:00
w.WriteHeader(http.StatusInternalServerError)
return
2016-12-18 22:54:21 +01:00
}
}
2016-12-21 00:32:40 +01:00
2017-03-09 21:20:40 +01:00
// icon returns an icon for a file type
func icon(fileName string) string {
2016-12-21 00:32:40 +01:00
e := path.Ext(fileName)
switch e {
case ".tgz":
return "archive"
case ".png", ".jpg", ".gif", ".svg":
return "photo"
case ".mp3":
return "music_note"
}
return "insert_drive_file"
}