aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/handler.go
blob: 1a5337e4df116cad7aaf900c3cd8ac1b3744e77e (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
package frontend

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

	"github.com/gin-gonic/gin"
)

//go:embed dist
var embeddedFiles embed.FS

type Handler struct {
}

func NewHandler() *Handler {
	return &Handler{}
}

func Routes(router *gin.Engine, h *Handler) {

	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)
}