|
|
|
@ -101,13 +101,15 @@ func (s *friendServer) AddFriend(ctx context.Context, req *pbFriend.AddFriendReq
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Establish a latest relationship in the friend request table
|
|
|
|
|
friendRequest := db.FriendRequest{ReqMsg: req.ReqMsg, HandleResult: 0, CreateTime: time.Now()}
|
|
|
|
|
friendRequest := db.FriendRequest{
|
|
|
|
|
HandleResult: 0, ReqMsg: req.ReqMsg, CreateTime: time.Now()}
|
|
|
|
|
utils.CopyStructFields(&friendRequest, req.CommID)
|
|
|
|
|
// {openIM001 openIM002 0 test add friend 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC }]
|
|
|
|
|
log.NewDebug(req.CommID.OperationID, "UpdateFriendApplication args ", friendRequest)
|
|
|
|
|
//err := imdb.InsertFriendApplication(&friendRequest)
|
|
|
|
|
err := imdb.InsertFriendApplication(&friendRequest,
|
|
|
|
|
map[string]interface{}{"handle_result": 0, "req_msg": friendRequest.ReqMsg, "create_time": friendRequest.CreateTime})
|
|
|
|
|
map[string]interface{}{"handle_result": 0, "req_msg": friendRequest.ReqMsg, "create_time": friendRequest.CreateTime,
|
|
|
|
|
"handler_user_id": "", "handle_msg": "", "handle_time": utils.UnixSecondToTime(0), "ex": ""})
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.NewError(req.CommID.OperationID, "UpdateFriendApplication failed ", err.Error(), friendRequest)
|
|
|
|
|
return &pbFriend.AddFriendResp{CommonResp: &pbFriend.CommonResp{ErrCode: constant.ErrDB.ErrCode, ErrMsg: constant.ErrDB.ErrMsg}}, nil
|
|
|
|
|