37 lines
853 B
Go
37 lines
853 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"html/template"
|
||
|
"net/http"
|
||
|
"path"
|
||
|
)
|
||
|
|
||
|
// BucketsViewHandler shows all buckets
|
||
|
func BucketsViewHandler(s3 S3Client) http.Handler {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
l := path.Join("templates", "layout.html.tmpl")
|
||
|
p := path.Join("templates", "buckets.html.tmpl")
|
||
|
|
||
|
t, err := template.ParseFiles(l, p)
|
||
|
if err != nil {
|
||
|
msg := "error parsing templates"
|
||
|
handleHTTPError(w, msg, err, http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
buckets, err := s3.ListBuckets()
|
||
|
if err != nil {
|
||
|
msg := "error listing buckets"
|
||
|
handleHTTPError(w, msg, err, http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
err = t.ExecuteTemplate(w, "layout", buckets)
|
||
|
if err != nil {
|
||
|
msg := "error executing template"
|
||
|
handleHTTPError(w, msg, err, http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
})
|
||
|
}
|