mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 03:34:33 +08:00
64 lines
1.6 KiB
Go
64 lines
1.6 KiB
Go
package frontend
|
|
|
|
import (
|
|
"context"
|
|
"embed"
|
|
"io/fs"
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/labstack/echo/v4/middleware"
|
|
|
|
"github.com/usememos/memos/internal/util"
|
|
"github.com/usememos/memos/server/profile"
|
|
"github.com/usememos/memos/store"
|
|
)
|
|
|
|
//go:embed dist
|
|
var embeddedFiles embed.FS
|
|
|
|
type FrontendService struct {
|
|
Profile *profile.Profile
|
|
Store *store.Store
|
|
}
|
|
|
|
func NewFrontendService(profile *profile.Profile, store *store.Store) *FrontendService {
|
|
return &FrontendService{
|
|
Profile: profile,
|
|
Store: store,
|
|
}
|
|
}
|
|
|
|
func (*FrontendService) Serve(_ context.Context, e *echo.Echo) {
|
|
skipper := func(c echo.Context) bool {
|
|
return util.HasPrefixes(c.Path(), "/api", "/memos.api.v1")
|
|
}
|
|
|
|
// Use echo static middleware to serve the built dist folder.
|
|
// Reference: https://github.com/labstack/echo/blob/master/middleware/static.go
|
|
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
|
HTML5: true,
|
|
Filesystem: getFileSystem("dist"),
|
|
Skipper: skipper,
|
|
}))
|
|
// Use echo gzip middleware to compress the response.
|
|
// Reference: https://echo.labstack.com/docs/middleware/gzip
|
|
e.Group("assets").Use(middleware.GzipWithConfig(middleware.GzipConfig{
|
|
Level: 5,
|
|
}), func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
return func(c echo.Context) error {
|
|
c.Response().Header().Set(echo.HeaderCacheControl, "max-age=31536000, immutable")
|
|
return next(c)
|
|
}
|
|
}, middleware.StaticWithConfig(middleware.StaticConfig{
|
|
Filesystem: getFileSystem("dist/assets"),
|
|
}))
|
|
}
|
|
|
|
func getFileSystem(path string) http.FileSystem {
|
|
fs, err := fs.Sub(embeddedFiles, path)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return http.FS(fs)
|
|
}
|