wp-go/internal/middleware/staticFileCache.go

16 lines
383 B
Go
Raw Normal View History

2022-09-14 05:28:31 +00:00
package middleware
import (
2023-01-21 11:31:23 +00:00
"github.com/fthvgb1/wp-go/helper/slice"
2022-09-14 05:28:31 +00:00
"github.com/gin-gonic/gin"
"strings"
)
func SetStaticFileCache(c *gin.Context) {
f := strings.Split(strings.TrimLeft(c.FullPath(), "/"), "/")
2023-01-21 11:31:23 +00:00
if len(f) > 0 && slice.IsContained(f[0], []string{"wp-includes", "wp-content", "favicon.ico"}) {
2022-09-14 05:28:31 +00:00
c.Header("Cache-Control", "private, max-age=86400")
}
2022-09-14 13:30:59 +00:00
c.Next()
2022-09-14 05:28:31 +00:00
}