prometheus/web/blob/blob.go

68 lines
1.4 KiB
Go
Raw Normal View History

package blob
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"net/http"
"strings"
"github.com/golang/glog"
)
2013-03-19 15:11:55 +00:00
const (
TemplateFiles = "templates"
StaticFiles = "static"
2013-03-19 15:11:55 +00:00
)
var mimeMap = map[string]string{
"css": "text/css",
"js": "text/javascript",
"descriptor": "application/vnd.google.protobuf;proto=google.protobuf.FileDescriptorSet",
}
func GetFile(bucket string, name string) ([]byte, error) {
blob, ok := files[bucket][name]
if !ok {
return nil, fmt.Errorf("Could not find %s/%s. Missing/updated files.go?", bucket, name)
}
reader := bytes.NewReader(blob)
gz, err := gzip.NewReader(reader)
if err != nil {
return nil, err
}
var b bytes.Buffer
io.Copy(&b, gz)
gz.Close()
return b.Bytes(), nil
}
type Handler struct{}
func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
name := r.URL.Path
if name == "" {
name = "index.html"
}
2013-03-19 15:11:55 +00:00
file, err := GetFile(StaticFiles, name)
if err != nil {
if err != io.EOF {
glog.Warning("Could not get file:", err)
}
w.WriteHeader(http.StatusNotFound)
return
}
contentType := http.DetectContentType(file)
if strings.Contains(contentType, "text/plain") || strings.Contains(contentType, "application/octet-stream") {
parts := strings.Split(name, ".")
contentType = mimeMap[parts[len(parts)-1]]
}
w.Header().Set("Content-Type", contentType)
w.Header().Set("Cache-Control", "public, max-age=259200")
w.Write(file)
}