summaryrefslogtreecommitdiff
path: root/internal/handlers/handler_configuration.go
diff options
context:
space:
mode:
authorAmir Zarrinkafsh <nightah@me.com>2020-06-21 23:40:37 +1000
committerGitHub <noreply@github.com>2020-06-21 15:40:37 +0200
commit29e54c231ba16f4e597cd8699a249d2267a3245f (patch)
treeec5c8ab132101d44ecb3053f2d58a485fdd54bdc /internal/handlers/handler_configuration.go
parentddfce52939b17c9ef8e17bce7f834a56952dd4f4 (diff)
[MISC] Template global config and refactor some /api endpoints (#1135)
* [MISC] Template global config and refactor some /api endpoints * /api/configuration has been removed in favour of templating said global config * /api/configuration/extended has been renamed to /api/configuration and display_name has been removed * /api/user/info has been modified to include display_name Co-authored-by: Clement Michaud <clement.michaud34@gmail.com>
Diffstat (limited to 'internal/handlers/handler_configuration.go')
-rw-r--r--internal/handlers/handler_configuration.go28
1 files changed, 20 insertions, 8 deletions
diff --git a/internal/handlers/handler_configuration.go b/internal/handlers/handler_configuration.go
index 08d08dc79..0166cab2b 100644
--- a/internal/handlers/handler_configuration.go
+++ b/internal/handlers/handler_configuration.go
@@ -1,18 +1,30 @@
package handlers
-import "github.com/authelia/authelia/internal/middlewares"
+import (
+ "github.com/authelia/authelia/internal/authentication"
+ "github.com/authelia/authelia/internal/middlewares"
+)
-// ConfigurationBody configuration parameters exposed to the frontend.
+// ConfigurationBody the content returned by the configuration endpoint.
type ConfigurationBody struct {
- RememberMe bool `json:"remember_me"` // whether remember me is enabled or not
- ResetPassword bool `json:"reset_password"`
+ AvailableMethods MethodList `json:"available_methods"`
+ SecondFactorEnabled bool `json:"second_factor_enabled"` // whether second factor is enabled or not.
+ TOTPPeriod int `json:"totp_period"`
}
-// ConfigurationGet fetches configuration parameters for frontend mutation.
+// ConfigurationGet get the configuration accessible to authenticated users.
func ConfigurationGet(ctx *middlewares.AutheliaCtx) {
- body := ConfigurationBody{
- RememberMe: ctx.Providers.SessionProvider.RememberMe != 0,
- ResetPassword: !ctx.Configuration.AuthenticationBackend.DisableResetPassword,
+ body := ConfigurationBody{}
+ body.AvailableMethods = MethodList{authentication.TOTP, authentication.U2F}
+ body.TOTPPeriod = ctx.Configuration.TOTP.Period
+
+ if ctx.Configuration.DuoAPI != nil {
+ body.AvailableMethods = append(body.AvailableMethods, authentication.Push)
}
+
+ body.SecondFactorEnabled = ctx.Providers.Authorizer.IsSecondFactorEnabled()
+ ctx.Logger.Tracef("Second factor enabled: %v", body.SecondFactorEnabled)
+
+ ctx.Logger.Tracef("Available methods are %s", body.AvailableMethods)
ctx.SetJSONBody(body) //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
}