mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 03:13:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package user
 | 
						|
 | 
						|
import (
 | 
						|
	"Open_IM/pkg/common/log"
 | 
						|
	"Open_IM/pkg/grpc-etcdv3/getcdv3"
 | 
						|
	pbUser "Open_IM/pkg/proto/user"
 | 
						|
	"context"
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"github.com/gin-gonic/gin"
 | 
						|
)
 | 
						|
 | 
						|
// updateUserInfoParam struct
 | 
						|
type updateUserInfoParam struct {
 | 
						|
	OperationID string `json:"operationID" binding:"required"`
 | 
						|
	Name        string `json:"name"`
 | 
						|
	Icon        string `json:"icon"`
 | 
						|
	Gender      int32  `json:"gender"`
 | 
						|
	Mobile      string `json:"mobile"`
 | 
						|
	Birth       string `json:"birth"`
 | 
						|
	Email       string `json:"email"`
 | 
						|
	Ex          string `json:"ex"`
 | 
						|
	Uid         string `json:"uid"`
 | 
						|
}
 | 
						|
 | 
						|
// @Summary
 | 
						|
// @Description update user info
 | 
						|
// @Tags user
 | 
						|
// @Accept json
 | 
						|
// @Produce json
 | 
						|
// @Param body body user.updateUserInfoParam true "new user info"
 | 
						|
// @Param token header string true "token"
 | 
						|
// @Success 200 {object} user.result
 | 
						|
// @Failure 500 {object} user.result
 | 
						|
// @Router /user/update_user_info [post]
 | 
						|
func UpdateUserInfo(c *gin.Context) {
 | 
						|
	log.InfoByKv("api update userinfo init...", "")
 | 
						|
 | 
						|
	etcdConn := getcdv3.GetUserConn()
 | 
						|
	client := pbUser.NewUserClient(etcdConn)
 | 
						|
	//defer etcdConn.Close()
 | 
						|
 | 
						|
	params := updateUserInfoParam{}
 | 
						|
	if err := c.BindJSON(¶ms); err != nil {
 | 
						|
		c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
 | 
						|
		return
 | 
						|
	}
 | 
						|
	req := &pbUser.UpdateUserInfoReq{
 | 
						|
		OperationID: params.OperationID,
 | 
						|
		Token:       c.Request.Header.Get("token"),
 | 
						|
		Name:        params.Name,
 | 
						|
		Icon:        params.Icon,
 | 
						|
		Gender:      params.Gender,
 | 
						|
		Mobile:      params.Mobile,
 | 
						|
		Birth:       params.Birth,
 | 
						|
		Email:       params.Email,
 | 
						|
		Ex:          params.Ex,
 | 
						|
		Uid:         params.Uid,
 | 
						|
	}
 | 
						|
	log.InfoByKv("api update user info is server", req.OperationID, req.Token)
 | 
						|
	RpcResp, err := client.UpdateUserInfo(context.Background(), req)
 | 
						|
	if err != nil {
 | 
						|
		log.Error(req.Token, req.OperationID, "err=%s,call get user info rpc server failed", err)
 | 
						|
		c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": "call  rpc server failed"})
 | 
						|
		return
 | 
						|
	}
 | 
						|
	log.InfoByKv("call update user info rpc server success", params.OperationID)
 | 
						|
	c.JSON(http.StatusOK, gin.H{"errCode": RpcResp.ErrorCode, "errMsg": RpcResp.ErrorMsg})
 | 
						|
	log.InfoByKv("api update user info return success", params.OperationID, "args=%s", RpcResp.String())
 | 
						|
}
 |