package api import ( "net/http" "github.com/gin-gonic/gin" "github.com/photoprism/photoprism/internal/acl" "github.com/photoprism/photoprism/internal/entity" "github.com/photoprism/photoprism/internal/event" "github.com/photoprism/photoprism/internal/get" "github.com/photoprism/photoprism/internal/i18n" "github.com/photoprism/photoprism/pkg/clean" ) // UpdateUser updates the profile information of the currently authenticated user. // // PUT /api/v1/users/:uid func UpdateUser(router *gin.RouterGroup) { router.PUT("/users/:uid", func(c *gin.Context) { conf := get.Config() if conf.Demo() || conf.DisableSettings() { AbortForbidden(c) return } s := AuthAny(c, acl.ResourceUsers, acl.Permissions{acl.ActionManage, acl.AccessOwn, acl.ActionUpdate}) if s.Abort(c) { return } uid := clean.UID(c.Param("uid")) m := entity.FindUserByUID(uid) if m == nil { Abort(c, http.StatusNotFound, i18n.ErrUserNotFound) return } // Init form with model values. f, err := m.Form() if err != nil { log.Error(err) AbortSaveFailed(c) return } // Update form with values from request. if err = c.BindJSON(&f); err != nil { log.Error(err) AbortBadRequest(c) return } // Save model with values from form. if err = m.SaveForm(f); err != nil { log.Error(err) AbortSaveFailed(c) return } // Clear the session cache, as it contains user information. s.ClearCache() event.SuccessMsg(i18n.MsgChangesSaved) m = entity.FindUserByUID(uid) if m == nil { AbortEntityNotFound(c) return } c.JSON(http.StatusOK, m) }) }