mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-13 02:17:25 +01:00
Reformat and add debug output
This commit is contained in:
parent
734e818b19
commit
3028f60807
@ -342,6 +342,7 @@ func main() {
|
|||||||
// Those should be mounted to this subrouter. If authentication is enabled, a middleware will prevent
|
// Those should be mounted to this subrouter. If authentication is enabled, a middleware will prevent
|
||||||
// any unauthenticated accesses.
|
// any unauthenticated accesses.
|
||||||
secured := r.PathPrefix("/").Subrouter()
|
secured := r.PathPrefix("/").Subrouter()
|
||||||
|
|
||||||
if !config.Keys.DisableAuthentication {
|
if !config.Keys.DisableAuthentication {
|
||||||
r.Handle("/login", authentication.Login(
|
r.Handle("/login", authentication.Login(
|
||||||
// On success:
|
// On success:
|
||||||
@ -359,7 +360,8 @@ func main() {
|
|||||||
})
|
})
|
||||||
})).Methods(http.MethodPost)
|
})).Methods(http.MethodPost)
|
||||||
|
|
||||||
r.Handle("/logout", authentication.Logout(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
r.Handle("/logout", authentication.Logout(
|
||||||
|
http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
||||||
rw.Header().Add("Content-Type", "text/html; charset=utf-8")
|
rw.Header().Add("Content-Type", "text/html; charset=utf-8")
|
||||||
rw.WriteHeader(http.StatusOK)
|
rw.WriteHeader(http.StatusOK)
|
||||||
web.RenderTemplate(rw, "login.tmpl", &web.Page{
|
web.RenderTemplate(rw, "login.tmpl", &web.Page{
|
||||||
|
@ -168,6 +168,8 @@ func (auth *Authentication) Login(
|
|||||||
var user *schema.User
|
var user *schema.User
|
||||||
if user, ok = authenticator.CanLogin(dbUser, username, rw, r); !ok {
|
if user, ok = authenticator.CanLogin(dbUser, username, rw, r); !ok {
|
||||||
continue
|
continue
|
||||||
|
} else {
|
||||||
|
log.Debugf("Can login with user %v", user)
|
||||||
}
|
}
|
||||||
|
|
||||||
user, err := authenticator.Login(user, rw, r)
|
user, err := authenticator.Login(user, rw, r)
|
||||||
|
Loading…
Reference in New Issue
Block a user