Files
OpenList/server/middlewares/check.go
j2rong4cn 0c461991f9 chore: standardize context keys with custom ContextKey type (#697)
* chore: standardize context keys with custom ContextKey type

* fix bug

* 使用Request.Context
2025-07-14 23:55:17 +08:00

34 lines
766 B
Go

package middlewares
import (
"strings"
"github.com/OpenListTeam/OpenList/v4/internal/conf"
"github.com/OpenListTeam/OpenList/v4/pkg/utils"
"github.com/OpenListTeam/OpenList/v4/server/common"
"github.com/gin-gonic/gin"
)
func StoragesLoaded(c *gin.Context) {
if !conf.StoragesLoaded {
if utils.SliceContains([]string{"", "/", "/favicon.ico"}, c.Request.URL.Path) {
c.Next()
return
}
paths := []string{"/assets", "/images", "/streamer", "/static"}
for _, path := range paths {
if strings.HasPrefix(c.Request.URL.Path, path) {
c.Next()
return
}
}
common.ErrorStrResp(c, "Loading storage, please wait", 500)
c.Abort()
return
}
common.GinWithValue(c,
conf.ApiUrlKey, common.GetApiUrlFromRequest(c.Request),
)
c.Next()
}