Files
OpenList/server/middlewares/check.go
MadDogOwner 874dc292ae fix(gomod): go modules with tagged versions (#499)
fix: go modules with tagged versions
2025-07-01 09:54:50 +08:00

32 lines
744 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
}
c.Set(conf.ApiUrlKey, common.GetApiUrlFormRequest(c.Request))
c.Next()
}