|
|
@@ -3,6 +3,7 @@ package friend |
|
|
|
import ( |
|
|
|
"context" |
|
|
|
svc "gim/internal/business/comm/service" |
|
|
|
"gim/internal/business/comm/utils" |
|
|
|
"gim/internal/logic/proxy" |
|
|
|
"gim/pkg/gerrors" |
|
|
|
"gim/pkg/grpclib" |
|
|
@@ -107,6 +108,10 @@ func (*friendService) AddFriend(ctx context.Context, userId, friendId int64, rem |
|
|
|
//TODO::判断是否需要`自动添加好友` |
|
|
|
masterId, _ := grpclib.GetCtxMasterId(ctx) |
|
|
|
isAutoAddFriends := svc.SysCfgGet(masterId, "is_auto_add_friends") |
|
|
|
utils.FilePutContents("addFriend", utils.SerializeStr(map[string]interface{}{ |
|
|
|
"is_auto_add_friends": isAutoAddFriends, |
|
|
|
"user": resp.User, |
|
|
|
})) |
|
|
|
if isAutoAddFriends == "1" && resp.User.IsAutoAddedFriends == 1 { |
|
|
|
return FriendService.AgreeAddFriend(ctx, friendId, userId, "系统自动添加") |
|
|
|
} |
|
|
|