1
1
package route
2
2
3
3
import (
4
+ "fmt"
5
+ "io"
6
+ "io/fs"
4
7
"net/http"
8
+ "os"
9
+ "time"
5
10
6
11
"github.com/IceWhaleTech/CasaOS-Gateway/service"
7
12
"github.com/labstack/echo/v4"
@@ -12,31 +17,90 @@ type StaticRoute struct {
12
17
state * service.State
13
18
}
14
19
15
- var RouteCache = make ( map [ string ] string )
20
+ var startTime = time . Now ( )
16
21
17
22
func NewStaticRoute (state * service.State ) * StaticRoute {
18
23
return & StaticRoute {
19
24
state : state ,
20
25
}
21
26
}
22
27
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
+
23
98
func (s * StaticRoute ) GetRoute () http.Handler {
24
99
e := echo .New ()
25
100
26
101
e .Use (echo_middleware .Gzip ())
27
102
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 ()))
40
105
return e
41
106
}
42
-
0 commit comments