add debug logging for user context and web render

This commit is contained in:
Christoph Kluge 2024-10-31 13:36:27 +01:00
parent c120d6517f
commit eabc6212ea
2 changed files with 13 additions and 1 deletions

View File

@ -321,9 +321,10 @@ const ContextUserKey ContextKey = "user"
func GetUserFromContext(ctx context.Context) *schema.User {
x := ctx.Value(ContextUserKey)
if x == nil {
log.Warnf("no user retrieved from context")
return nil
}
log.Infof("user retrieved from context: %v", x.(*schema.User))
return x.(*schema.User)
}

View File

@ -254,6 +254,9 @@ func SetupRoutes(router *mux.Router, buildInfo web.Build) {
for _, route := range routes {
route := route
router.HandleFunc(route.Route, func(rw http.ResponseWriter, r *http.Request) {
log.Info(">>> HELLO ROUTE HANDLER ...")
conf, err := userCfgRepo.GetUIConfig(repository.GetUserFromContext(r.Context()))
if err != nil {
http.Error(rw, err.Error(), http.StatusInternalServerError)
@ -261,15 +264,21 @@ func SetupRoutes(router *mux.Router, buildInfo web.Build) {
}
title := route.Title
log.Infof(">>> >>> ROUTE TITLE : %s ", title)
infos := route.Setup(map[string]interface{}{}, r)
if id, ok := infos["id"]; ok {
title = strings.Replace(route.Title, "<ID>", id.(string), 1)
}
log.Infof(">>> >>> ROUTE INFOS : %v ", infos)
// Get User -> What if NIL?
user := repository.GetUserFromContext(r.Context())
log.Infof(">>> >>> ROUTE USER : %v ", *user)
// Get Roles
availableRoles, _ := schema.GetValidRolesMap(user)
log.Infof(">>> >>> ROUTE AVAILABLE ROLES : %v ", availableRoles)
page := web.Page{
Title: title,
@ -279,10 +288,12 @@ func SetupRoutes(router *mux.Router, buildInfo web.Build) {
Config: conf,
Infos: infos,
}
log.Infof(">>> >>> ROUTE PAGE : %v ", page)
if route.Filter {
page.FilterPresets = buildFilterPresets(r.URL.Query())
}
log.Infof(">>> >>> ROUTE FILTER : %v ", page.FilterPresets)
web.RenderTemplate(rw, route.Template, &page)
})