c0f1e74bed
Co-authored-by: Romain <rtribotte@users.noreply.github.com>
52 lines
1 KiB
Go
52 lines
1 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
|
|
assetfs "github.com/elazarl/go-bindata-assetfs"
|
|
"github.com/gorilla/mux"
|
|
"github.com/traefik/traefik/v2/pkg/log"
|
|
)
|
|
|
|
// DashboardHandler expose dashboard routes.
|
|
type DashboardHandler struct {
|
|
Assets *assetfs.AssetFS
|
|
}
|
|
|
|
// Append add dashboard routes on a router.
|
|
func (g DashboardHandler) Append(router *mux.Router) {
|
|
if g.Assets == nil {
|
|
log.WithoutContext().Error("No assets for dashboard")
|
|
return
|
|
}
|
|
|
|
// Expose dashboard
|
|
router.Methods(http.MethodGet).
|
|
Path("/").
|
|
HandlerFunc(func(resp http.ResponseWriter, req *http.Request) {
|
|
http.Redirect(resp, req, safePrefix(req)+"/dashboard/", http.StatusFound)
|
|
})
|
|
|
|
router.Methods(http.MethodGet).
|
|
PathPrefix("/dashboard/").
|
|
Handler(http.StripPrefix("/dashboard/", http.FileServer(g.Assets)))
|
|
}
|
|
|
|
func safePrefix(req *http.Request) string {
|
|
prefix := req.Header.Get("X-Forwarded-Prefix")
|
|
if prefix == "" {
|
|
return ""
|
|
}
|
|
|
|
parse, err := url.Parse(prefix)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
if parse.Host != "" {
|
|
return ""
|
|
}
|
|
|
|
return parse.Path
|
|
}
|