2019-04-24 21:52:08 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// StateGet is the handler serving the user state.
|
|
|
|
func StateGet(ctx *middlewares.AutheliaCtx) {
|
|
|
|
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
|
|
|
}
|