2022-02-03 07:25:36 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/ClusterCockpit/cc-backend/auth"
|
|
|
|
"github.com/ClusterCockpit/cc-backend/config"
|
|
|
|
"github.com/ClusterCockpit/cc-backend/templates"
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
|
|
|
type InfoType map[string]interface{}
|
|
|
|
|
|
|
|
type Route struct {
|
|
|
|
Route string
|
|
|
|
Template string
|
|
|
|
Title string
|
|
|
|
Filter bool
|
|
|
|
Setup func(i InfoType, r *http.Request) InfoType
|
|
|
|
}
|
|
|
|
|
2022-02-03 09:39:04 +01:00
|
|
|
func setupRoutes(router *mux.Router, routes []Route) {
|
2022-02-03 07:25:36 +01:00
|
|
|
for _, route := range routes {
|
|
|
|
router.HandleFunc(route.Route, func(rw http.ResponseWriter, r *http.Request) {
|
|
|
|
conf, err := config.GetUIConfig(r)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
infos := map[string]interface{}{
|
|
|
|
"admin": true,
|
|
|
|
}
|
|
|
|
|
|
|
|
if user := auth.GetUser(r.Context()); user != nil {
|
|
|
|
infos["username"] = user.Username
|
|
|
|
infos["admin"] = user.HasRole(auth.RoleAdmin)
|
|
|
|
} else {
|
|
|
|
infos["username"] = false
|
|
|
|
infos["admin"] = false
|
|
|
|
}
|
|
|
|
|
|
|
|
infos = route.Setup(infos, r)
|
2022-02-03 10:25:52 +01:00
|
|
|
if id, ok := infos["id"]; ok {
|
|
|
|
route.Title = strings.Replace(route.Title, "<ID>", id.(string), 1)
|
|
|
|
}
|
2022-02-03 07:25:36 +01:00
|
|
|
|
|
|
|
templates.Render(rw, r, route.Template, &templates.Page{
|
|
|
|
Title: route.Title,
|
|
|
|
Config: conf,
|
|
|
|
Infos: infos,
|
|
|
|
FilterPresets: buildFilterPresets(r.URL.Query()),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|