2019-12-07 16:40:42 +00:00
|
|
|
package handlers
|
|
|
|
|
2020-06-21 13:40:37 +00:00
|
|
|
import (
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/authentication"
|
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
2020-06-21 13:40:37 +00:00
|
|
|
)
|
2019-12-07 16:40:42 +00:00
|
|
|
|
2020-06-21 13:40:37 +00:00
|
|
|
// ConfigurationGet get the configuration accessible to authenticated users.
|
2019-12-07 16:40:42 +00:00
|
|
|
func ConfigurationGet(ctx *middlewares.AutheliaCtx) {
|
2021-12-01 12:11:29 +00:00
|
|
|
body := configurationBody{}
|
2020-06-21 13:40:37 +00:00
|
|
|
body.AvailableMethods = MethodList{authentication.TOTP, authentication.U2F}
|
|
|
|
|
|
|
|
if ctx.Configuration.DuoAPI != nil {
|
|
|
|
body.AvailableMethods = append(body.AvailableMethods, authentication.Push)
|
2019-12-07 16:40:42 +00:00
|
|
|
}
|
2020-06-21 13:40:37 +00:00
|
|
|
|
|
|
|
body.SecondFactorEnabled = ctx.Providers.Authorizer.IsSecondFactorEnabled()
|
2021-06-18 01:38:01 +00:00
|
|
|
|
2020-06-21 13:40:37 +00:00
|
|
|
ctx.Logger.Tracef("Second factor enabled: %v", body.SecondFactorEnabled)
|
|
|
|
ctx.Logger.Tracef("Available methods are %s", body.AvailableMethods)
|
2020-12-16 01:47:31 +00:00
|
|
|
|
|
|
|
err := ctx.SetJSONBody(body)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Logger.Errorf("Unable to set configuration response in body: %s", err)
|
|
|
|
}
|
2019-12-07 16:40:42 +00:00
|
|
|
}
|