mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-10 22:20:25 +00:00
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package router
|
|
|
|
import (
|
|
"embed"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/QuantumNous/new-api/common"
|
|
"github.com/QuantumNous/new-api/controller"
|
|
"github.com/QuantumNous/new-api/middleware"
|
|
"github.com/gin-contrib/gzip"
|
|
"github.com/gin-contrib/static"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// WebAssets holds the embedded dashboard frontend assets.
|
|
type WebAssets struct {
|
|
BuildFS embed.FS
|
|
IndexPage []byte
|
|
}
|
|
|
|
func SetWebRouter(router *gin.Engine, assets WebAssets, pluginDispatcher gin.HandlerFunc) {
|
|
frontendFS := common.EmbedFolder(assets.BuildFS, "web/dist")
|
|
|
|
router.NoRoute(
|
|
pluginDispatcher,
|
|
middleware.RouteTag("web"),
|
|
gzip.Gzip(gzip.DefaultCompression),
|
|
middleware.GlobalWebRateLimit(),
|
|
middleware.Cache(),
|
|
static.Serve("/", frontendFS),
|
|
func(c *gin.Context) {
|
|
if strings.HasPrefix(c.Request.RequestURI, "/v1") || strings.HasPrefix(c.Request.RequestURI, "/api") || strings.HasPrefix(c.Request.RequestURI, "/assets") {
|
|
controller.RelayNotFound(c)
|
|
return
|
|
}
|
|
c.Header("Cache-Control", "no-cache")
|
|
c.Data(http.StatusOK, "text/html; charset=utf-8", assets.IndexPage)
|
|
},
|
|
)
|
|
}
|