2019-04-24 21:52:08 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
2022-04-08 04:13:47 +00:00
|
|
|
// StateGET is the handler serving the user state.
|
|
|
|
func StateGET(ctx *middlewares.AutheliaCtx) {
|
2019-04-24 21:52:08 +00:00
|
|
|
userSession := ctx.GetSession()
|
|
|
|
stateResponse := StateResponse{
|
|
|
|
Username: userSession.Username,
|
|
|
|
AuthenticationLevel: userSession.AuthenticationLevel,
|
|
|
|
DefaultRedirectionURL: ctx.Configuration.DefaultRedirectionURL,
|
|
|
|
}
|
2020-12-16 01:47:31 +00:00
|
|
|
|
|
|
|
err := ctx.SetJSONBody(stateResponse)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Logger.Errorf("Unable to set state response in body: %s", err)
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|