aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/handler.go
blob: 87ae17cea34fcb5b49f27d36184b3107318f6efa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package frontend

import (
	"embed"
	"io/fs"
	"net/http"

	"donetick.com/core/config"
	"github.com/gin-gonic/gin"
)

//go:embed dist
var embeddedFiles embed.FS

type Handler struct {
	ServeFrontend bool
}

func NewHandler(config *config.Config) *Handler {
	return &Handler{
		ServeFrontend: config.Server.ServeFrontend,
	}
}

func Routes(router *gin.Engine, h *Handler) {
	if h.ServeFrontend {
		router.Use(staticMiddleware("dist"))
		router.Static("/assets", "dist/assets")

		// Gzip compression middleware
		router.Group("/assets").Use(func(c *gin.Context) {
			c.Header("Cache-Control", "max-age=31536000, immutable")
			c.Next()
		})
	}

}

func staticMiddleware(root string) gin.HandlerFunc {
	fileServer := http.FileServer(getFileSystem(root))

	return func(c *gin.Context) {
		fileServer.ServeHTTP(c.Writer, c.Request)
	}
}

func getFileSystem(path string) http.FileSystem {
	fs, err := fs.Sub(embeddedFiles, path)
	if err != nil {
		panic(err)
	}
	return http.FS(fs)
}