summaryrefslogtreecommitdiffstats
path: root/app/user.go
diff options
context:
space:
mode:
authorChris Duarte <csduarte@users.noreply.github.com>2018-01-04 09:45:59 -0800
committerJoram Wilander <jwawilander@gmail.com>2018-01-04 12:45:59 -0500
commit5e78d7fe12a39e28a6520b023b0df0fc66a826d5 (patch)
treed4eacf4c02f5300917093efc13e73f9761c7756c /app/user.go
parente5dad3cf681fb038ce5dd3dcf7b5468d59b8ea8e (diff)
downloadchat-5e78d7fe12a39e28a6520b023b0df0fc66a826d5.tar.gz
chat-5e78d7fe12a39e28a6520b023b0df0fc66a826d5.tar.bz2
chat-5e78d7fe12a39e28a6520b023b0df0fc66a826d5.zip
Add admin update endpoint that can update authservice and authdata (#7842)
* add admin update endpoint that can upate authservice and authdata * Control only SystemAdmin access * Refactored AdminUpdate endpoint to only be able to update AuthData, AuthService and Password by User.Id * Refactor to move `PUT /api/v4/users/{user_id}/auth`. Created a struct to hold UserAuth info.
Diffstat (limited to 'app/user.go')
-rw-r--r--app/user.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/user.go b/app/user.go
index 626f6310f..493b391ae 100644
--- a/app/user.go
+++ b/app/user.go
@@ -969,6 +969,30 @@ func (a *App) PatchUser(userId string, patch *model.UserPatch, asAdmin bool) (*m
return updatedUser, nil
}
+func (a *App) UpdateUserAuth(userId string, userAuth *model.UserAuth) (*model.UserAuth, *model.AppError) {
+ if userAuth.AuthData == nil || *userAuth.AuthData == "" || userAuth.AuthService == "" {
+ userAuth.AuthData = nil
+ userAuth.AuthService = ""
+
+ if err := a.IsPasswordValid(userAuth.Password); err != nil {
+ return nil, err
+ }
+ password := model.HashPassword(userAuth.Password)
+
+ if result := <-a.Srv.Store.User().UpdatePassword(userId, password); result.Err != nil {
+ return nil, result.Err
+ }
+ } else {
+ userAuth.Password = ""
+
+ if result := <-a.Srv.Store.User().UpdateAuthData(userId, userAuth.AuthService, userAuth.AuthData, "", false); result.Err != nil {
+ return nil, result.Err
+ }
+ }
+
+ return userAuth, nil
+}
+
func (a *App) sendUpdatedUserEvent(user model.User, asAdmin bool) {
a.SanitizeProfile(&user, asAdmin)