dispatch/server/serve_files.go

119 lines
2.5 KiB
Go
Raw Normal View History

2015-05-15 23:18:52 +00:00
package server
import (
"bytes"
"compress/gzip"
"io/ioutil"
2016-01-25 00:01:37 +00:00
"log"
2015-05-15 23:18:52 +00:00
"net/http"
"strconv"
"strings"
"time"
2015-12-11 03:35:48 +00:00
"github.com/khlieng/dispatch/assets"
2015-05-15 23:18:52 +00:00
)
var files = []File{
2015-06-07 22:11:03 +00:00
File{"vendor.js", "text/javascript"},
2015-05-15 23:18:52 +00:00
File{"bundle.js", "text/javascript"},
File{"bundle.css", "text/css"},
File{"font/fontello.woff", "application/font-woff"},
File{"font/fontello.ttf", "application/x-font-ttf"},
File{"font/fontello.eot", "application/vnd.ms-fontobject"},
File{"font/fontello.svg", "image/svg+xml"},
}
type File struct {
Path string
ContentType string
}
func serveFiles(w http.ResponseWriter, r *http.Request) {
if r.URL.Path == "/" {
2016-01-25 00:01:37 +00:00
serveIndex(w, r)
2015-05-15 23:18:52 +00:00
return
}
if strings.HasSuffix(r.URL.Path, "favicon.ico") {
w.WriteHeader(404)
return
}
2015-05-15 23:18:52 +00:00
for _, file := range files {
if strings.HasSuffix(r.URL.Path, file.Path) {
serveFile(w, r, file.Path+".gz", file.ContentType)
return
}
}
2016-01-25 00:01:37 +00:00
serveIndex(w, r)
}
func serveIndex(w http.ResponseWriter, r *http.Request) {
session := handleAuth(w, r)
if session == nil {
log.Println("[Auth] No session")
w.WriteHeader(500)
return
}
w.Header().Set("Content-Type", "text/html")
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
w.Header().Set("Content-Encoding", "gzip")
gzw := gzip.NewWriter(w)
renderIndex(gzw, session)
gzw.Close()
} else {
renderIndex(w, session)
}
2015-05-15 23:18:52 +00:00
}
func serveFile(w http.ResponseWriter, r *http.Request, path, contentType string) {
info, err := assets.AssetInfo(path)
2015-05-15 23:18:52 +00:00
if err != nil {
http.Error(w, "", http.StatusInternalServerError)
return
}
if !modifiedSince(w, r, info.ModTime()) {
return
}
data, err := assets.Asset(path)
2015-05-15 23:18:52 +00:00
if err != nil {
http.Error(w, "", http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", contentType)
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
w.Header().Set("Content-Encoding", "gzip")
w.Header().Set("Content-Length", strconv.Itoa(len(data)))
w.Write(data)
} else {
gzr, err := gzip.NewReader(bytes.NewReader(data))
buf, err := ioutil.ReadAll(gzr)
if err != nil {
http.Error(w, "", http.StatusInternalServerError)
return
}
w.Header().Set("Content-Length", strconv.Itoa(len(buf)))
w.Write(buf)
}
}
func modifiedSince(w http.ResponseWriter, r *http.Request, modtime time.Time) bool {
t, err := time.Parse(http.TimeFormat, r.Header.Get("If-Modified-Since"))
if err == nil && modtime.Before(t.Add(1*time.Second)) {
w.WriteHeader(http.StatusNotModified)
return false
}
w.Header().Set("Last-Modified", modtime.UTC().Format(http.TimeFormat))
return true
}