31 lines
785 B
Go
31 lines
785 B
Go
package host
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"context"
|
|
|
|
libapi "dev.sum7.eu/sum7/warehost/lib/api"
|
|
liblog "dev.sum7.eu/sum7/warehost/lib/log"
|
|
libsystem "dev.sum7.eu/sum7/warehost/system"
|
|
)
|
|
|
|
//ProfilHandler for api function to get host.Profil
|
|
func ProfilHandler(h libapi.Handle) libapi.Handle {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
login := ctx.Value("login").(*libsystem.Login)
|
|
|
|
profil := &Profil{LoginID: login.ID}
|
|
dbconnection.Where("login = ?", login.ID).Find(profil)
|
|
if profil.ID > 0 {
|
|
ctx = context.WithValue(ctx, "profil", profil)
|
|
r = r.WithContext(ctx)
|
|
h(w, r)
|
|
return
|
|
}
|
|
liblog.Log.Warn("no profil found")
|
|
libapi.JSONWrite(w, r, false, &libapi.ErrorResult{Fields: []string{"session"}, Message: "no profil found"})
|
|
}
|
|
}
|