2015-05-15 23:18:52 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
2016-01-25 05:01:40 +00:00
|
|
|
"crypto/md5"
|
|
|
|
"encoding/base64"
|
2015-05-15 23:18:52 +00:00
|
|
|
"io/ioutil"
|
2016-01-25 00:01:37 +00:00
|
|
|
"log"
|
2015-05-15 23:18:52 +00:00
|
|
|
"net/http"
|
2016-02-03 01:22:45 +00:00
|
|
|
"path/filepath"
|
2015-05-15 23:18:52 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
2015-05-25 02:00:21 +00:00
|
|
|
|
2016-01-25 05:01:40 +00:00
|
|
|
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/spf13/viper"
|
|
|
|
|
2015-12-11 03:35:48 +00:00
|
|
|
"github.com/khlieng/dispatch/assets"
|
2015-05-15 23:18:52 +00:00
|
|
|
)
|
|
|
|
|
2016-02-03 01:22:45 +00:00
|
|
|
type File struct {
|
|
|
|
Path string
|
|
|
|
Asset string
|
|
|
|
ContentType string
|
|
|
|
CacheControl string
|
|
|
|
Gzip bool
|
|
|
|
}
|
|
|
|
|
2016-01-25 21:41:54 +00:00
|
|
|
var (
|
2016-02-03 01:22:45 +00:00
|
|
|
files = []*File{
|
|
|
|
&File{
|
2016-01-25 21:41:54 +00:00
|
|
|
Path: "bundle.js",
|
|
|
|
Asset: "bundle.js.gz",
|
|
|
|
ContentType: "text/javascript",
|
|
|
|
CacheControl: "max-age=31536000",
|
2016-02-03 01:22:45 +00:00
|
|
|
Gzip: true,
|
2016-01-25 21:41:54 +00:00
|
|
|
},
|
2016-02-03 01:22:45 +00:00
|
|
|
&File{
|
2016-01-25 21:41:54 +00:00
|
|
|
Path: "bundle.css",
|
|
|
|
Asset: "bundle.css.gz",
|
|
|
|
ContentType: "text/css",
|
|
|
|
CacheControl: "max-age=31536000",
|
2016-02-03 01:22:45 +00:00
|
|
|
Gzip: true,
|
2016-01-25 21:41:54 +00:00
|
|
|
},
|
2016-02-03 01:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
contentTypes = map[string]string{
|
|
|
|
".woff2": "font/woff2",
|
|
|
|
".woff": "application/font-woff",
|
|
|
|
".ttf": "application/x-font-ttf",
|
2016-01-25 21:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hstsHeader string
|
|
|
|
)
|
2015-05-15 23:18:52 +00:00
|
|
|
|
2016-01-25 05:01:40 +00:00
|
|
|
func initFileServer() {
|
|
|
|
if !viper.GetBool("dev") {
|
|
|
|
data, err := assets.Asset(files[0].Asset)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hash := md5.Sum(data)
|
|
|
|
files[0].Path = "bundle." + base64.RawURLEncoding.EncodeToString(hash[:]) + ".js"
|
|
|
|
|
|
|
|
data, err = assets.Asset(files[1].Asset)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hash = md5.Sum(data)
|
|
|
|
files[1].Path = "bundle." + base64.RawURLEncoding.EncodeToString(hash[:]) + ".css"
|
2016-01-25 21:41:54 +00:00
|
|
|
|
2016-02-03 01:22:45 +00:00
|
|
|
fonts, err := assets.AssetDir("font")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, font := range fonts {
|
|
|
|
path := strings.TrimSuffix(font, ".gz")
|
|
|
|
|
|
|
|
files = append(files, &File{
|
|
|
|
Path: filepath.Join("font", path),
|
|
|
|
Asset: filepath.Join("font", font),
|
|
|
|
ContentType: contentTypes[filepath.Ext(path)],
|
|
|
|
CacheControl: "max-age=31536000",
|
|
|
|
Gzip: strings.HasSuffix(font, ".gz"),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-01-25 21:41:54 +00:00
|
|
|
if viper.GetBool("https.hsts.enabled") {
|
|
|
|
hstsHeader = "max-age=" + viper.GetString("https.hsts.max_age")
|
|
|
|
|
|
|
|
if viper.GetBool("https.hsts.include_subdomains") {
|
|
|
|
hstsHeader += "; includeSubDomains"
|
|
|
|
}
|
|
|
|
if viper.GetBool("https.hsts.preload") {
|
|
|
|
hstsHeader += "; preload"
|
|
|
|
}
|
|
|
|
}
|
2016-01-25 05:01:40 +00:00
|
|
|
}
|
2015-05-15 23:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-01-15 01:27:30 +00:00
|
|
|
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) {
|
2016-02-03 01:22:45 +00:00
|
|
|
serveFile(w, r, file)
|
2015-05-15 23:18:52 +00:00
|
|
|
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")
|
2016-01-25 21:41:54 +00:00
|
|
|
w.Header().Set("Cache-Control", "no-store")
|
|
|
|
w.Header().Set("X-Content-Type-Options", "nosniff")
|
|
|
|
w.Header().Set("X-Frame-Options", "deny")
|
|
|
|
w.Header().Set("X-XSS-Protection", "1; mode=block")
|
|
|
|
|
|
|
|
if hstsHeader != "" {
|
|
|
|
w.Header().Set("Strict-Transport-Security", hstsHeader)
|
|
|
|
}
|
2016-01-25 00:01:37 +00:00
|
|
|
|
|
|
|
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
|
|
|
w.Header().Set("Content-Encoding", "gzip")
|
2016-01-25 21:41:54 +00:00
|
|
|
|
2016-01-25 00:01:37 +00:00
|
|
|
gzw := gzip.NewWriter(w)
|
2016-01-26 21:10:44 +00:00
|
|
|
renderIndex(gzw, getIndexData(r, session))
|
2016-01-25 00:01:37 +00:00
|
|
|
gzw.Close()
|
|
|
|
} else {
|
2016-01-26 21:10:44 +00:00
|
|
|
renderIndex(w, getIndexData(r, session))
|
2016-01-25 00:01:37 +00:00
|
|
|
}
|
2015-05-15 23:18:52 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 01:22:45 +00:00
|
|
|
func serveFile(w http.ResponseWriter, r *http.Request, file *File) {
|
|
|
|
info, err := assets.AssetInfo(file.Asset)
|
2015-05-15 23:18:52 +00:00
|
|
|
if err != nil {
|
|
|
|
http.Error(w, "", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !modifiedSince(w, r, info.ModTime()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-03 01:22:45 +00:00
|
|
|
data, err := assets.Asset(file.Asset)
|
2015-05-15 23:18:52 +00:00
|
|
|
if err != nil {
|
|
|
|
http.Error(w, "", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-03 01:22:45 +00:00
|
|
|
if file.CacheControl != "" {
|
|
|
|
w.Header().Set("Cache-Control", file.CacheControl)
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", file.ContentType)
|
2015-05-15 23:18:52 +00:00
|
|
|
|
2016-02-03 01:22:45 +00:00
|
|
|
if file.Gzip && strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
2015-05-15 23:18:52 +00:00
|
|
|
w.Header().Set("Content-Encoding", "gzip")
|
|
|
|
w.Header().Set("Content-Length", strconv.Itoa(len(data)))
|
|
|
|
w.Write(data)
|
2016-02-03 01:22:45 +00:00
|
|
|
} else if !file.Gzip {
|
|
|
|
w.Header().Set("Content-Length", strconv.Itoa(len(data)))
|
|
|
|
w.Write(data)
|
2015-05-15 23:18:52 +00:00
|
|
|
} 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
|
|
|
|
}
|