Skip to content

Commit eeb28d7

Browse files
authored
fix: 304 cache after update (#49)
1 parent 5bddbea commit eeb28d7

File tree

1 file changed

+78
-14
lines changed

1 file changed

+78
-14
lines changed

route/static_route.go

+78-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
package route
22

33
import (
4+
"fmt"
5+
"io"
6+
"io/fs"
47
"net/http"
8+
"os"
9+
"time"
510

611
"github.com/IceWhaleTech/CasaOS-Gateway/service"
712
"github.com/labstack/echo/v4"
@@ -12,31 +17,90 @@ type StaticRoute struct {
1217
state *service.State
1318
}
1419

15-
var RouteCache = make(map[string]string)
20+
var startTime = time.Now()
1621

1722
func NewStaticRoute(state *service.State) *StaticRoute {
1823
return &StaticRoute{
1924
state: state,
2025
}
2126
}
2227

28+
type CustomFS struct {
29+
base fs.FS
30+
}
31+
32+
func NewCustomFS(prefix string) *CustomFS {
33+
return &CustomFS{
34+
base: fs.FS(os.DirFS(prefix)),
35+
}
36+
}
37+
38+
func (c *CustomFS) Open(name string) (fs.File, error) {
39+
file, err := c.base.Open(name)
40+
if err != nil {
41+
return nil, err
42+
}
43+
return &CustomFile{
44+
File: file,
45+
}, nil
46+
}
47+
48+
func (c *CustomFS) Stat(name string) (fs.FileInfo, error) {
49+
file, err := c.base.Open(name)
50+
if err != nil {
51+
return nil, err
52+
}
53+
info, err := file.Stat()
54+
if err != nil {
55+
return nil, err
56+
}
57+
return &CustomFileInfo{
58+
FileInfo: info,
59+
}, nil
60+
}
61+
62+
type CustomFile struct {
63+
fs.File
64+
}
65+
66+
func (c *CustomFile) Stat() (fs.FileInfo, error) {
67+
info, err := c.File.Stat()
68+
if err != nil {
69+
return nil, err
70+
}
71+
return &CustomFileInfo{
72+
FileInfo: info,
73+
}, nil
74+
}
75+
76+
func (c *CustomFile) Read(p []byte) (int, error) {
77+
if seeker, ok := c.File.(io.Reader); ok {
78+
return seeker.Read(p)
79+
}
80+
return 0, fmt.Errorf("file does not implement io.Reader")
81+
}
82+
83+
func (c *CustomFile) Seek(offset int64, whence int) (int64, error) {
84+
if seeker, ok := c.File.(io.Seeker); ok {
85+
return seeker.Seek(offset, whence)
86+
}
87+
return 0, fmt.Errorf("file does not implement io.Seeker")
88+
}
89+
90+
type CustomFileInfo struct {
91+
fs.FileInfo
92+
}
93+
94+
func (c *CustomFileInfo) ModTime() time.Time {
95+
return startTime
96+
}
97+
2398
func (s *StaticRoute) GetRoute() http.Handler {
2499
e := echo.New()
25100

26101
e.Use(echo_middleware.Gzip())
27102

28-
e.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
29-
return func(ctx echo.Context) error {
30-
if _, ok := RouteCache[ctx.Request().URL.Path]; !ok {
31-
ctx.Response().Writer.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate,proxy-revalidate, max-age=0")
32-
RouteCache[ctx.Request().URL.Path] = ctx.Request().URL.Path
33-
}
34-
return next(ctx)
35-
}
36-
})
37-
38-
e.Static("/", s.state.GetWWWPath())
39-
103+
// sovle 304 cache problem by 'If-Modified-Since: Wed, 21 Oct 2015 07:28:00 GMT' from web browser
104+
e.StaticFS("/", NewCustomFS(s.state.GetWWWPath()))
40105
return e
41106
}
42-

0 commit comments

Comments
 (0)