2019-12-07 11:18:22 +00:00
package handlers
import (
"fmt"
"strings"
2020-04-05 12:37:21 +00:00
2021-08-11 01:04:35 +00:00
"github.com/authelia/authelia/v4/internal/authentication"
"github.com/authelia/authelia/v4/internal/middlewares"
"github.com/authelia/authelia/v4/internal/utils"
2019-12-07 11:18:22 +00:00
)
2020-01-21 00:10:00 +00:00
// UserInfoGet get the info related to the user identified by the session.
2019-12-07 11:18:22 +00:00
func UserInfoGet ( ctx * middlewares . AutheliaCtx ) {
userSession := ctx . GetSession ( )
2021-11-23 09:45:38 +00:00
userInfo , err := ctx . Providers . StorageProvider . LoadUserInfo ( ctx , userSession . Username )
if err != nil {
ctx . Error ( fmt . Errorf ( "unable to load user information: %v" , err ) , messageOperationFailed )
2019-12-07 11:18:22 +00:00
return
}
2020-05-05 19:35:32 +00:00
2020-06-21 13:40:37 +00:00
userInfo . DisplayName = userSession . DisplayName
2021-11-23 09:45:38 +00:00
err = ctx . SetJSONBody ( userInfo )
2020-12-16 01:47:31 +00:00
if err != nil {
ctx . Logger . Errorf ( "Unable to set user info response in body: %s" , err )
}
2019-12-07 11:18:22 +00:00
}
// MethodPreferencePost update the user preferences regarding 2FA method.
func MethodPreferencePost ( ctx * middlewares . AutheliaCtx ) {
2021-12-01 12:11:29 +00:00
bodyJSON := preferred2FAMethodBody { }
2020-05-05 19:35:32 +00:00
2019-12-07 11:18:22 +00:00
err := ctx . ParseBody ( & bodyJSON )
if err != nil {
2021-07-22 03:52:37 +00:00
ctx . Error ( err , messageOperationFailed )
2019-12-07 11:18:22 +00:00
return
}
if ! utils . IsStringInSlice ( bodyJSON . Method , authentication . PossibleMethods ) {
2021-09-17 05:53:40 +00:00
ctx . Error ( fmt . Errorf ( "unknown method '%s', it should be one of %s" , bodyJSON . Method , strings . Join ( authentication . PossibleMethods , ", " ) ) , messageOperationFailed )
2019-12-07 11:18:22 +00:00
return
}
userSession := ctx . GetSession ( )
2020-01-05 23:03:16 +00:00
ctx . Logger . Debugf ( "Save new preferred 2FA method of user %s to %s" , userSession . Username , bodyJSON . Method )
2021-11-23 09:45:38 +00:00
err = ctx . Providers . StorageProvider . SavePreferred2FAMethod ( ctx , userSession . Username , bodyJSON . Method )
2019-12-07 11:18:22 +00:00
if err != nil {
2021-09-17 05:53:40 +00:00
ctx . Error ( fmt . Errorf ( "unable to save new preferred 2FA method: %s" , err ) , messageOperationFailed )
2019-12-07 11:18:22 +00:00
return
}
ctx . ReplyOK ( )
}