dispatch/server/serve_files.go

372 lines
8.3 KiB
Go

package server
import (
"bytes"
"compress/gzip"
"crypto/sha256"
"encoding/base64"
"io"
"io/ioutil"
"log"
"net/http"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/dsnet/compress/brotli"
"github.com/khlieng/dispatch/assets"
"github.com/spf13/viper"
)
const longCacheControl = "public, max-age=31536000, immutable"
const disabledCacheControl = "no-cache, no-store, must-revalidate"
type File struct {
Path string
Asset string
GzipAsset []byte
Hash string
ContentType string
CacheControl string
Compressed bool
}
type h2PushAsset struct {
path string
hash string
}
func newH2PushAsset(name string) h2PushAsset {
return h2PushAsset{
path: name,
hash: strings.Split(name, ".")[1],
}
}
var (
files []*File
indexStylesheet string
indexScripts []string
inlineScript string
inlineScriptSha256 string
serviceWorker []byte
h2PushAssets []h2PushAsset
h2PushCookieValue string
contentTypes = map[string]string{
".js": "text/javascript",
".css": "text/css",
".woff2": "font/woff2",
".woff": "application/font-woff",
".ttf": "application/x-font-ttf",
".png": "image/png",
".ico": "image/x-icon",
".json": "application/json",
}
robots = []byte("User-agent: *\nDisallow: /")
hstsHeader string
cspEnabled bool
)
func (d *Dispatch) initFileServer() {
if viper.GetBool("dev") {
indexScripts = []string{"bundle.js"}
} else {
bootloader := decompressedAsset(findAssetName("boot*.js"))
runtime := decompressedAsset(findAssetName("runtime*.js"))
inlineScript = string(bootloader) + string(runtime)
hash := sha256.New()
hash.Write(bootloader)
hash.Write(runtime)
inlineScriptSha256 = base64.StdEncoding.EncodeToString(hash.Sum(nil))
indexStylesheet = findAssetName("main*.css")
indexScripts = []string{
findAssetName("vendors*.js"),
findAssetName("main*.js"),
}
h2PushAssets = []h2PushAsset{
newH2PushAsset(indexStylesheet),
newH2PushAsset(indexScripts[0]),
newH2PushAsset(indexScripts[1]),
}
for _, asset := range h2PushAssets {
h2PushCookieValue += asset.hash
}
ignoreAssets := []string{
findAssetName("runtime*.js"),
findAssetName("boot*.js"),
"sw.js",
}
outer:
for _, asset := range assets.AssetNames() {
assetName := strings.TrimSuffix(asset, ".br")
for _, ignored := range ignoreAssets {
if ignored == assetName {
continue outer
}
}
file := &File{
Path: "/" + assetName,
Asset: asset,
ContentType: contentTypes[filepath.Ext(assetName)],
CacheControl: longCacheControl,
Compressed: strings.HasSuffix(asset, ".br"),
}
if file.Compressed {
data, err := assets.Asset(file.Asset)
if err != nil {
log.Fatal(err)
}
file.GzipAsset = gzipAsset(data)
}
files = append(files, file)
}
serviceWorker = decompressedAsset("sw.js")
hash.Reset()
IndexTemplate(hash, indexStylesheet, inlineScript, indexScripts)
indexHash := base64.StdEncoding.EncodeToString(hash.Sum(nil))
serviceWorker = append(serviceWorker, []byte(`
workbox.precaching.precacheAndRoute([{
revision: '`+indexHash+`',
url: '/'
}]);
workbox.routing.registerNavigationRoute('/');`)...)
if viper.GetBool("https.hsts.enabled") && viper.GetBool("https.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"
}
}
cspEnabled = true
}
}
func findAssetName(glob string) string {
for _, assetName := range assets.AssetNames() {
assetName = strings.TrimSuffix(assetName, ".br")
if m, _ := filepath.Match(glob, assetName); m {
return assetName
}
}
return ""
}
func decompressAsset(data []byte) []byte {
br, err := brotli.NewReader(bytes.NewReader(data), nil)
if err != nil {
log.Fatal(err)
}
buf := &bytes.Buffer{}
io.Copy(buf, br)
return buf.Bytes()
}
func decompressedAsset(name string) []byte {
asset, err := assets.Asset(name + ".br")
if err != nil {
log.Fatal(err)
}
return decompressAsset(asset)
}
func gzipAsset(data []byte) []byte {
br, err := brotli.NewReader(bytes.NewReader(data), nil)
if err != nil {
log.Fatal(err)
}
buf := &bytes.Buffer{}
gzw, err := gzip.NewWriterLevel(buf, gzip.BestCompression)
if err != nil {
log.Fatal(err)
}
io.Copy(gzw, br)
gzw.Close()
return buf.Bytes()
}
func (d *Dispatch) serveFiles(w http.ResponseWriter, r *http.Request) {
if r.URL.Path == "/" {
d.serveIndex(w, r)
return
}
if r.URL.Path == "/sw.js" {
w.Header().Set("Cache-Control", disabledCacheControl)
w.Header().Set("Content-Type", "text/javascript")
w.Header().Set("Content-Length", strconv.Itoa(len(serviceWorker)))
w.Write(serviceWorker)
return
}
if r.URL.Path == "/robots.txt" {
w.Header().Set("Content-Type", "text/plain")
w.Header().Set("Content-Length", strconv.Itoa(len(robots)))
w.Write(robots)
return
}
for _, file := range files {
if r.URL.Path == file.Path {
d.serveFile(w, r, file)
return
}
}
d.serveIndex(w, r)
}
func (d *Dispatch) serveIndex(w http.ResponseWriter, r *http.Request) {
if pusher, ok := w.(http.Pusher); ok {
options := &http.PushOptions{
Header: http.Header{
"Accept-Encoding": r.Header["Accept-Encoding"],
},
}
cookie, err := r.Cookie("push")
if err != nil {
for _, asset := range h2PushAssets {
pusher.Push(asset.path, options)
}
setPushCookie(w, r)
} else {
pushed := false
i := 0
for _, asset := range h2PushAssets {
if len(cookie.Value) >= i+len(asset.hash) &&
asset.hash != cookie.Value[i:i+len(asset.hash)] {
i += len(asset.hash)
pusher.Push(asset.path, options)
pushed = true
}
}
if pushed {
setPushCookie(w, r)
}
}
}
if cspEnabled {
var wsSrc string
if r.TLS != nil {
wsSrc = "wss://" + r.Host
} else {
wsSrc = "ws://" + r.Host
}
csp := []string{
"default-src 'none'",
"script-src 'self' 'sha256-" + inlineScriptSha256 + "'",
"style-src 'self' 'unsafe-inline'",
"font-src 'self'",
"img-src 'self'",
"manifest-src 'self'",
"connect-src 'self' " + wsSrc,
"worker-src 'self'",
}
w.Header().Set("Content-Security-Policy", strings.Join(csp, "; "))
}
w.Header().Set("Content-Type", "text/html")
w.Header().Set("Cache-Control", disabledCacheControl)
w.Header().Set("X-Content-Type-Options", "nosniff")
w.Header().Set("X-Frame-Options", "deny")
w.Header().Set("X-XSS-Protection", "1; mode=block")
w.Header().Set("Referrer-Policy", "same-origin")
if hstsHeader != "" {
w.Header().Set("Strict-Transport-Security", hstsHeader)
}
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
w.Header().Set("Content-Encoding", "gzip")
gzw := getGzipWriter(w)
IndexTemplate(gzw, indexStylesheet, inlineScript, indexScripts)
putGzipWriter(gzw)
} else {
IndexTemplate(w, indexStylesheet, inlineScript, indexScripts)
}
}
func setPushCookie(w http.ResponseWriter, r *http.Request) {
http.SetCookie(w, &http.Cookie{
Name: "push",
Value: h2PushCookieValue,
Path: "/",
Expires: time.Now().AddDate(1, 0, 0),
HttpOnly: true,
Secure: r.TLS != nil,
})
}
func (d *Dispatch) serveFile(w http.ResponseWriter, r *http.Request, file *File) {
data, err := assets.Asset(file.Asset)
if err != nil {
http.Error(w, "", http.StatusInternalServerError)
return
}
if file.CacheControl != "" {
w.Header().Set("Cache-Control", file.CacheControl)
}
w.Header().Set("Content-Type", file.ContentType)
if file.Compressed && strings.Contains(r.Header.Get("Accept-Encoding"), "br") {
w.Header().Set("Content-Encoding", "br")
w.Header().Set("Content-Length", strconv.Itoa(len(data)))
w.Write(data)
} else if file.Compressed && strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
w.Header().Set("Content-Encoding", "gzip")
w.Header().Set("Content-Length", strconv.Itoa(len(file.GzipAsset)))
w.Write(file.GzipAsset)
} else if !file.Compressed {
w.Header().Set("Content-Length", strconv.Itoa(len(data)))
w.Write(data)
} else {
gzr, err := gzip.NewReader(bytes.NewReader(file.GzipAsset))
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)
}
}