mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package friend
 | 
						|
 | 
						|
import (
 | 
						|
	pbFriend "Open_IM/pkg/proto/friend"
 | 
						|
	"Open_IM/pkg/common/config"
 | 
						|
	"Open_IM/pkg/common/log"
 | 
						|
	"Open_IM/pkg/grpc-etcdv3/getcdv3"
 | 
						|
	"context"
 | 
						|
	"github.com/gin-gonic/gin"
 | 
						|
	"net/http"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
/*
 | 
						|
type paramsAddBlackList struct {
 | 
						|
	OperationID string `json:"operationID" binding:"required"`
 | 
						|
	UID         string `json:"uid" binding:"required"`
 | 
						|
}*/
 | 
						|
 | 
						|
func AddBlacklist(c *gin.Context) {
 | 
						|
	log.Info("", "", "api add blacklist init ....")
 | 
						|
 | 
						|
	etcdConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImFriendName)
 | 
						|
	client := pbFriend.NewFriendClient(etcdConn)
 | 
						|
	//defer etcdConn.Close()
 | 
						|
 | 
						|
	params := paramsSearchFriend{}
 | 
						|
	if err := c.BindJSON(¶ms); err != nil {
 | 
						|
		c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
 | 
						|
		return
 | 
						|
	}
 | 
						|
	req := &pbFriend.AddBlacklistReq{
 | 
						|
		Uid:         params.UID,
 | 
						|
		OperationID: params.OperationID,
 | 
						|
		Token:       c.Request.Header.Get("token"),
 | 
						|
		OwnerUid:    params.OwnerUid,
 | 
						|
	}
 | 
						|
	log.Info(req.Token, req.OperationID, "api add blacklist is server:userID=%s", req.Uid)
 | 
						|
	RpcResp, err := client.AddBlacklist(context.Background(), req)
 | 
						|
	if err != nil {
 | 
						|
		log.Error(req.Token, req.OperationID, "err=%s,call add blacklist rpc server failed", err)
 | 
						|
		c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": "call add blacklist rpc server failed"})
 | 
						|
		return
 | 
						|
	}
 | 
						|
	log.InfoByArgs("call add blacklist rpc server success,args=%s", RpcResp.String())
 | 
						|
	resp := gin.H{"errCode": RpcResp.ErrorCode, "errMsg": RpcResp.ErrorMsg}
 | 
						|
	c.JSON(http.StatusOK, resp)
 | 
						|
	log.InfoByArgs("api add blacklist success return,get args=%s,return args=%s", req.String(), RpcResp.String())
 | 
						|
}
 |