|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Copyright 2023 The casbin Authors. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
-
- package routers
-
- import (
- "fmt"
- "net/http"
- "strings"
-
- "github.com/astaxie/beego"
- "github.com/astaxie/beego/context"
- "github.com/casbin/casibase/util"
- )
-
- func TransparentStatic(ctx *context.Context) {
- urlPath := ctx.Request.URL.Path
- if strings.HasPrefix(urlPath, "/api/") {
- return
- }
-
- landingFolder := beego.AppConfig.String("landingFolder")
- if landingFolder != "" {
- if urlPath == "" || urlPath == "/" || urlPath == "/about" {
- http.ServeFile(ctx.ResponseWriter, ctx.Request, fmt.Sprintf("../%s/web/build/index.html", landingFolder))
- return
- }
-
- landingPath := fmt.Sprintf("../%s/web/build%s", landingFolder, urlPath)
- if util.FileExist(landingPath) {
- http.ServeFile(ctx.ResponseWriter, ctx.Request, landingPath)
- return
- }
- }
-
- path := "web/build"
- if urlPath == "/" {
- path += "/index.html"
- } else {
- path += urlPath
- }
-
- if util.FileExist(path) {
- http.ServeFile(ctx.ResponseWriter, ctx.Request, path)
- } else {
- http.ServeFile(ctx.ResponseWriter, ctx.Request, "web/build/index.html")
- }
- }
|