Files
OpenList/server/middlewares/check.go

32 lines
744 B
Go
Raw Normal View History

2022-08-11 21:32:33 +08:00
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"
2022-08-11 21:32:33 +08:00
"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
}
}
2022-08-11 21:32:33 +08:00
common.ErrorStrResp(c, "Loading storage, please wait", 500)
c.Abort()
return
2022-08-11 21:32:33 +08:00
}
c.Set(conf.ApiUrlKey, common.GetApiUrlFormRequest(c.Request))
c.Next()
2022-08-11 21:32:33 +08:00
}